diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiDiagnosticTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiDiagnosticTests.cs new file mode 100644 index 000000000000..937e880c4da1 --- /dev/null +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiDiagnosticTests.cs @@ -0,0 +1,189 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// using ApiManagement.Management.Tests; + +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Microsoft.Azure.Management.ApiManagement; +using Microsoft.Azure.Management.ApiManagement.Models; +using Xunit; +using System.Linq; +using System.Threading.Tasks; +using System; +using System.Collections.Generic; +using Microsoft.Rest.Azure; + +namespace ApiManagement.Tests.ManagementApiTests +{ + public class ApiDiagnosticTests : TestBase + { + [Fact] + public async Task CreateListUpdateDelete() + { + Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var testBase = new ApiManagementTestBase(context); + testBase.TryCreateApiManagementService(); + + // list all the APIs + IPage apiResponse = testBase.client.Api.ListByService( + testBase.rgName, + testBase.serviceName, + null); + Assert.NotNull(apiResponse); + Assert.Single(apiResponse); + Assert.Null(apiResponse.NextPageLink); + + //api to use + ApiContract apiToUse = apiResponse.First(); + + // list diagnostics: there should be none for the Api currently + var apiDiagnostics = testBase.client.ApiDiagnostic.ListByService( + testBase.rgName, + testBase.serviceName, + apiToUse.Name); + + Assert.NotNull(apiDiagnostics); + Assert.Empty(apiDiagnostics); + + // create new diagnostic, supported Ids are applicationinsights, azuremonitor + string apiDiagnosticId = "applicationinsights"; + string loggerId = TestUtilities.GenerateName("appInsights"); + + try + { + // create a logger + Guid applicationInsightsGuid = TestUtilities.GenerateGuid("appInsights"); + var credentials = new Dictionary(); + credentials.Add("instrumentationKey", applicationInsightsGuid.ToString()); + + var loggerCreateParameters = new LoggerContract(LoggerType.ApplicationInsights, credentials); + var loggerContract = await testBase.client.Logger.CreateOrUpdateAsync( + testBase.rgName, + testBase.serviceName, + loggerId, + loggerCreateParameters); + Assert.NotNull(loggerContract); + Assert.Equal(loggerId, loggerContract.Name); + Assert.Equal(LoggerType.ApplicationInsights, loggerContract.LoggerType); + Assert.NotNull(loggerContract.Credentials); + Assert.Equal(1, loggerContract.Credentials.Keys.Count); + + // create a diagnostic entity with just loggerId + var diagnosticContractParams = new DiagnosticContract() + { + LoggerId = loggerContract.Id + }; + var apiDiagnosticContract = await testBase.client.ApiDiagnostic.CreateOrUpdateAsync( + testBase.rgName, + testBase.serviceName, + apiToUse.Name, + apiDiagnosticId, + diagnosticContractParams); + Assert.NotNull(apiDiagnosticContract); + Assert.Equal(apiDiagnosticId, apiDiagnosticContract.Name); + + // check the diagnostic entity etag + var apiDiagnosticTag = await testBase.client.ApiDiagnostic.GetEntityTagAsync( + testBase.rgName, + testBase.serviceName, + apiToUse.Name, + apiDiagnosticId); + Assert.NotNull(apiDiagnosticTag); + Assert.NotNull(apiDiagnosticTag.ETag); + + // now update the sampling and other settings of the diagnostic + diagnosticContractParams.EnableHttpCorrelationHeaders = true; + diagnosticContractParams.AlwaysLog = "allErrors"; + diagnosticContractParams.Sampling = new SamplingSettings("fixed", 50); + var listOfHeaders = new List { "Content-type" }; + var bodyDiagnostic = new BodyDiagnosticSettings(512); + diagnosticContractParams.Frontend = new PipelineDiagnosticSettings + { + Request = new HttpMessageDiagnostic() + { + Body = bodyDiagnostic, + Headers = listOfHeaders + }, + Response = new HttpMessageDiagnostic() + { + Body = bodyDiagnostic, + Headers = listOfHeaders + } + }; + diagnosticContractParams.Backend = new PipelineDiagnosticSettings + { + Request = new HttpMessageDiagnostic() + { + Body = bodyDiagnostic, + Headers = listOfHeaders + }, + Response = new HttpMessageDiagnostic() + { + Body = bodyDiagnostic, + Headers = listOfHeaders + } + }; + + var updatedApiDiagnostic = await testBase.client.ApiDiagnostic.CreateOrUpdateWithHttpMessagesAsync( + testBase.rgName, + testBase.serviceName, + apiToUse.Name, + apiDiagnosticId, + diagnosticContractParams, + apiDiagnosticTag.ETag); + Assert.NotNull(updatedApiDiagnostic); + Assert.True(updatedApiDiagnostic.Body.EnableHttpCorrelationHeaders.Value); + Assert.Equal("allErrors", updatedApiDiagnostic.Body.AlwaysLog); + Assert.NotNull(updatedApiDiagnostic.Body.Sampling); + Assert.NotNull(updatedApiDiagnostic.Body.Frontend); + Assert.NotNull(updatedApiDiagnostic.Body.Backend); + + // delete the diagnostic entity + await testBase.client.ApiDiagnostic.DeleteAsync( + testBase.rgName, + testBase.serviceName, + apiToUse.Name, + apiDiagnosticId, + updatedApiDiagnostic.Headers.ETag); + + Assert.Throws(() + => testBase.client.ApiDiagnostic.GetEntityTag( + testBase.rgName, + testBase.serviceName, + apiToUse.Name, + apiDiagnosticId)); + + // check the logger entity etag + var loggerTag = await testBase.client.Logger.GetEntityTagAsync( + testBase.rgName, + testBase.serviceName, + loggerId); + Assert.NotNull(loggerTag); + Assert.NotNull(loggerTag.ETag); + + // delete the logger entity + await testBase.client.Logger.DeleteAsync( + testBase.rgName, + testBase.serviceName, + loggerId, + loggerTag.ETag); + + Assert.Throws(() + => testBase.client.Logger.GetEntityTag(testBase.rgName, testBase.serviceName, loggerId)); + } + finally + { + testBase.client.ApiDiagnostic.Delete( + testBase.rgName, + testBase.serviceName, + apiToUse.Name, + apiDiagnosticId, + "*"); + testBase.client.Logger.Delete(testBase.rgName, testBase.serviceName, loggerId, "*"); + } + } + } + } +} diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiExportImportTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiExportImportTests.cs index 679a976f2fe6..6afb4552152d 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiExportImportTests.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiExportImportTests.cs @@ -5,7 +5,6 @@ using System; using System.IO; -using System.Threading.Tasks; using Microsoft.Azure.Management.ApiManagement; using Microsoft.Azure.Management.ApiManagement.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; @@ -40,8 +39,8 @@ public void SwaggerTest() var apiCreateOrUpdate = new ApiCreateOrUpdateParameter() { Path = path, - ContentFormat = ContentFormat.SwaggerJson, - ContentValue = swaggerApiContent + Format = ContentFormat.SwaggerJson, + Value = swaggerApiContent }; var swaggerApiResponse = testBase.client.Api.CreateOrUpdate( @@ -64,7 +63,8 @@ public void SwaggerTest() ApiExportResult swaggerExport = testBase.client.ApiExport.Get(testBase.rgName, testBase.serviceName, swaggerApi, ExportFormat.Swagger); Assert.NotNull(swaggerExport); - Assert.NotNull(swaggerExport.Link); + Assert.NotNull(swaggerExport.Value.Link); + Assert.Equal("swagger-link-json", swaggerExport.ExportResultFormat); } finally { @@ -100,8 +100,8 @@ public void WadlTest() var apiCreateOrUpdate = new ApiCreateOrUpdateParameter() { Path = path, - ContentFormat = ContentFormat.WadlXml, - ContentValue = wadlApiContent + Format = ContentFormat.WadlXml, + Value = wadlApiContent }; var wadlApiResponse = testBase.client.Api.CreateOrUpdate( @@ -127,7 +127,8 @@ public void WadlTest() ApiExportResult wadlExport = testBase.client.ApiExport.Get(testBase.rgName, testBase.serviceName, wadlApi, ExportFormat.Wadl); Assert.NotNull(wadlExport); - Assert.NotNull(wadlExport.Link); + Assert.NotNull(wadlExport.Value.Link); + Assert.Equal("wadl-link-json", wadlExport.ExportResultFormat); } finally { @@ -164,8 +165,8 @@ public void WsdlTest() var apiCreateOrUpdate = new ApiCreateOrUpdateParameter() { Path = path, - ContentFormat = ContentFormat.Wsdl, - ContentValue = wsdlApiContent, + Format = ContentFormat.Wsdl, + Value = wsdlApiContent, SoapApiType = SoapApiType.SoapPassThrough, // create Soap Pass through API WsdlSelector = new ApiCreateOrUpdatePropertiesWsdlSelector() { @@ -198,6 +199,7 @@ public void WsdlTest() Assert.True(apiContract.Protocols.Contains(Protocol.Https)); Assert.Equal("1", apiContract.ApiRevision); + /* WSDL Export spits our broken Json ApiExportResult wsdlExport = testBase.client.ApiExport.Get( testBase.rgName, testBase.serviceName, @@ -205,7 +207,9 @@ public void WsdlTest() ExportFormat.Wsdl); Assert.NotNull(wsdlExport); - Assert.NotNull(wsdlExport.Link); + Assert.NotNull(wsdlExport.Value.Link); + Assert.Equal("wsdl-link+xml", wsdlExport.ExportResultFormat); + */ } finally { @@ -218,5 +222,66 @@ public void WsdlTest() } } } + + [Fact] + public void OpenApiTest() + { + Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var testBase = new ApiManagementTestBase(context); + testBase.TryCreateApiManagementService(); + + const string openapiFilePath = "./Resources/petstore.yaml"; + const string path = "openapi3"; + string openApiId = TestUtilities.GenerateName("aid"); + + try + { + // import API + string openApiContent; + using (StreamReader reader = File.OpenText(openapiFilePath)) + { + openApiContent = reader.ReadToEnd(); + } + + var apiCreateOrUpdate = new ApiCreateOrUpdateParameter() + { + Path = path, + Format = ContentFormat.Openapi, + Value = openApiContent + }; + + var swaggerApiResponse = testBase.client.Api.CreateOrUpdate( + testBase.rgName, + testBase.serviceName, + openApiId, + apiCreateOrUpdate); + + Assert.NotNull(swaggerApiResponse); + + // get the api to check it was created + var getResponse = testBase.client.Api.Get(testBase.rgName, testBase.serviceName, openApiId); + + Assert.NotNull(getResponse); + Assert.Equal(openApiId, getResponse.Name); + Assert.Equal(path, getResponse.Path); + Assert.Equal("Swagger Petstore", getResponse.DisplayName); + Assert.Equal("http://petstore.swagger.io/v1", getResponse.ServiceUrl); + + ApiExportResult openApiExport = testBase.client.ApiExport.Get(testBase.rgName, testBase.serviceName, openApiId, ExportFormat.Openapi); + + Assert.NotNull(openApiExport); + Assert.NotNull(openApiExport.Value.Link); + Assert.Equal("openapi-link", openApiExport.ExportResultFormat); + } + finally + { + // remove the API + testBase.client.Api.Delete(testBase.rgName, testBase.serviceName, openApiId, "*"); + } + + } + } } } diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiRevisionTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiRevisionTests.cs index 1f98e6e8266b..8966533de00b 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiRevisionTests.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiRevisionTests.cs @@ -47,8 +47,8 @@ public async Task CreateListUpdateDelete() var apiCreateOrUpdate = new ApiCreateOrUpdateParameter() { Path = path, - ContentFormat = ContentFormat.SwaggerJson, - ContentValue = swaggerApiContent + Format = ContentFormat.SwaggerJson, + Value = swaggerApiContent }; var swaggerApiResponse = testBase.client.Api.CreateOrUpdate( @@ -87,18 +87,22 @@ public async Task CreateListUpdateDelete() // add an api revision string revisionNumber = "2"; - // create a revision of Petstore + // create a revision of Petstore. + // Please note we can change the following properties when creating a revision + // DisplayName, Description, Path, Protocols, ApiVersion, ApiVersionDescription and ApiVersionSetId var revisionDescription = "Petstore second revision"; var petstoreRevisionContract = new ApiCreateOrUpdateParameter() { - Path = petstoreApiContract.Path + revisionNumber, - DisplayName = petstoreApiContract.DisplayName + revisionNumber, + Path = petstoreApiContract.Path, + DisplayName = petstoreApiContract.DisplayName, ServiceUrl = petstoreApiContract.ServiceUrl + revisionNumber, Protocols = petstoreApiContract.Protocols, SubscriptionKeyParameterNames = petstoreApiContract.SubscriptionKeyParameterNames, AuthenticationSettings = petstoreApiContract.AuthenticationSettings, Description = petstoreApiContract.Description, - ApiRevisionDescription = revisionDescription + ApiRevisionDescription = revisionDescription, + IsCurrent = false, + SourceApiId = petstoreApiContract.Id // with this we ensure to copy all operations, tags, product association. }; var petStoreSecondRevision = await testBase.client.Api.CreateOrUpdateAsync( @@ -107,12 +111,14 @@ public async Task CreateListUpdateDelete() newApiId.ApiRevisionIdentifier(revisionNumber), petstoreRevisionContract); Assert.NotNull(petStoreSecondRevision); - Assert.Equal(petstoreRevisionContract.Path, petStoreSecondRevision.Path); + Assert.Equal(petstoreApiContract.Path, petStoreSecondRevision.Path); Assert.Equal(petstoreRevisionContract.ServiceUrl, petStoreSecondRevision.ServiceUrl); Assert.Equal(revisionNumber, petStoreSecondRevision.ApiRevision); + Assert.Equal(petstoreApiContract.DisplayName, petStoreSecondRevision.DisplayName); + Assert.Equal(petstoreApiContract.Description, petStoreSecondRevision.Description); Assert.Equal(revisionDescription, petStoreSecondRevision.ApiRevisionDescription); - // add couple of operation to this revision + // add an operation to this revision var newOperationId = TestUtilities.GenerateName("firstOpRev"); var firstOperationContract = testBase.CreateOperationContract("POST"); var firstOperation = await testBase.client.ApiOperation.CreateOrUpdateAsync( @@ -124,16 +130,14 @@ public async Task CreateListUpdateDelete() Assert.NotNull(firstOperation); Assert.Equal("POST", firstOperation.Method); - var secondOperationId = TestUtilities.GenerateName("secondOpName"); - var secondOperationContract = testBase.CreateOperationContract("GET"); - var secondOperation = await testBase.client.ApiOperation.CreateOrUpdateAsync( + // now test out list operation on the revision api + var allRevisionOperations = await testBase.client.ApiOperation.ListByApiAsync( testBase.rgName, testBase.serviceName, - newApiId.ApiRevisionIdentifier(revisionNumber), - secondOperationId, - secondOperationContract); - Assert.NotNull(secondOperation); - Assert.Equal("GET", secondOperation.Method); + newApiId.ApiRevisionIdentifier(revisionNumber)); + Assert.NotNull(allRevisionOperations); + // we copied the revision and added an extra "POST" operation to second revision + Assert.Equal(allRevisionOperations.Count(), petstoreApiOperations.Count() + 1); // now test out list operation on the revision api var firstOperationOfSecondRevision = await testBase.client.ApiOperation.ListByApiAsync( @@ -153,10 +157,10 @@ public async Task CreateListUpdateDelete() firstOperationOfSecondRevision.NextPageLink); Assert.NotNull(secondOperationOfSecondRevision); Assert.Single(secondOperationOfSecondRevision); - Assert.Empty(secondOperationOfSecondRevision.NextPageLink); + Assert.NotEmpty(secondOperationOfSecondRevision.NextPageLink); // list apiRevision - IPage apiRevisions = await testBase.client.ApiRevisions.ListAsync( + IPage apiRevisions = await testBase.client.ApiRevision.ListByServiceAsync( testBase.rgName, testBase.serviceName, newApiId); @@ -181,19 +185,19 @@ public async Task CreateListUpdateDelete() Assert.NotEqual(apiOnlineRevisionTag.ETag, apiSecondRevisionTag.ETag); //there should be no release intially - var apiReleases = await testBase.client.ApiRelease.ListAsync( + var apiReleases = await testBase.client.ApiRelease.ListByServiceAsync( testBase.rgName, testBase.serviceName, newApiId); Assert.Empty(apiReleases); - // lets create a release now + // lets create a release now and make the second revision as current var apiReleaseContract = new ApiReleaseContract() { ApiId = newApiId.ApiRevisionIdentifierFullPath(revisionNumber), Notes = TestUtilities.GenerateName("revision_description") }; - var newapiBackendRelease = await testBase.client.ApiRelease.CreateAsync( + var newapiBackendRelease = await testBase.client.ApiRelease.CreateOrUpdateAsync( testBase.rgName, testBase.serviceName, newApiId, @@ -231,7 +235,7 @@ await testBase.client.ApiRelease.UpdateAsync( Assert.Equal(newapiBackendRelease.Notes, apiReleaseContract.Notes); // list the revision - apiReleases = await testBase.client.ApiRelease.ListAsync( + apiReleases = await testBase.client.ApiRelease.ListByServiceAsync( testBase.rgName, testBase.serviceName, newApiId); @@ -239,6 +243,14 @@ await testBase.client.ApiRelease.UpdateAsync( Assert.Single(apiReleases); // find the revision which is not online + var revisions = await testBase.client.ApiRevision.ListByServiceAsync( + testBase.rgName, + testBase.serviceName, + newApiId, + new Microsoft.Rest.Azure.OData.ODataQuery { Top = 1 }); + + Assert.NotNull(revisions); + Assert.Single(revisions); // delete the api await testBase.client.Api.DeleteAsync( @@ -268,6 +280,13 @@ await testBase.client.Api.DeleteAsync( newApiId, "*", deleteRevisions: true); + + testBase.client.ApiRelease.Delete( + testBase.rgName, + testBase.serviceName, + newApiId, + newReleaseId, + "*"); } } } diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiTests.cs index 4e0dee6e7a02..ffde2c79870b 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiTests.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiTests.cs @@ -3,15 +3,16 @@ // license information. // using ApiManagement.Management.Tests; -using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Net; +using System.Threading.Tasks; using Microsoft.Azure.Management.ApiManagement; using Microsoft.Azure.Management.ApiManagement.Models; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Xunit; -using System.Linq; -using System.Threading.Tasks; -using System.Collections.Generic; -using System; -using System.Net; namespace ApiManagement.Tests.ManagementApiTests { @@ -338,5 +339,162 @@ public async Task CreateListUpdateDelete() } } } + + [Fact] + public async Task CloneApiUsingSourceApiId() + { + Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var testBase = new ApiManagementTestBase(context); + testBase.TryCreateApiManagementService(); + + // add new api + const string swaggerPath = "./Resources/SwaggerPetStoreV2.json"; + const string path = "swaggerApi"; + + string newApiAuthorizationServerId = TestUtilities.GenerateName("authorizationServerId"); + string newApiId = TestUtilities.GenerateName("apiid"); + string swaggerApiId = TestUtilities.GenerateName("swaggerApiId"); + + try + { + // import API + string swaggerApiContent; + using (StreamReader reader = File.OpenText(swaggerPath)) + { + swaggerApiContent = reader.ReadToEnd(); + } + + var apiCreateOrUpdate = new ApiCreateOrUpdateParameter() + { + Path = path, + Format = ContentFormat.SwaggerJson, + Value = swaggerApiContent + }; + + var swaggerApiResponse = testBase.client.Api.CreateOrUpdate( + testBase.rgName, + testBase.serviceName, + swaggerApiId, + apiCreateOrUpdate); + + Assert.NotNull(swaggerApiResponse); + Assert.Null(swaggerApiResponse.SubscriptionRequired); + Assert.Equal(path, swaggerApiResponse.Path); + + var swagerApiOperations = await testBase.client.ApiOperation.ListByApiAsync( + testBase.rgName, + testBase.serviceName, + swaggerApiResponse.Name); + + var createAuthServerParams = new AuthorizationServerContract + { + DisplayName = TestUtilities.GenerateName("authName"), + DefaultScope = TestUtilities.GenerateName("oauth2scope"), + AuthorizationEndpoint = "https://contoso.com/auth", + TokenEndpoint = "https://contoso.com/token", + ClientRegistrationEndpoint = "https://contoso.com/clients/reg", + GrantTypes = new List { GrantType.AuthorizationCode, GrantType.Implicit }, + AuthorizationMethods = new List { AuthorizationMethod.POST, AuthorizationMethod.GET }, + BearerTokenSendingMethods = new List { BearerTokenSendingMethod.AuthorizationHeader, BearerTokenSendingMethod.Query }, + ClientId = TestUtilities.GenerateName("clientid") + }; + + await testBase.client.AuthorizationServer.CreateOrUpdateAsync( + testBase.rgName, + testBase.serviceName, + newApiAuthorizationServerId, + createAuthServerParams); + + string newApiName = TestUtilities.GenerateName("apiname"); + string newApiDescription = TestUtilities.GenerateName("apidescription"); + string newApiPath = "newapiPath"; + string newApiServiceUrl = "http://newechoapi.cloudapp.net/api"; + string subscriptionKeyParametersHeader = TestUtilities.GenerateName("header"); + string subscriptionKeyQueryStringParamName = TestUtilities.GenerateName("query"); + string newApiAuthorizationScope = TestUtilities.GenerateName("oauth2scope"); + var newApiAuthenticationSettings = new AuthenticationSettingsContract + { + OAuth2 = new OAuth2AuthenticationSettingsContract + { + AuthorizationServerId = newApiAuthorizationServerId, + Scope = newApiAuthorizationScope + } + }; + + var createdApiContract = testBase.client.Api.CreateOrUpdate( + testBase.rgName, + testBase.serviceName, + newApiId, + new ApiCreateOrUpdateParameter + { + SourceApiId = swaggerApiResponse.Id, // create a clone of the Swagger API created above and override the following parameters + DisplayName = newApiName, + Description = newApiDescription, + Path = newApiPath, + ServiceUrl = newApiServiceUrl, + Protocols = new List { Protocol.Https, Protocol.Http }, + SubscriptionKeyParameterNames = new SubscriptionKeyParameterNamesContract + { + Header = subscriptionKeyParametersHeader, + Query = subscriptionKeyQueryStringParamName + }, + AuthenticationSettings = newApiAuthenticationSettings, + SubscriptionRequired = true, + }); + + // get new api to check it was added + var apiGetResponse = testBase.client.Api.Get(testBase.rgName, testBase.serviceName, newApiId); + + Assert.NotNull(apiGetResponse); + Assert.Equal(newApiId, apiGetResponse.Name); + Assert.Equal(newApiName, apiGetResponse.DisplayName); + Assert.Equal(newApiDescription, apiGetResponse.Description); + Assert.Equal(newApiPath, apiGetResponse.Path); + Assert.Equal(newApiServiceUrl, apiGetResponse.ServiceUrl); + Assert.Equal(subscriptionKeyParametersHeader, apiGetResponse.SubscriptionKeyParameterNames.Header); + Assert.Equal(subscriptionKeyQueryStringParamName, apiGetResponse.SubscriptionKeyParameterNames.Query); + Assert.Equal(2, apiGetResponse.Protocols.Count); + Assert.True(apiGetResponse.Protocols.Contains(Protocol.Http)); + Assert.True(apiGetResponse.Protocols.Contains(Protocol.Https)); + Assert.NotNull(apiGetResponse.AuthenticationSettings); + Assert.NotNull(apiGetResponse.AuthenticationSettings.OAuth2); + Assert.Equal(newApiAuthorizationServerId, apiGetResponse.AuthenticationSettings.OAuth2.AuthorizationServerId); + Assert.True(apiGetResponse.SubscriptionRequired); + + var newApiOperations = await testBase.client.ApiOperation.ListByApiAsync( + testBase.rgName, + testBase.serviceName, + newApiId); + + Assert.NotNull(newApiOperations); + // make sure all operations got copied + Assert.Equal(swagerApiOperations.Count(), newApiOperations.Count()); + } + finally + { + // delete api server + testBase.client.Api.Delete( + testBase.rgName, + testBase.serviceName, + swaggerApiId, + "*"); + + // delete api server + testBase.client.Api.Delete( + testBase.rgName, + testBase.serviceName, + newApiId, + "*"); + + testBase.client.AuthorizationServer.Delete( + testBase.rgName, + testBase.serviceName, + newApiAuthorizationServerId, + "*"); + } + } + } } } diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiVersionSetTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiVersionSetTests.cs index 455bc4ff6618..e5b702b13f70 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiVersionSetTests.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiVersionSetTests.cs @@ -30,7 +30,7 @@ public async Task CreateListUpdateDelete() testBase.serviceName); Assert.NotNull(versionSetlistResponse); Assert.Empty(versionSetlistResponse); - Assert.NotNull(versionSetlistResponse.NextPageLink); + Assert.Null(versionSetlistResponse.NextPageLink); string newversionsetid = TestUtilities.GenerateName("apiversionsetid"); const string paramName = "x-ms-sdk-version"; diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/CacheTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/CacheTests.cs new file mode 100644 index 000000000000..ba6c78a1ac5d --- /dev/null +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/CacheTests.cs @@ -0,0 +1,109 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// using ApiManagement.Management.Tests; + +using System; +using System.Threading.Tasks; +using Microsoft.Azure.Management.ApiManagement; +using Microsoft.Azure.Management.ApiManagement.Models; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Xunit; + +namespace ApiManagement.Tests.ManagementApiTests +{ + public class CacheTests : TestBase + { + [Fact] + public async Task CreateListUpdateDelete() + { + Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var testBase = new ApiManagementTestBase(context); + testBase.TryCreateApiManagementService(); + + // list caches: there should be none + var cacheListResponse = testBase.client.Cache.ListByService( + testBase.rgName, + testBase.serviceName, + null); + + Assert.NotNull(cacheListResponse); + Assert.Empty(cacheListResponse); + + // create new cache + string cacheid = testBase.serviceProperties.Location; + + try + { + var cacheContract = new CacheContract() + { + ConnectionString = TestUtilities.GenerateName(), + Description = TestUtilities.GenerateName() + }; + + var createResponse = await testBase.client.Cache.CreateOrUpdateAsync( + testBase.rgName, + testBase.serviceName, + cacheid, + cacheContract); + + Assert.NotNull(createResponse); + Assert.Equal(cacheid, createResponse.Name); + Assert.Equal(cacheContract.Description, createResponse.Description); + + // get the certificate to check is was created + var getResponse = await testBase.client.Cache.GetWithHttpMessagesAsync( + testBase.rgName, + testBase.serviceName, + cacheid); + + Assert.NotNull(getResponse); + Assert.Equal(cacheid, getResponse.Body.Name); + + // list caches + cacheListResponse = testBase.client.Cache.ListByService( + testBase.rgName, + testBase.serviceName, + null); + + Assert.NotNull(cacheListResponse); + Assert.Single(cacheListResponse); + + // remove the certificate + testBase.client.Cache.Delete( + testBase.rgName, + testBase.serviceName, + cacheid, + getResponse.Headers.ETag); + + // list again to see it was removed + cacheListResponse = testBase.client.Cache.ListByService( + testBase.rgName, + testBase.serviceName, + null); + + Assert.NotNull(cacheListResponse); + Assert.Empty(cacheListResponse); + } + finally + { + testBase.client.Cache.Delete(testBase.rgName, testBase.serviceName, cacheid, "*"); + // 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, + "*"); + } + } + } + } + } +} diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/DelegationSettingTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/DelegationSettingTests.cs index cbb9127b893f..4eba2060a77e 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/DelegationSettingTests.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/DelegationSettingTests.cs @@ -3,12 +3,12 @@ // license information. // using ApiManagement.Management.Tests; -using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; +using System.Threading.Tasks; using Microsoft.Azure.Management.ApiManagement; using Microsoft.Azure.Management.ApiManagement.Models; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Xunit; -using System.Threading.Tasks; -using System; namespace ApiManagement.Tests.ManagementApiTests { @@ -45,9 +45,8 @@ public async Task CreateUpdateReset() portalDelegationSettingsParams); Assert.NotNull(portalDelegationSettings); Assert.Equal(urlParameter, portalDelegationSettings.Url); - // this is bug in the api, where the validation key is coming out as encrypted. - // https://msazure.visualstudio.com/DefaultCollection/One/_workitems/edit/2202008 - //Assert.Equal(testBase.base64EncodedTestCertificateData, portalDelegationSettings.ValidationKey); + // validation key is generated brand new on playback mode and hence validation fails + //Assert.Equal(portalDelegationSettingsParams.ValidationKey, portalDelegationSettings.ValidationKey); Assert.True(portalDelegationSettings.UserRegistration.Enabled); Assert.True(portalDelegationSettings.Subscriptions.Enabled); @@ -75,8 +74,8 @@ await testBase.client.DelegationSettings.UpdateAsync( testBase.rgName, testBase.serviceName); Assert.NotNull(portalDelegationSettings); - //Assert.Null(portalDelegationSettings.Url); - //Assert.Null(portalDelegationSettings.ValidationKey); + Assert.Null(portalDelegationSettings.Url); + Assert.Null(portalDelegationSettings.ValidationKey); Assert.False(portalDelegationSettings.UserRegistration.Enabled); Assert.False(portalDelegationSettings.Subscriptions.Enabled); } diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/DiagnosticTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/DiagnosticTests.cs index 374479e9ac31..551b8debb0d3 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/DiagnosticTests.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/DiagnosticTests.cs @@ -3,15 +3,13 @@ // license information. // using ApiManagement.Management.Tests; -using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; using Microsoft.Azure.Management.ApiManagement; using Microsoft.Azure.Management.ApiManagement.Models; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Xunit; -using System.Linq; -using System.Threading.Tasks; -using System; -using System.Collections.Generic; -using ApiManagementManagement.Tests.Helpers; namespace ApiManagement.Tests.ManagementApiTests { @@ -41,20 +39,6 @@ public async Task CreateListUpdateDelete() try { - // create a diagnostic entity - var diagnosticContractParams = new DiagnosticContract() - { - Enabled = true - }; - var diagnosticContract = await testBase.client.Diagnostic.CreateOrUpdateAsync( - testBase.rgName, - testBase.serviceName, - diagnosticId, - diagnosticContractParams); - Assert.NotNull(diagnosticContract); - Assert.Equal(diagnosticId, diagnosticContract.Name); - Assert.Equal(diagnosticContractParams.Enabled, diagnosticContract.Enabled); - // create a logger Guid applicationInsightsGuid = TestUtilities.GenerateGuid("appInsights"); var credentials = new Dictionary(); @@ -72,26 +56,19 @@ public async Task CreateListUpdateDelete() Assert.NotNull(loggerContract.Credentials); Assert.Equal(1, loggerContract.Credentials.Keys.Count); - // create a diagnostic logger - loggerContract = await testBase.client.DiagnosticLogger.CreateOrUpdateAsync( + // create a diagnostic entity with just loggerId + var diagnosticContractParams = new DiagnosticContract() + { + LoggerId = loggerContract.Id + }; + var diagnosticContract = await testBase.client.Diagnostic.CreateOrUpdateAsync( testBase.rgName, testBase.serviceName, diagnosticId, - loggerId); - Assert.NotNull(loggerContract); - Assert.Equal(loggerId, loggerContract.Name); - Assert.Equal(LoggerType.ApplicationInsights, loggerContract.LoggerType); - - //list diagnostic loggers - var loggerContractList = await testBase.client.DiagnosticLogger.ListByServiceAsync( - testBase.rgName, - testBase.serviceName, - diagnosticId); - Assert.NotNull(loggerContractList); - Assert.Single(loggerContractList); - Assert.Equal(loggerId, loggerContractList.GetEnumerator().ToIEnumerable().First().Name); - Assert.Equal(LoggerType.ApplicationInsights, loggerContractList.GetEnumerator().ToIEnumerable().First().LoggerType); - + diagnosticContractParams); + Assert.NotNull(diagnosticContract); + Assert.Equal(diagnosticId, diagnosticContract.Name); + // check the diagnostic entity etag var diagnosticTag = await testBase.client.Diagnostic.GetEntityTagAsync( testBase.rgName, @@ -100,12 +77,58 @@ public async Task CreateListUpdateDelete() Assert.NotNull(diagnosticTag); Assert.NotNull(diagnosticTag.ETag); + // now update the sampling and other settings of the diagnostic + diagnosticContractParams.EnableHttpCorrelationHeaders = true; + diagnosticContractParams.AlwaysLog = "allErrors"; + diagnosticContractParams.Sampling = new SamplingSettings("fixed", 50); + var listOfHeaders = new List { "Content-type" }; + var bodyDiagnostic = new BodyDiagnosticSettings(512); + diagnosticContractParams.Frontend = new PipelineDiagnosticSettings + { + Request = new HttpMessageDiagnostic() + { + Body = bodyDiagnostic, + Headers = listOfHeaders + }, + Response = new HttpMessageDiagnostic() + { + Body = bodyDiagnostic, + Headers = listOfHeaders + } + }; + diagnosticContractParams.Backend = new PipelineDiagnosticSettings + { + Request = new HttpMessageDiagnostic() + { + Body = bodyDiagnostic, + Headers = listOfHeaders + }, + Response = new HttpMessageDiagnostic() + { + Body = bodyDiagnostic, + Headers = listOfHeaders + } + }; + + var updatedDiagnostic = await testBase.client.Diagnostic.CreateOrUpdateWithHttpMessagesAsync( + testBase.rgName, + testBase.serviceName, + diagnosticId, + diagnosticContractParams, + diagnosticTag.ETag); + Assert.NotNull(updatedDiagnostic); + Assert.True(updatedDiagnostic.Body.EnableHttpCorrelationHeaders.Value); + Assert.Equal("allErrors", updatedDiagnostic.Body.AlwaysLog); + Assert.NotNull(updatedDiagnostic.Body.Sampling); + Assert.NotNull(updatedDiagnostic.Body.Frontend); + Assert.NotNull(updatedDiagnostic.Body.Backend); + // delete the diagnostic entity await testBase.client.Diagnostic.DeleteAsync( testBase.rgName, testBase.serviceName, diagnosticId, - diagnosticTag.ETag); + updatedDiagnostic.Headers.ETag); Assert.Throws(() => testBase.client.Diagnostic.GetEntityTag(testBase.rgName, testBase.serviceName, diagnosticId)); diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/IssueTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/IssueTests.cs index 632b33cd8463..247273b75c4e 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/IssueTests.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/IssueTests.cs @@ -111,7 +111,8 @@ await testBase.client.ApiIssue.UpdateAsync( testBase.serviceName, echoApi.Name, newissueId, - issueUpdateContract); + issueUpdateContract, + "*"); // get the issue issueData = await testBase.client.ApiIssue.GetAsync( @@ -151,7 +152,8 @@ await testBase.client.ApiIssue.UpdateAsync( issueCommentParameters); Assert.NotNull(addedComment); Assert.Equal(addedComment.Name, newcommentId); - //Assert.Equal(addedComment.UserId, adminUser.Id); Bug userId is not getting populated + // https://msazure.visualstudio.com/DefaultCollection/One/_workitems/edit/4402087 + //Assert.Equal(addedComment.UserId, adminUser.Id); //Bug userId is not getting populated Assert.NotNull(addedComment.CreatedDate); // get the comment tag. diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/NotificationTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/NotificationTests.cs index e9f84dfde297..2c4b9bb3b196 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/NotificationTests.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/NotificationTests.cs @@ -51,12 +51,11 @@ public async Task UpdateDeleteRecipientEmail() Assert.Equal(userEmail, recipientEmailContract.Email); // check the recipient exists - var entityStatus = await testBase.client.NotificationRecipientEmail.CheckEntityExistsAsync( + await testBase.client.NotificationRecipientEmail.CheckEntityExistsAsync( testBase.rgName, testBase.serviceName, firstNotification.Name, userEmail); - Assert.True(entityStatus); // get the notification details var notificationContract = await testBase.client.Notification.GetAsync( @@ -75,12 +74,11 @@ await testBase.client.NotificationRecipientEmail.DeleteAsync( firstNotification.Name, userEmail); - entityStatus = await testBase.client.NotificationRecipientEmail.CheckEntityExistsAsync( + await testBase.client.NotificationRecipientEmail.CheckEntityExistsAsync( testBase.rgName, testBase.serviceName, firstNotification.Name, - userEmail); - Assert.False(entityStatus); + userEmail); } finally { @@ -133,12 +131,11 @@ public async Task UpdateDeleteRecipientUser() Assert.Equal(listUsersResponse.First().Id, recipientUserContract.UserId); // check the recipient exists - var entityStatus = await testBase.client.NotificationRecipientUser.CheckEntityExistsAsync( + await testBase.client.NotificationRecipientUser.CheckEntityExistsAsync( testBase.rgName, testBase.serviceName, firstNotification.Name, listUsersResponse.First().Name); - Assert.True(entityStatus); // get the notification details var notificationContract = await testBase.client.Notification.GetAsync( @@ -157,12 +154,11 @@ await testBase.client.NotificationRecipientUser.DeleteAsync( firstNotification.Name, listUsersResponse.First().Name); - entityStatus = await testBase.client.NotificationRecipientUser.CheckEntityExistsAsync( + await testBase.client.NotificationRecipientUser.CheckEntityExistsAsync( testBase.rgName, testBase.serviceName, firstNotification.Name, listUsersResponse.First().Name); - Assert.False(entityStatus); } finally { diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/PolicyTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/PolicyTests.cs index 990c983cbe1a..48f8f3816669 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/PolicyTests.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/PolicyTests.cs @@ -75,7 +75,7 @@ public async Task CreateListUpdateDelete() var globalPolicy = testBase.client.Policy.Get(testBase.rgName, testBase.serviceName); // set policy - var policyDoc = XDocument.Parse(globalPolicy.PolicyContent); + var policyDoc = XDocument.Parse(globalPolicy.Value); var policyContract = new PolicyContract(policyDoc.ToString()); @@ -93,7 +93,7 @@ public async Task CreateListUpdateDelete() testBase.serviceName); Assert.NotNull(getPolicyResponse); - Assert.NotNull(getPolicyResponse.PolicyContent); + Assert.NotNull(getPolicyResponse.Value); // get the policy etag var globalPolicyTag = await testBase.client.Policy.GetEntityTagAsync( @@ -170,7 +170,7 @@ public async Task CreateListUpdateDelete() api.Name); Assert.NotNull(getApiPolicy); - Assert.NotNull(getApiPolicy.PolicyContent); + Assert.NotNull(getApiPolicy.Value); // get the api policy tag var apiPolicyTag = await testBase.client.ApiPolicy.GetEntityTagAsync( @@ -243,7 +243,7 @@ public async Task CreateListUpdateDelete() operation.Name); Assert.NotNull(getOperationPolicy); - Assert.NotNull(getOperationPolicy.PolicyContent); + Assert.NotNull(getOperationPolicy.Value); // get operation policy tag var operationPolicyTag = await testBase.client.ApiOperationPolicy.GetEntityTagAsync( @@ -310,7 +310,7 @@ public async Task CreateListUpdateDelete() testBase.rgName, testBase.serviceName, product.Name, - new PolicyContract(policyContent: policyDoc.ToString())); + new PolicyContract(value: policyDoc.ToString())); Assert.NotNull(setResponse); @@ -321,7 +321,7 @@ public async Task CreateListUpdateDelete() product.Name); Assert.NotNull(getProductPolicy); - Assert.NotNull(getProductPolicy.PolicyContent); + Assert.NotNull(getProductPolicy.Value); // get product policy tag var productPolicyTag = await testBase.client.ProductPolicy.GetEntityTagAsync( diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/PolicyUriTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/PolicyUriTests.cs index c18bd9e1f0ce..d8f15bf2255d 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/PolicyUriTests.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/PolicyUriTests.cs @@ -55,8 +55,8 @@ public async Task CreateListUpdateDelete() Assert.NotNull(createdApiContract); var policyContract = new PolicyContract(); - policyContract.PolicyContent = ApiValid; - policyContract.ContentFormat = PolicyContentFormat.XmlLink; + policyContract.Value = ApiValid; + policyContract.Format = PolicyContentFormat.XmlLink; var apiPolicyContract = await testBase.client.ApiPolicy.CreateOrUpdateAsync( testBase.rgName, @@ -64,7 +64,7 @@ public async Task CreateListUpdateDelete() newApiId, policyContract); Assert.NotNull(apiPolicyContract); - Assert.NotNull(apiPolicyContract.PolicyContent); + Assert.NotNull(apiPolicyContract.Value); // get policy tag var apiPolicyTag = await testBase.client.ApiPolicy.GetEntityTagAsync( @@ -122,8 +122,8 @@ await testBase.client.Api.DeleteAsync( // create product policy contract var productPolicyContract = new PolicyContract(); - productPolicyContract.PolicyContent = ProductValid; - productPolicyContract.ContentFormat = PolicyContentFormat.XmlLink; + productPolicyContract.Value = ProductValid; + productPolicyContract.Format = PolicyContentFormat.XmlLink; var productPolicyResponse = testBase.client.ProductPolicy.CreateOrUpdate( testBase.rgName, @@ -132,7 +132,7 @@ await testBase.client.Api.DeleteAsync( productPolicyContract); Assert.NotNull(productPolicyResponse); - Assert.NotNull(productPolicyResponse.PolicyContent); + Assert.NotNull(productPolicyResponse.Value); Assert.Equal("policy", productPolicyResponse.Name); // there can be only one policy per product // get policy to check it was added @@ -142,7 +142,7 @@ await testBase.client.Api.DeleteAsync( product.Name); Assert.NotNull(getProductPolicy); - Assert.NotNull(getProductPolicy.PolicyContent); + Assert.NotNull(getProductPolicy.Format); // get product policy etag var productPolicyTag = await testBase.client.ProductPolicy.GetEntityTagAsync( diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/RegionsTest.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/RegionsTest.cs index ae402823e143..47fe2ddf4895 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/RegionsTest.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/RegionsTest.cs @@ -23,7 +23,7 @@ public async Task List() var testBase = new ApiManagementTestBase(context); testBase.TryCreateApiManagementService(); - var regions = await testBase.client.Regions.ListByServiceAsync( + var regions = await testBase.client.Region.ListByServiceAsync( testBase.rgName, testBase.serviceName); diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ReportTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ReportTests.cs index c0f80325751a..9d637cf55b53 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ReportTests.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ReportTests.cs @@ -36,13 +36,13 @@ public void Query() Assert.Single(byApiResponse); Assert.NotNull(byApiResponse.First().ApiId); - var byGeoResponse = testBase.client.Reports.ListByGeo( - testBase.rgName, - testBase.serviceName, + var byGeoResponse = testBase.client.Reports.ListByGeo( new Microsoft.Rest.Azure.OData.ODataQuery { Filter = "timestamp ge datetime'2017-06-22T00:00:00'" - }); + }, + testBase.rgName, + testBase.serviceName); Assert.NotNull(byGeoResponse); Assert.NotNull(byGeoResponse.First().Region); @@ -71,27 +71,27 @@ public void Query() Assert.Equal(2, byProductResponse.Count()); Assert.NotNull(byProductResponse.First().ProductId); - var bySubscriptionResponse = testBase.client.Reports.ListBySubscription( - testBase.rgName, - testBase.serviceName, + var bySubscriptionResponse = testBase.client.Reports.ListBySubscription( new Microsoft.Rest.Azure.OData.ODataQuery { Filter = "timestamp ge datetime'2017-06-22T00:00:00'" - }); + }, + testBase.rgName, + testBase.serviceName); Assert.NotNull(bySubscriptionResponse); Assert.Equal(2, bySubscriptionResponse.Count()); Assert.NotNull(bySubscriptionResponse.First().SubscriptionId); Assert.NotNull(bySubscriptionResponse.First().ProductId); - var byTimeResponse = testBase.client.Reports.ListByTime( - testBase.rgName, - testBase.serviceName, - TimeSpan.FromMinutes(30), + var byTimeResponse = testBase.client.Reports.ListByTime( new Microsoft.Rest.Azure.OData.ODataQuery { Filter = "timestamp ge datetime'2017-06-22T00:00:00'" - }); + }, + testBase.rgName, + testBase.serviceName, + TimeSpan.FromMinutes(30)); Assert.NotNull(byTimeResponse); diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/SubscriptionTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/SubscriptionTests.cs index b52298d6c34e..120f6a1b93db 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/SubscriptionTests.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/SubscriptionTests.cs @@ -27,12 +27,12 @@ public async Task CreateListUpdateDelete() // list subscriptions: there should be two by default var listResponse = testBase.client.Subscription.List( - testBase.rgName, - testBase.serviceName, - null); + testBase.rgName, + testBase.serviceName, + null); Assert.NotNull(listResponse); - Assert.True(listResponse.Count() >= 2); + Assert.True(listResponse.Count() >= 3); Assert.Null(listResponse.NextPageLink); // list paged @@ -57,12 +57,12 @@ public async Task CreateListUpdateDelete() Assert.Equal(firstSubscription.Name, getResponse.Name); Assert.Equal(firstSubscription.NotificationDate, getResponse.NotificationDate); Assert.Equal(firstSubscription.PrimaryKey, getResponse.PrimaryKey); - Assert.Equal(firstSubscription.ProductId, getResponse.ProductId); + Assert.Equal(firstSubscription.Scope, getResponse.Scope); Assert.Equal(firstSubscription.SecondaryKey, getResponse.SecondaryKey); Assert.Equal(firstSubscription.StartDate, getResponse.StartDate); Assert.Equal(firstSubscription.State, getResponse.State); Assert.Equal(firstSubscription.StateComment, getResponse.StateComment); - Assert.Equal(firstSubscription.UserId, getResponse.UserId); + Assert.Equal(firstSubscription.OwnerId, getResponse.OwnerId); Assert.Equal(firstSubscription.CreatedDate, getResponse.CreatedDate); Assert.Equal(firstSubscription.EndDate, getResponse.EndDate); Assert.Equal(firstSubscription.ExpirationDate, getResponse.ExpirationDate); @@ -71,7 +71,7 @@ public async Task CreateListUpdateDelete() testBase.client.Product.Update( testBase.rgName, testBase.serviceName, - firstSubscription.ProductIdentifier, + firstSubscription.ScopeIdentifier, new ProductUpdateParameters { SubscriptionsLimit = int.MaxValue @@ -80,6 +80,7 @@ public async Task CreateListUpdateDelete() // add new subscription string newSubscriptionId = TestUtilities.GenerateName("newSubscriptionId"); + string globalSubscriptionId = TestUtilities.GenerateName("globalSubscriptionId"); try { @@ -89,9 +90,9 @@ public async Task CreateListUpdateDelete() var newSubscriptionState = SubscriptionState.Active; var newSubscriptionCreate = new SubscriptionCreateParameters( - firstSubscription.UserId, - firstSubscription.ProductId, - newSubscriptionName) + firstSubscription.Scope, + newSubscriptionName, + firstSubscription.OwnerId) { PrimaryKey = newSubscriptionPk, SecondaryKey = newSubscriptionSk, @@ -105,8 +106,8 @@ public async Task CreateListUpdateDelete() newSubscriptionCreate); Assert.NotNull(subscriptionContract); - Assert.Equal(firstSubscription.ProductId, subscriptionContract.ProductId); - Assert.Equal(firstSubscription.UserId, subscriptionContract.UserId); + Assert.Equal(firstSubscription.ScopeIdentifier, subscriptionContract.ScopeIdentifier); + Assert.Equal(firstSubscription.OwnerId, subscriptionContract.OwnerId); Assert.Equal(newSubscriptionState, subscriptionContract.State); Assert.Equal(newSubscriptionSk, subscriptionContract.SecondaryKey); Assert.Equal(newSubscriptionPk, subscriptionContract.PrimaryKey); @@ -120,6 +121,14 @@ public async Task CreateListUpdateDelete() Assert.NotNull(subscriptionResponse); Assert.NotNull(subscriptionResponse.Headers.ETag); + // list product subscriptions + var productSubscriptions = await testBase.client.ProductSubscriptions.ListAsync( + testBase.rgName, + testBase.serviceName, + firstSubscription.ScopeIdentifier); + Assert.NotNull(productSubscriptions); + Assert.Equal(2, productSubscriptions.Count()); + // patch the subscription string patchedName = TestUtilities.GenerateName("patchedName"); string patchedPk = TestUtilities.GenerateName("patchedPk"); @@ -203,6 +212,39 @@ public async Task CreateListUpdateDelete() { Assert.Equal((int)HttpStatusCode.NotFound, (int)ex.Response.StatusCode); } + + // create a subscription with global scope on all apis + var globalSubscriptionDisplayName = TestUtilities.GenerateName("global"); + var globalSubscriptionCreateResponse = await testBase.client.Subscription.CreateOrUpdateAsync( + testBase.rgName, + testBase.serviceName, + globalSubscriptionId, + new SubscriptionCreateParameters("/apis", globalSubscriptionDisplayName)); + Assert.NotNull(globalSubscriptionCreateResponse); + Assert.Equal("apis", globalSubscriptionCreateResponse.ScopeIdentifier); + Assert.Null(globalSubscriptionCreateResponse.OwnerId); + Assert.Equal(SubscriptionState.Active, globalSubscriptionCreateResponse.State); + Assert.NotNull(globalSubscriptionCreateResponse.SecondaryKey); + Assert.NotNull(globalSubscriptionCreateResponse.PrimaryKey); + Assert.Equal(globalSubscriptionDisplayName, globalSubscriptionCreateResponse.DisplayName); + + // delete the global subscription + await testBase.client.Subscription.DeleteAsync( + testBase.rgName, + testBase.serviceName, + globalSubscriptionId, + "*"); + + // get the deleted subscription to make sure it was deleted + try + { + testBase.client.Subscription.Get(testBase.rgName, testBase.serviceName, globalSubscriptionId); + throw new Exception("This code should not have been executed."); + } + catch (ErrorResponseException ex) + { + Assert.Equal((int)HttpStatusCode.NotFound, (int)ex.Response.StatusCode); + } } finally { @@ -211,6 +253,12 @@ public async Task CreateListUpdateDelete() testBase.serviceName, newSubscriptionId, "*"); + + testBase.client.Subscription.Delete( + testBase.rgName, + testBase.serviceName, + globalSubscriptionId, + "*"); } } } diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/TagDescriptionTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/TagDescriptionTests.cs index bc41138b6026..9830383f3ec1 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/TagDescriptionTests.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/TagDescriptionTests.cs @@ -61,7 +61,7 @@ public async Task CreateListUpdateDelete() Assert.NotNull(tagContract); // list tag description - var tagDescriptionList = await testBase.client.TagDescription.ListByApiAsync( + var tagDescriptionList = await testBase.client.ApiTagDescription.ListByServiceAsync( testBase.rgName, testBase.serviceName, echoApi.Name); @@ -75,7 +75,7 @@ public async Task CreateListUpdateDelete() Description = TestUtilities.GenerateName("somedescription"), ExternalDocsUrl = "http://somelog.content" }; - var tagDescriptionContract = await testBase.client.TagDescription.CreateOrUpdateAsync( + var tagDescriptionContract = await testBase.client.ApiTagDescription.CreateOrUpdateAsync( testBase.rgName, testBase.serviceName, echoApi.Name, @@ -86,7 +86,7 @@ public async Task CreateListUpdateDelete() Assert.Equal(tagDescriptionCreateParams.Description, tagDescriptionContract.Description); // get the tagdescription etag - var tagDescriptionTag = await testBase.client.TagDescription.GetEntityStateAsync( + var tagDescriptionTag = await testBase.client.ApiTagDescription.GetEntityTagAsync( testBase.rgName, testBase.serviceName, echoApi.Name, @@ -96,7 +96,7 @@ public async Task CreateListUpdateDelete() // update the tag description tagDescriptionCreateParams.Description = TestUtilities.GenerateName("tag_update"); - tagDescriptionContract = await testBase.client.TagDescription.CreateOrUpdateAsync( + tagDescriptionContract = await testBase.client.ApiTagDescription.CreateOrUpdateAsync( testBase.rgName, testBase.serviceName, echoApi.Name, @@ -108,7 +108,7 @@ public async Task CreateListUpdateDelete() Assert.Equal(tagDescriptionCreateParams.Description, tagDescriptionContract.Description); // get the entity - tagDescriptionTag = await testBase.client.TagDescription.GetEntityStateAsync( + tagDescriptionTag = await testBase.client.ApiTagDescription.GetEntityTagAsync( testBase.rgName, testBase.serviceName, echoApi.Name, @@ -117,7 +117,7 @@ public async Task CreateListUpdateDelete() Assert.NotNull(tagDescriptionTag.ETag); // delete the tag description - await testBase.client.TagDescription.DeleteAsync( + await testBase.client.ApiTagDescription.DeleteAsync( testBase.rgName, testBase.serviceName, echoApi.Name, @@ -137,8 +137,7 @@ await testBase.client.Tag.DetachFromApiAsync( testBase.rgName, testBase.serviceName, echoApi.Name, - tagId, - tagTag.ETag); + tagId); // get the entity tag tagTag = await testBase.client.Tag.GetEntityStateAsync( @@ -169,11 +168,10 @@ await testBase.client.Tag.DeleteAsync( testBase.rgName, testBase.serviceName, echoApi.Name, - tagId, - "*"); + tagId); // delete the tag description - testBase.client.TagDescription.Delete( + testBase.client.ApiTagDescription.Delete( testBase.rgName, testBase.serviceName, echoApi.Name, diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/TagTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/TagTests.cs index fca98b60fa78..2abc3249b9bd 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/TagTests.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/TagTests.cs @@ -120,8 +120,7 @@ await testBase.client.Tag.DetachFromApiAsync( testBase.rgName, testBase.serviceName, echoApi.Name, - tagId, - tagEtagByApi.ETag); + tagId); Assert.Throws(() => testBase.client.Tag.GetByApi( @@ -153,7 +152,7 @@ await testBase.client.Tag.DeleteAsync( finally { testBase.client.Tag.DetachFromApi( - testBase.rgName, testBase.serviceName, echoApi.Name, tagId, "*"); + testBase.rgName, testBase.serviceName, echoApi.Name, tagId); testBase.client.Tag.Delete( testBase.rgName, testBase.serviceName, tagId, "*"); } @@ -254,8 +253,7 @@ await testBase.client.Tag.DetachFromProductAsync( testBase.rgName, testBase.serviceName, starterProduct.Name, - tagId, - tagEtagByProduct.ETag); + tagId); Assert.Throws(() => testBase.client.Tag.GetByProduct( @@ -287,7 +285,7 @@ await testBase.client.Tag.DeleteAsync( finally { testBase.client.Tag.DetachFromProduct( - testBase.rgName, testBase.serviceName, starterProduct.Name, tagId, "*"); + testBase.rgName, testBase.serviceName, starterProduct.Name, tagId); testBase.client.Tag.Delete( testBase.rgName, testBase.serviceName, tagId, "*"); } @@ -400,8 +398,7 @@ await testBase.client.Tag.DetachFromOperationAsync( testBase.serviceName, api.Name, firstOperation.Name, - tagId, - tagEtagByOperation.ETag); + tagId); Assert.Throws(() => testBase.client.Tag.GetByOperation( @@ -438,8 +435,8 @@ await testBase.client.Tag.DeleteAsync( testBase.serviceName, api.Name, firstOperation.Name, - tagId, - "*"); + tagId); + testBase.client.Tag.Delete( testBase.rgName, testBase.serviceName, tagId, "*"); } diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/UserTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/UserTests.cs index 895cafbee806..2520d9596831 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/UserTests.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/UserTests.cs @@ -101,22 +101,15 @@ 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(10)); - var genrateTokenResponse = testBase.client.User.GetSharedAccessToken( + var userTokenParameters = new UserTokenParameters(KeyType.Primary, DateTime.UtcNow.AddDays(10)); + var generateTokenResponse = testBase.client.User.GetSharedAccessToken( testBase.rgName, testBase.serviceName, userId, userTokenParameters); - Assert.NotNull(genrateTokenResponse); - Assert.NotNull(genrateTokenResponse.Value); - - // get the useridentity - var currentUserIdentity = await testBase.client.User.GetIdentityAsync( - testBase.rgName, - testBase.serviceName); - Assert.NotNull(currentUserIdentity); - Assert.NotNull(currentUserIdentity.Id); + Assert.NotNull(generateTokenResponse); + Assert.NotNull(generateTokenResponse.Value); // remove the user testBase.client.User.Delete( diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ResourceProviderTests/CreateMultiHostNameService.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ResourceProviderTests/CreateMultiHostNameService.cs index 8e901014f327..5ba6166e4d01 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ResourceProviderTests/CreateMultiHostNameService.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ResourceProviderTests/CreateMultiHostNameService.cs @@ -3,15 +3,15 @@ // license information. // +using System; +using System.Collections.Generic; +using System.Linq; +using System.Security.Cryptography.X509Certificates; using Microsoft.Azure.Management.ApiManagement; using Microsoft.Azure.Management.ApiManagement.Models; using Microsoft.Azure.Management.ResourceManager; using Microsoft.Rest.Azure; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Security.Cryptography.X509Certificates; using Xunit; namespace ApiManagement.Tests.ResourceProviderTests @@ -79,8 +79,12 @@ public void CreateMultiHostNameService() testBase.tags); Assert.NotNull(createdService.HostnameConfigurations); - Assert.Equal(3, createdService.HostnameConfigurations.Count()); - foreach(HostnameConfiguration hostnameConfig in createdService.HostnameConfigurations) + Assert.Equal(4, createdService.HostnameConfigurations.Count()); // customhostname config + 1 default proxy + var defaultHostname = new Uri(createdService.GatewayUrl).Host; + var hostnameConfigurationToValidate = createdService.HostnameConfigurations + .Where(h => !h.HostName.Equals(defaultHostname, StringComparison.InvariantCultureIgnoreCase)); + + foreach (HostnameConfiguration hostnameConfig in hostnameConfigurationToValidate) { var hostnameConfiguration = createdService.HostnameConfigurations .SingleOrDefault(h => hostnameConfig.HostName.Equals(h.HostName)); @@ -89,6 +93,7 @@ public void CreateMultiHostNameService() Assert.NotNull(hostnameConfiguration.Certificate); Assert.NotNull(hostnameConfiguration.Certificate.Subject); Assert.Equal(cert.Thumbprint, hostnameConfiguration.Certificate.Thumbprint); + if (HostnameType.Proxy == hostnameConfiguration.Type) { Assert.True(hostnameConfiguration.DefaultSslBinding); @@ -117,8 +122,11 @@ public void CreateMultiHostNameService() Assert.NotNull(updatedService); Assert.NotEmpty(updatedService.Tags); Assert.Equal(intialTagsCount + 1, updatedService.Tags.Count); - Assert.Equal(3, updatedService.HostnameConfigurations.Count()); - foreach (HostnameConfiguration hostnameConfig in updatedService.HostnameConfigurations) + Assert.Equal(4, updatedService.HostnameConfigurations.Count()); + + hostnameConfigurationToValidate = updatedService.HostnameConfigurations + .Where(h => !h.HostName.Equals(defaultHostname, StringComparison.InvariantCultureIgnoreCase)); + foreach (HostnameConfiguration hostnameConfig in hostnameConfigurationToValidate) { var hostnameConfiguration = updatedService.HostnameConfigurations .SingleOrDefault(h => hostnameConfig.HostName.Equals(h.HostName)); @@ -127,6 +135,7 @@ public void CreateMultiHostNameService() Assert.NotNull(hostnameConfiguration.Certificate); Assert.NotNull(hostnameConfiguration.Certificate.Subject); Assert.Equal(cert.Thumbprint, hostnameConfiguration.Certificate.Thumbprint); + if (HostnameType.Proxy == hostnameConfiguration.Type) { Assert.True(hostnameConfiguration.DefaultSslBinding); @@ -159,5 +168,5 @@ public void CreateMultiHostNameService() }); } } - } + } } \ No newline at end of file diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ResourceProviderTests/ResourceProviderTestBase.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ResourceProviderTests/ResourceProviderTestBase.cs index c244d0276351..a3482fa50faa 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ResourceProviderTests/ResourceProviderTestBase.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ResourceProviderTests/ResourceProviderTestBase.cs @@ -34,11 +34,15 @@ private void ValidateService( Assert.Equal(expectedSkuName, service.Sku.Name, true); Assert.Equal(expectedServiceName, service.Name); Assert.True(expectedTags.DictionaryEqual(service.Tags)); - Assert.NotNull(service.PortalUrl); Assert.NotNull(service.GatewayUrl); - Assert.NotNull(service.ManagementApiUrl); - Assert.NotNull(service.ScmUrl); - Assert.NotNull(service.PublicIPAddresses); + // No Portal, Management URL and SCM endpoint for Consumption SKU. + if (service.Sku.Name != SkuType.Consumption) + { + Assert.NotNull(service.PortalUrl); + Assert.NotNull(service.ManagementApiUrl); + Assert.NotNull(service.ScmUrl); + Assert.NotNull(service.PublicIPAddresses); + } Assert.Equal(expectedPublisherName, service.PublisherName); Assert.Equal(expectedPublisherEmail, service.PublisherEmail); } diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ResourceProviderTests/SetupMsiTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ResourceProviderTests/SetupMsiTests.cs index 662877ffe19a..12d2ca136667 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ResourceProviderTests/SetupMsiTests.cs +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ResourceProviderTests/SetupMsiTests.cs @@ -22,7 +22,11 @@ public void SetupMsiTests() using (MockContext context = MockContext.Start(this.GetType().FullName)) { var testBase = new ApiManagementTestBase(context); + string consumptionSkuRegion = "West US"; + // setup MSI on Consumption SKU + testBase.serviceProperties.Location = consumptionSkuRegion; + testBase.serviceProperties.Sku = new ApiManagementServiceSkuProperties(SkuType.Consumption); testBase.serviceProperties.Identity = new ApiManagementServiceIdentity(); var createdService = testBase.client.ApiManagementService.CreateOrUpdate( resourceGroupName: testBase.rgName, @@ -33,7 +37,7 @@ public void SetupMsiTests() testBase.serviceName, testBase.rgName, testBase.subscriptionId, - testBase.location, + consumptionSkuRegion, testBase.serviceProperties.PublisherEmail, testBase.serviceProperties.PublisherName, testBase.serviceProperties.Sku.Name, diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ResourceProviderTests/UpdateHostNameTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ResourceProviderTests/UpdateHostNameTests.cs deleted file mode 100644 index 44b1b8a42ae2..000000000000 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/ResourceProviderTests/UpdateHostNameTests.cs +++ /dev/null @@ -1,90 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// - -using Microsoft.Azure.Management.ApiManagement; -using Microsoft.Azure.Management.ApiManagement.Models; -using Microsoft.Azure.Management.ResourceManager; -using Microsoft.Rest.Azure; -using Microsoft.Rest.ClientRuntime.Azure.TestFramework; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Security.Cryptography.X509Certificates; -using System.Threading.Tasks; -using Xunit; - -namespace ApiManagement.Tests.ResourceProviderTests -{ - public partial class ApiManagementServiceTests - { - [Fact] - public async Task UpdateHostNameTests() - { - Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Playback"); - using (MockContext context = MockContext.Start(this.GetType().FullName)) - { - var testBase = new ApiManagementTestBase(context); - - var createdService = testBase.client.ApiManagementService.CreateOrUpdate( - resourceGroupName: testBase.rgName, - serviceName: testBase.serviceName, - parameters: testBase.serviceProperties); - - ValidateService(createdService, - testBase.serviceName, - testBase.rgName, - testBase.subscriptionId, - testBase.location, - testBase.serviceProperties.PublisherEmail, - testBase.serviceProperties.PublisherName, - testBase.serviceProperties.Sku.Name, - testBase.tags); - - var base64ArrayCertificate = Convert.FromBase64String(testBase.base64EncodedTestCertificateData); - var cert = new X509Certificate2(base64ArrayCertificate, testBase.testCertificatePassword); - - var uploadCertificateParams = new ApiManagementServiceUploadCertificateParameters() - { - Type = HostnameType.Proxy, - Certificate = testBase.base64EncodedTestCertificateData, - CertificatePassword = testBase.testCertificatePassword - }; - var certificateInformation = await testBase.client.ApiManagementService.UploadCertificateAsync(testBase.rgName, testBase.serviceName, uploadCertificateParams); - - Assert.NotNull(certificateInformation); - Assert.Equal(cert.Thumbprint, certificateInformation.Thumbprint); - Assert.Equal(cert.Subject, certificateInformation.Subject); - - var updateHostnameParams = new ApiManagementServiceUpdateHostnameParameters() - { - Update = new List() - { new HostnameConfigurationOld(HostnameType.Proxy, "proxy.msitesting.net", certificateInformation) } - }; - - var serviceResource = await testBase.client.ApiManagementService.UpdateHostnameAsync( - testBase.rgName, - testBase.serviceName, - updateHostnameParams); - - Assert.NotNull(serviceResource); - Assert.Single(serviceResource.HostnameConfigurations); - Assert.Equal(HostnameType.Proxy, serviceResource.HostnameConfigurations.First().Type); - Assert.Equal("proxy.msitesting.net", serviceResource.HostnameConfigurations.First().HostName); - - // Delete - testBase.client.ApiManagementService.Delete( - resourceGroupName: testBase.rgName, - serviceName: testBase.serviceName); - - Assert.Throws(() => - { - testBase.client.ApiManagementService.Get( - resourceGroupName: testBase.rgName, - serviceName: testBase.serviceName); - }); - } - } - } -} \ No newline at end of file diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/Resources/petstore.yaml b/src/SDKs/ApiManagement/ApiManagement.Tests/Resources/petstore.yaml new file mode 100644 index 000000000000..fed854815845 --- /dev/null +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/Resources/petstore.yaml @@ -0,0 +1,109 @@ +openapi: "3.0.0" +info: + version: 1.0.0 + title: Swagger Petstore + license: + name: MIT +servers: + - url: http://petstore.swagger.io/v1 +paths: + /pets: + get: + summary: List all pets + operationId: listPets + tags: + - pets + parameters: + - name: limit + in: query + description: How many items to return at one time (max 100) + required: false + schema: + type: integer + format: int32 + responses: + '200': + description: A paged array of pets + headers: + x-next: + description: A link to the next page of responses + schema: + type: string + content: + application/json: + schema: + $ref: "#/components/schemas/Pets" + default: + description: unexpected error + content: + application/json: + schema: + $ref: "#/components/schemas/Error" + post: + summary: Create a pet + operationId: createPets + tags: + - pets + responses: + '201': + description: Null response + default: + description: unexpected error + content: + application/json: + schema: + $ref: "#/components/schemas/Error" + /pets/{petId}: + get: + summary: Info for a specific pet + operationId: showPetById + tags: + - pets + parameters: + - name: petId + in: path + required: true + description: The id of the pet to retrieve + schema: + type: string + responses: + '200': + description: Expected response to a valid request + content: + application/json: + schema: + $ref: "#/components/schemas/Pets" + default: + description: unexpected error + content: + application/json: + schema: + $ref: "#/components/schemas/Error" +components: + schemas: + Pet: + required: + - id + - name + properties: + id: + type: integer + format: int64 + name: + type: string + tag: + type: string + Pets: + type: array + items: + $ref: "#/components/schemas/Pet" + Error: + required: + - code + - message + properties: + code: + type: integer + format: int32 + message: + type: string \ No newline at end of file diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiDiagnosticTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiDiagnosticTests/CreateListUpdateDelete.json new file mode 100644 index 000000000000..67d26312e15a --- /dev/null +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiDiagnosticTests/CreateListUpdateDelete.json @@ -0,0 +1,997 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "93ee1cce-72f8-4a66-a882-14a12fe99df8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "289" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAFuRAQ=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9c4d540f-8515-4012-a47e-7fb6565c52ae", + "b988895d-4566-415e-a1d3-2d668ecd510b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "e1a52196-1d88-4771-965e-fd09656bb40d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020927Z:e1a52196-1d88-4771-965e-fd09656bb40d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:09:27 GMT" + ], + "Content-Length": [ + "2039" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87887062-d838-4996-b0d0-2db5e1567807" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAFuRAQ=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "22d984ad-08cc-4eeb-baf6-85ca67b05ae7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "148df944-decd-4919-9ee8-1aec73bc7ba6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020927Z:148df944-decd-4919-9ee8-1aec73bc7ba6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:09:27 GMT" + ], + "Content-Length": [ + "2039" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97d0da0f-3824-4b91-9a36-ce8cef16907e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0e9efadd-bcd8-4c09-a262-b4883a774a31" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "1b6cb522-efb0-465d-87f4-647a87f2c535" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020927Z:1b6cb522-efb0-465d-87f4-647a87f2c535" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:09:27 GMT" + ], + "Content-Length": [ + "676" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/diagnostics?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8257058-32dc-405b-9367-0c3146f57ab2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e552e29b-4a3a-47de-b632-3490d17733ae" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "f9492109-ecb5-471d-88af-ca6f04784695" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020927Z:f9492109-ecb5-471d-88af-ca6f04784695" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:09:27 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzODAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"9077a65a-e8ff-46a0-93d1-e4ac43ebb7bc\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5cafe144-eab5-4ea6-bd2c-b935b2b21ef0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "167" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcQs=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "833aca87-baf7-463b-a3c5-9aab77262445" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "134e6a2a-10be-4f95-8560-e1180c68fb5e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020928Z:134e6a2a-10be-4f95-8560-e1180c68fb5e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:09:28 GMT" + ], + "Content-Length": [ + "518" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"appInsights800\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": null,\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5caea1d8b597440f487b0de7}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b345b694-4de6-4d57-b471-8fecf04e1920" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcQ0=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9d4daaa3-fc7d-4ae5-b38b-0bf72cebeaa1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "ada4abfc-6ce1-4f62-8ef8-c39eda89ddab" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020928Z:ada4abfc-6ce1-4f62-8ef8-c39eda89ddab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:09:28 GMT" + ], + "Content-Length": [ + "678" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": null,\r\n \"enableHttpCorrelationHeaders\": true,\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800\",\r\n \"sampling\": null,\r\n \"frontend\": null,\r\n \"backend\": null\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n },\r\n \"enableHttpCorrelationHeaders\": true\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "143a82b6-502c-4aab-bef5-1d0f5a245a2b" + ], + "If-Match": [ + "\"AAAAAAAAcQ0=\"" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1004" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcRE=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "80608d95-cc3d-4fad-88c5-a9843bb79b0e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "2eb115a9-415b-40a8-b6b1-005f97e80984" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020929Z:2eb115a9-415b-40a8-b6b1-005f97e80984" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:09:29 GMT" + ], + "Content-Length": [ + "1331" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"enableHttpCorrelationHeaders\": true,\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d3d0ceb3-9f91-4d0d-aaeb-aaa35b804a85" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcQ0=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e6115ed3-b2d7-436d-aa91-4880569295ec" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "2fe62b2b-8ae8-4349-be45-cf0ec117e33c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020928Z:2fe62b2b-8ae8-4349-be45-cf0ec117e33c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:09:28 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a301b28-7d33-4aff-97dd-d29ecd843bc5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "86de8537-3030-4562-8ca3-2289bb11c0af" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "8b29af19-f72b-4ea2-acbc-3c49c1ec178e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020929Z:8b29af19-f72b-4ea2-acbc-3c49c1ec178e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:09:29 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37ee64c6-9c8f-4956-873b-095db9be6b46" + ], + "If-Match": [ + "\"AAAAAAAAcRE=\"" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a926a710-e5c4-4573-9bf7-7378ec1e474c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "d4151e0c-78c3-4690-9649-e0183f4cec4e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020929Z:d4151e0c-78c3-4690-9649-e0183f4cec4e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:09:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa300e46-7675-4566-b3c5-28341eb4f009" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e2ddc4a7-e99b-43b0-83b8-fb4beb954493" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "fcf3f3af-19b9-4857-bede-49804060027d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020930Z:fcf3f3af-19b9-4857-bede-49804060027d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:09:30 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzODAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7fde5a9-d969-44cc-a6f2-46a6952c7b5f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcQs=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "17d016e4-d0b4-4cd6-a003-d6bc11d63660" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "8e8dc1a4-1a57-495a-a67a-9bfe76610146" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020929Z:8e8dc1a4-1a57-495a-a67a-9bfe76610146" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:09:29 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzODAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35dffb2b-78bc-415d-82e6-3c5b785bcf84" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9a16847a-9460-4f96-b83f-ffa42df7652b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "a0818704-fa54-47a7-a204-6cad53f28c98" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020930Z:a0818704-fa54-47a7-a204-6cad53f28c98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:09:30 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzODAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14826abe-80c1-4ca6-b481-8e3255784d89" + ], + "If-Match": [ + "\"AAAAAAAAcQs=\"" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7aa534a7-2f21-4420-81aa-aa3f1bba3729" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "57772163-53f8-4eb2-9a67-35000bb1718f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020930Z:57772163-53f8-4eb2-9a67-35000bb1718f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:09:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights800?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzODAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8df4c9e-7b5e-4c99-8329-b300a486f5d8" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "88d4610c-f32a-43f0-af37-d2ef59f91b6a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "a9c2077b-1efa-41e7-bd70-50c5c1275120" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020930Z:a9c2077b-1efa-41e7-bd70-50c5c1275120" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:09:30 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + } + ], + "Names": { + "CreateListUpdateDelete": [ + "appInsights800" + ], + "appInsights": [ + "9077a65a-e8ff-46a0-93d1-e4ac43ebb7bc" + ] + }, + "Variables": { + "SubscriptionId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", + "TestCertificate": "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", + "TestCertificatePassword": "Password", + "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", + "ServiceName": "sdktestservice", + "Location": "CentralUS", + "ResourceGroup": "Api-Default-CentralUS" + } +} \ No newline at end of file diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiExportImportTests/OpenApiTest.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiExportImportTests/OpenApiTest.json new file mode 100644 index 000000000000..0946d07cbcb5 --- /dev/null +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiExportImportTests/OpenApiTest.json @@ -0,0 +1,481 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "175dd6dc-d961-4bc0-ac1e-324b6cc4805f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "289" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAFuRAQ=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "416989cb-8c9d-4a8c-bb9d-e62f7a115955", + "afa311c2-6a54-48a8-8575-5c9d062c5715" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "685f8724-53a1-4d5d-b2a6-287c518baa2f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021212Z:685f8724-53a1-4d5d-b2a6-287c518baa2f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:12:12 GMT" + ], + "Content-Length": [ + "2039" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5b492ac-0156-4b6b-80df-715d4bfa1a7f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAFuRAQ=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c900467f-3c68-4b8d-8efd-8979de4b169c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "46af27f6-294c-47a3-8b2a-51cb89657edf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021212Z:46af27f6-294c-47a3-8b2a-51cb89657edf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:12:12 GMT" + ], + "Content-Length": [ + "2039" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid6500?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDY1MDA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"openapi3\",\r\n \"value\": \"openapi: \\\"3.0.0\\\"\\r\\ninfo:\\r\\n version: 1.0.0\\r\\n title: Swagger Petstore\\r\\n license:\\r\\n name: MIT\\r\\nservers:\\r\\n - url: http://petstore.swagger.io/v1\\r\\npaths:\\r\\n /pets:\\r\\n get:\\r\\n summary: List all pets\\r\\n operationId: listPets\\r\\n tags:\\r\\n - pets\\r\\n parameters:\\r\\n - name: limit\\r\\n in: query\\r\\n description: How many items to return at one time (max 100)\\r\\n required: false\\r\\n schema:\\r\\n type: integer\\r\\n format: int32\\r\\n responses:\\r\\n '200':\\r\\n description: A paged array of pets\\r\\n headers:\\r\\n x-next:\\r\\n description: A link to the next page of responses\\r\\n schema:\\r\\n type: string\\r\\n content:\\r\\n application/json: \\r\\n schema:\\r\\n $ref: \\\"#/components/schemas/Pets\\\"\\r\\n default:\\r\\n description: unexpected error\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n $ref: \\\"#/components/schemas/Error\\\"\\r\\n post:\\r\\n summary: Create a pet\\r\\n operationId: createPets\\r\\n tags:\\r\\n - pets\\r\\n responses:\\r\\n '201':\\r\\n description: Null response\\r\\n default:\\r\\n description: unexpected error\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n $ref: \\\"#/components/schemas/Error\\\"\\r\\n /pets/{petId}:\\r\\n get:\\r\\n summary: Info for a specific pet\\r\\n operationId: showPetById\\r\\n tags:\\r\\n - pets\\r\\n parameters:\\r\\n - name: petId\\r\\n in: path\\r\\n required: true\\r\\n description: The id of the pet to retrieve\\r\\n schema:\\r\\n type: string\\r\\n responses:\\r\\n '200':\\r\\n description: Expected response to a valid request\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n $ref: \\\"#/components/schemas/Pets\\\"\\r\\n default:\\r\\n description: unexpected error\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n $ref: \\\"#/components/schemas/Error\\\"\\r\\ncomponents:\\r\\n schemas:\\r\\n Pet:\\r\\n required:\\r\\n - id\\r\\n - name\\r\\n properties:\\r\\n id:\\r\\n type: integer\\r\\n format: int64\\r\\n name:\\r\\n type: string\\r\\n tag:\\r\\n type: string\\r\\n Pets:\\r\\n type: array\\r\\n items:\\r\\n $ref: \\\"#/components/schemas/Pet\\\"\\r\\n Error:\\r\\n required:\\r\\n - code\\r\\n - message\\r\\n properties:\\r\\n code:\\r\\n type: integer\\r\\n format: int32\\r\\n message:\\r\\n type: string\",\r\n \"format\": \"openapi\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5d2f670-c8db-4177-a41a-cbde02977919" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2969" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid6500?api-version=2019-01-01&asyncId=5caea27db597440f487b0e16&asyncCode=201" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c82ceb02-ba16-4539-8961-d6e5dc1b1aae" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "8a2ce68f-3a52-46aa-80f6-25aa9195f1db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021213Z:8a2ce68f-3a52-46aa-80f6-25aa9195f1db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:12:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid6500?api-version=2019-01-01&asyncId=5caea27db597440f487b0e16&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDY1MDA/YXBpLXZlcnNpb249MjAxOS0wMS0wMSZhc3luY0lkPTVjYWVhMjdkYjU5NzQ0MGY0ODdiMGUxNiZhc3luY0NvZGU9MjAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcaU=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "718240ad-eda3-4d3f-94c5-75d39002581f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "868b6a28-aa02-4185-9470-0b064ceea886" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021243Z:868b6a28-aa02-4185-9470-0b064ceea886" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:12:42 GMT" + ], + "Content-Length": [ + "721" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid6500\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid6500\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapi3\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid6500?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDY1MDA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2831cf37-5dd4-45f6-ae96-fcc7fedab413" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcaU=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8abd5ca2-e51e-480a-9f05-b2db309dac03" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "affc0baa-6378-4f70-9e10-8f6b4da38eb6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021243Z:affc0baa-6378-4f70-9e10-8f6b4da38eb6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:12:43 GMT" + ], + "Content-Length": [ + "721" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid6500\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid6500\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapi3\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid6500?format=openapi-link&export=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDY1MDA/Zm9ybWF0PW9wZW5hcGktbGluayZleHBvcnQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a5fe5ef-6a17-4cb3-8cd0-8cd24f459a57" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcaU=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4225115a-d8cd-4f40-af98-ad7a12577892" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "39911b4f-ce18-4024-8cef-d4700c6c2813" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021243Z:39911b4f-ce18-4024-8cef-d4700c6c2813" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:12:43 GMT" + ], + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid6500\",\r\n \"format\": \"openapi-link\",\r\n \"value\": {\r\n \"link\": \"https://apimgmtstkjpszvoe48cckrb.blob.core.windows.net/api-export/Swagger Petstore.yaml?sv=2015-07-08&sr=b&sig=1pkbkQJBbIy83CqBE8N3MJv5lGhDUd9R7fH1RwOJ2HY%3D&se=2019-04-11T02:17:43Z&sp=r\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid6500?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDY1MDA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4efc0c40-20bc-4e69-8d9f-a5d7b3237456" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b759b8d1-8341-42b8-a275-5e9bd9da5dd2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "baad2a43-f47e-4584-a96b-c47a8c2acf3b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021244Z:baad2a43-f47e-4584-a96b-c47a8c2acf3b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:12:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "OpenApiTest": [ + "aid6500" + ] + }, + "Variables": { + "SubscriptionId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", + "TestCertificate": "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", + "TestCertificatePassword": "Password", + "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", + "ServiceName": "sdktestservice", + "Location": "CentralUS", + "ResourceGroup": "Api-Default-CentralUS" + } +} \ No newline at end of file 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 d801494b8c03..a159028ad1de 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "64c674fd-842a-4352-84bc-8eb4736e3360" + "8bc147f7-e4aa-467d-ad8b-d03413ac6374" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:11 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f64630cb-b1f9-448e-aba8-33d889edee16", - "9026fc89-968e-4f0a-a755-a9b5f7efbf2c" + "12ec5153-2128-4af1-b32b-831dcac736ba", + "cbd87d8c-d622-46e0-bd63-08fdc244f424" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "7622d5c6-10eb-4209-a01c-ddf0cafdf59a" + "0618f5fc-b045-4e20-b705-497696f8747d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041211Z:7622d5c6-10eb-4209-a01c-ddf0cafdf59a" + "WESTUS2:20190411T021245Z:0618f5fc-b045-4e20-b705-497696f8747d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:12:45 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a76cfc9b-b2a7-4b88-9775-44d0f4cd5460" + "1519a412-f30d-417f-8db0-a72ea0f74b95" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:11 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "acf89ed0-d122-4898-9d58-272b68ae41e0" + "70cb8507-83fe-4545-8404-88086247dd14" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "5e8625f7-4e5c-4bca-8bd2-55c38a7cad78" + "b08bac7e-f908-4617-bccf-23f751d79ca5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041212Z:5e8625f7-4e5c-4bca-8bd2-55c38a7cad78" + "WESTUS2:20190411T021246Z:b08bac7e-f908-4617-bccf-23f751d79ca5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:12:45 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,68 +136,125 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8389?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDgzODk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7282?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDcyODI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "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}", + "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerApi\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "73fa4d31-1e44-449b-80f7-09293bfc4082" + "bf0d0b6b-57d4-4e69-9486-3a781f3866fe" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "18238" + "18224" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:12 GMT" - ], "Pragma": [ "no-cache" ], - "ETag": [ - "\"AAAAAAAAZMI=\"" + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7282?api-version=2019-01-01&asyncId=5caea29eb597440f487b0e1c&asyncCode=201" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8074e9e9-dba7-496c-ad00-a32bd9871459" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "b42730df-57af-4950-b91f-81a99538971f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021246Z:b42730df-57af-4950-b91f-81a99538971f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:12:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7282?api-version=2019-01-01&asyncId=5caea29eb597440f487b0e1c&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDcyODI/YXBpLXZlcnNpb249MjAxOS0wMS0wMSZhc3luY0lkPTVjYWVhMjllYjU5NzQ0MGY0ODdiMGUxYyZhc3luY0NvZGU9MjAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcbU=\"" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a5bb29c2-121e-47c9-a0ff-ac76da55faad" + "3077171a-ddbd-4e1b-8076-869ee8f0d3e8" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "92a60598-e839-4523-bbe7-34c7a20fbf59" + "6e7ba27c-0611-4a90-9a90-65e5efc6c421" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041213Z:92a60598-e839-4523-bbe7-34c7a20fbf59" + "WESTUS2:20190411T021316Z:6e7ba27c-0611-4a90-9a90-65e5efc6c421" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:13:15 GMT" + ], "Content-Length": [ "844" ], @@ -208,62 +265,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8389\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid8389\",\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/aid7282\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid7282\",\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}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8389?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDgzODk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7282?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDcyODI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b551e86-e849-4c20-9b1c-e2ef19086172" + "6f954d16-a619-43ed-b9d3-8188ab2c0347" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:12 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZMI=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcbU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c3b8cd92-0429-4042-8411-b1ddc943962c" + "c87ff097-02bb-4ae2-af63-c138c3661a0a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "ac2f70db-37b6-4862-9a94-61a52d3dc6ce" + "9077b9cc-65f0-4a3d-8e85-812352497a4d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041213Z:ac2f70db-37b6-4862-9a94-61a52d3dc6ce" + "WESTUS2:20190411T021316Z:9077b9cc-65f0-4a3d-8e85-812352497a4d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:13:16 GMT" + ], "Content-Length": [ "844" ], @@ -274,133 +331,133 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8389\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid8389\",\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/aid7282\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid7282\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8389?format=swagger-link&export=true&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDgzODk/Zm9ybWF0PXN3YWdnZXItbGluayZleHBvcnQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7282?format=swagger-link&export=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDcyODI/Zm9ybWF0PXN3YWdnZXItbGluayZleHBvcnQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05f82482-d276-43f1-8b64-07b9e0d3ee19" + "83811572-3d81-47d5-bfe8-ffb3a90cf197" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:13 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZMI=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcbU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ddb9b513-481d-450d-8c09-1494a58e90cf" + "57da78d6-2e1e-4885-a39a-6db1c093f74a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "3a011e25-7a3a-4401-a052-f8a49f8b3547" + "6bd1c7c1-c3f8-4685-af5d-362d94dfebce" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041213Z:3a011e25-7a3a-4401-a052-f8a49f8b3547" + "WESTUS2:20190411T021317Z:6bd1c7c1-c3f8-4685-af5d-362d94dfebce" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:13:16 GMT" + ], "Content-Length": [ - "210" + "418" ], "Content-Type": [ - "application/vnd.swagger.link+json; charset=utf-8" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"link\": \"https://apimgmtstkjpszvoe48cckrb.blob.core.windows.net/api-export/Swagger Petstore Extensive.json?sv=2015-07-08&sr=b&sig=ymAASPtuWOfV59PFSHqizgy7K5uDNEHzheONaUcs3HY%3D&se=2019-04-02T04:17:13Z&sp=r\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7282\",\r\n \"format\": \"swagger-link-json\",\r\n \"value\": {\r\n \"link\": \"https://apimgmtstkjpszvoe48cckrb.blob.core.windows.net/api-export/Swagger Petstore Extensive.json?sv=2015-07-08&sr=b&sig=86pKkpl%2Bsd1amy4Zq1H1AYz%2FgaaamC15nG0TVP0Sl%2F4%3D&se=2019-04-11T02:18:17Z&sp=r\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8389?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDgzODk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7282?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDcyODI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39593a8c-fd98-4a71-b07f-0a695564f731" + "f50e57e1-bb00-49f9-9328-3b52e5320728" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aaa50e8a-c079-46af-b335-684b35097798" + "65e3adbb-9d69-47fe-bab2-751966cf7968" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "08c59e7e-e9d9-4573-add7-eeb933de9549" + "2f5a33ed-31ac-4742-b42a-699e70a199e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041214Z:08c59e7e-e9d9-4573-add7-eeb933de9549" + "WESTUS2:20190411T021317Z:2f5a33ed-31ac-4742-b42a-699e70a199e5" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:13:17 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -409,7 +466,7 @@ ], "Names": { "SwaggerTest": [ - "aid8389" + "aid7282" ] }, "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 c4e3168113e8..0da0bf411d49 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "392cbb95-1666-42d8-87a4-1948d5de7708" + "ba874eea-518f-46d5-a3c0-fbb931adc299" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:15 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "739ac624-ca38-4933-8e3f-ef865e467819", - "da48010f-481c-4b66-b516-fac17309764d" + "b7f9395d-e66b-4887-af16-1ba164a95da9", + "0a33ae43-8ca6-4300-921d-2267e42f9c4e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "b3c0a4fe-9022-4bf7-8c0f-4781fb0e014c" + "2e0e1145-c5ac-4384-afbc-a4d8c7f78a9b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041215Z:b3c0a4fe-9022-4bf7-8c0f-4781fb0e014c" + "WESTUS2:20190411T021319Z:2e0e1145-c5ac-4384-afbc-a4d8c7f78a9b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:13:18 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "063a6348-cc3a-49f0-8fa1-b1720cc443e5" + "999f9e50-4538-414a-8019-ce90864c8082" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:15 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "02260ffa-8cd7-4231-b288-0fb5e45c82ec" + "9eefea03-df1b-464f-8c53-db4a40bd6a2b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "f36ec78c-6e24-43eb-98c8-205f15a3e299" + "5567a440-ed67-42dc-9141-1436daf65c30" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041216Z:f36ec78c-6e24-43eb-98c8-205f15a3e299" + "WESTUS2:20190411T021319Z:5567a440-ed67-42dc-9141-1436daf65c30" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:13:19 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,68 +136,125 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid9501?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDk1MDE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1215?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDEyMTU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "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 \"contentFormat\": \"wadl-xml\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"yahooWadl\",\r\n \"value\": \"\\r\\n\\r\\n Yahoo News Search API\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"wadl-xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "add503ca-0af2-470b-829b-6f57292c9001" + "3aa1ea9e-70aa-404b-b828-d273e3cada26" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "4325" + "4311" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:16 GMT" - ], "Pragma": [ "no-cache" ], - "ETag": [ - "\"AAAAAAAAZOE=\"" + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1215?api-version=2019-01-01&asyncId=5caea2bfb597440f487b0e22&asyncCode=201" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b49503e0-881c-44b1-a0fa-8f2212f13312" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "a985def7-31ca-49c2-a702-e6bac115b16a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021319Z:a985def7-31ca-49c2-a702-e6bac115b16a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:13:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1215?api-version=2019-01-01&asyncId=5caea2bfb597440f487b0e22&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDEyMTU/YXBpLXZlcnNpb249MjAxOS0wMS0wMSZhc3luY0lkPTVjYWVhMmJmYjU5NzQ0MGY0ODdiMGUyMiZhc3luY0NvZGU9MjAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcdQ=\"" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2dd5511b-a25b-48ca-9f18-1fa2154bc292" + "3f2ec21b-8b7d-436a-9940-b1fe2d4b4be0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "c79c5cd6-9b24-4da7-8f74-26cf014141bf" + "185b9371-e939-4c3d-a529-e4f2af0ef31e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041216Z:c79c5cd6-9b24-4da7-8f74-26cf014141bf" + "WESTUS2:20190411T021350Z:185b9371-e939-4c3d-a529-e4f2af0ef31e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:13:49 GMT" + ], "Content-Length": [ "762" ], @@ -208,62 +265,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid9501\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid9501\",\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/aid1215\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid1215\",\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}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid9501?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDk1MDE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1215?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDEyMTU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f46f578-9e1c-46d7-b076-51e155723b88" + "34685b23-abcb-486e-ae0b-f79fbc33b6b4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:16 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZOE=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcdQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "575c84f1-0268-4599-a13a-5f10a6790e42" + "66ec6686-ae81-4257-9e00-57702b97cf45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "765e6fde-33f6-490d-ab67-79c67edbc1b3" + "418c3e77-cce8-4782-8ba7-5881460bedd7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041216Z:765e6fde-33f6-490d-ab67-79c67edbc1b3" + "WESTUS2:20190411T021350Z:418c3e77-cce8-4782-8ba7-5881460bedd7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:13:49 GMT" + ], "Content-Length": [ "762" ], @@ -274,133 +331,133 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid9501\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid9501\",\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/aid1215\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid1215\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid9501?format=wadl-link&export=true&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDk1MDE/Zm9ybWF0PXdhZGwtbGluayZleHBvcnQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1215?format=wadl-link&export=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDEyMTU/Zm9ybWF0PXdhZGwtbGluayZleHBvcnQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63b3c708-abd2-4136-81dd-bfb53223c6a9" + "dc3665b2-c6c7-437f-ace4-97ccbc4f0068" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:16 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZOE=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcdQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "83929ea4-30a9-4c7c-bb01-99027a3e4429" + "f0133017-fdfa-49e7-b483-f98e7b86161a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "3910827c-3800-43d1-b1f6-d9a870c3b768" + "ccaa7a86-4b75-4ae1-bac0-6ee5eac5e5fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041217Z:3910827c-3800-43d1-b1f6-d9a870c3b768" + "WESTUS2:20190411T021350Z:ccaa7a86-4b75-4ae1-bac0-6ee5eac5e5fd" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:13:49 GMT" + ], "Content-Length": [ - "202" + "401" ], "Content-Type": [ - "application/vnd.sun.wadl.link+json; charset=utf-8" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"link\": \"https://apimgmtstkjpszvoe48cckrb.blob.core.windows.net/api-export/Yahoo News Search.xml?sv=2015-07-08&sr=b&sig=rrpA5Q0XCRX%2BFm817rzXO2jO4woxLczT9hunVbuRiYI%3D&se=2019-04-02T04:17:17Z&sp=r\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1215\",\r\n \"format\": \"wadl-link-json\",\r\n \"value\": {\r\n \"link\": \"https://apimgmtstkjpszvoe48cckrb.blob.core.windows.net/api-export/Yahoo News Search.xml?sv=2015-07-08&sr=b&sig=8oF2bJHfm1XwUPohH%2BwHBPWpePL4nQpNWBzDaJXqUAY%3D&se=2019-04-11T02:18:50Z&sp=r\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid9501?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDk1MDE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1215?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDEyMTU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b98c4ab9-1018-4816-82fb-d6dd026dec6e" + "f600bf4a-854d-453d-90f8-311c94232e9f" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:17 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5cf6b2f9-6a39-47e0-aec4-7fab268f36eb" + "a5e7954f-d3d8-4b49-a61b-243204aded1c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "7551a5c1-6842-4e09-af26-0f4a2c34076d" + "080a093f-3280-450a-ad36-3f3352374bef" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041217Z:7551a5c1-6842-4e09-af26-0f4a2c34076d" + "WESTUS2:20190411T021351Z:080a093f-3280-450a-ad36-3f3352374bef" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:13:50 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -409,7 +466,7 @@ ], "Names": { "WadlTest": [ - "aid9501" + "aid1215" ] }, "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 72afb5392d6d..b0daff90f3c3 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "aa8e54b0-3af3-44b2-bcbd-939c4e61bdfa" + "45d95b89-85b0-4f07-b3ea-09ddfbf55662" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:18 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3bc938b5-14fb-4b62-912f-e6b388ea7b8e", - "78036f52-9589-4b6c-b0b2-a9574ba6df1e" + "2287a36b-d30b-407d-93da-857101203f20", + "3fc606e2-739a-4924-9ebc-d8da3e078aaf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "8ae9cd80-53fb-4cd3-b6ad-e3ee4e8da2d6" + "f154d242-a566-4e53-adef-ce07b0af0665" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041218Z:8ae9cd80-53fb-4cd3-b6ad-e3ee4e8da2d6" + "WESTUS2:20190411T021352Z:f154d242-a566-4e53-adef-ce07b0af0665" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:13:52 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21476f45-1cd4-4726-8e36-997d1cbb211b" + "f1a38e0e-bd69-4e7b-8b6f-e7bd5af3d46d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:18 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ee61afa6-cce8-46df-badd-9c5c6aefaba9" + "2a06463d-abb1-46c5-9749-e51230604820" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-correlation-request-id": [ - "1e8ef34d-4492-46a3-ad15-5a1dd2bfcc4a" + "366df61f-7419-4105-9a85-4a8d6b122d9a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041219Z:1e8ef34d-4492-46a3-ad15-5a1dd2bfcc4a" + "WESTUS2:20190411T021352Z:366df61f-7419-4105-9a85-4a8d6b122d9a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:13:52 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,134 +136,125 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7243?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDcyNDM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8927?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDg5Mjc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "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}", + "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"weatherapi\",\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"wsdl\",\r\n \"wsdlSelector\": {\r\n \"wsdlServiceName\": \"Weather\",\r\n \"wsdlEndpointName\": \"WeatherSoap\"\r\n },\r\n \"apiType\": \"soap\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d5960da0-2cd8-4899-8c45-7dea60fc6f11" + "8be85da4-af70-4c95-af95-367de70ba718" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "18972" + "18958" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:19 GMT" - ], "Pragma": [ "no-cache" ], - "ETag": [ - "\"AAAAAAAAZOs=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8927?api-version=2019-01-01&asyncId=5caea2e1b597440f487b0e28&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "387d77f2-f197-4492-a312-08efbdb72ef4" + "a2399b06-799d-44b7-a4e4-f0826effcb06" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "25589512-b5b2-47e1-8021-5e52c0b257ab" + "f3c8277f-7060-4f84-a55b-ff30c49e730d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041220Z:25589512-b5b2-47e1-8021-5e52c0b257ab" + "WESTUS2:20190411T021353Z:f3c8277f-7060-4f84-a55b-ff30c49e730d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "749" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Date": [ + "Thu, 11 Apr 2019 02:13:53 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7243\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid7243\",\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}", - "StatusCode": 201 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7243?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDcyNDM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8927?api-version=2019-01-01&asyncId=5caea2e1b597440f487b0e28&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDg5Mjc/YXBpLXZlcnNpb249MjAxOS0wMS0wMSZhc3luY0lkPTVjYWVhMmUxYjU5NzQ0MGY0ODdiMGUyOCZhc3luY0NvZGU9MjAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e6582a17-dcdf-47de-91c6-f3c350a51e09" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:19 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZOs=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcd4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "064587a3-2fb2-435b-948c-5eb48eae0f82" + "2604c4b7-337a-4939-8889-f15e8617116f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-correlation-request-id": [ - "05b99fd0-de8b-41b1-9f62-c5109a3a3d8f" + "a9d127be-d010-495c-b6be-57ecdfb518d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041220Z:05b99fd0-de8b-41b1-9f62-c5109a3a3d8f" + "WESTUS2:20190411T021423Z:a9d127be-d010-495c-b6be-57ecdfb518d7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:23 GMT" + ], "Content-Length": [ "749" ], @@ -274,133 +265,133 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7243\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid7243\",\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}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8927\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid8927\",\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}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7243?format=wsdl-link&export=true&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDcyNDM/Zm9ybWF0PXdzZGwtbGluayZleHBvcnQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8927?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDg5Mjc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e859ccb3-3f1f-40f8-865c-d6e618f74347" + "0450fb3c-1c3b-4e72-b887-c65c4bd2781d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:19 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZOs=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcd4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e4eb57b4-75e0-45b4-8762-7d8b937c0a1a" + "babc8521-6f81-4bc6-9ba3-3ee326dda573" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-correlation-request-id": [ - "035d7177-d9b5-4396-a169-55a95e11bdff" + "b2ca81db-9b11-4240-9ce1-031615201b76" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041220Z:035d7177-d9b5-4396-a169-55a95e11bdff" + "WESTUS2:20190411T021423Z:b2ca81db-9b11-4240-9ce1-031615201b76" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:23 GMT" + ], "Content-Length": [ - "192" + "749" ], "Content-Type": [ - "application/vnd.ms.wsdl.link+xml; charset=utf-8" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"link\": \"https://apimgmtstkjpszvoe48cckrb.blob.core.windows.net/api-export/Weather.xsd?sv=2015-07-08&sr=b&sig=Qq0uHyY02Ar1MsYa1Vnm6L9iR1l8DRg7VK%2BUXkTkMYc%3D&se=2019-04-02T04:17:20Z&sp=r\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8927\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid8927\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7243?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDcyNDM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8927?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDg5Mjc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76a05c6e-e4fa-41c1-ab28-c525376f2156" + "db7a169f-24fc-42d7-b325-810573cebba2" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e6449c62-8b16-413f-9672-f34559d9105e" + "5c838366-9b40-4e53-bfb1-d8a64397394c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "feee16ce-04c2-44f2-9341-0c25360a735a" + "96b16742-194b-4653-9634-825e75459671" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041221Z:feee16ce-04c2-44f2-9341-0c25360a735a" + "WESTUS2:20190411T021424Z:96b16742-194b-4653-9634-825e75459671" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:14:23 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -409,7 +400,7 @@ ], "Names": { "WsdlTest": [ - "aid7243" + "aid8927" ] }, "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 983b878651ce..9ec0597db8b9 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "450fbbcf-7544-4eec-8199-c6d7284ad86b" + "c8fafc3c-732c-4492-a1a9-00a187d076cb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:51 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a556ce6-00dc-4b10-abf9-277ec2202701", - "5d00b826-7008-4d93-97a7-3f8b68a84367" + "ce39cc61-2ae5-40b9-9933-26b49d3e4ecc", + "02e0fe57-f648-4182-a0e4-6692b877002a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "1efee7fc-7922-4aa0-a97d-b40ff9a6d62f" + "53afe71c-9691-4b14-bf32-71a34dfaf88c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040651Z:1efee7fc-7922-4aa0-a97d-b40ff9a6d62f" + "WESTUS2:20190411T020434Z:53afe71c-9691-4b14-bf32-71a34dfaf88c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:33 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97d20809-80ba-4a05-8f3c-146a6129d3c6" + "bbe91d86-499e-42b5-a9e7-829a57d726db" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:51 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2002798-8f15-4ba9-9c6e-b3b8ad65fb42" + "0ec6952d-d9b5-4990-b402-b337279dd001" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "c6fa6154-c5ae-4d5f-9386-135af9c3836b" + "caec697d-ce1f-4506-bcbe-dbb215e16feb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040651Z:c6fa6154-c5ae-4d5f-9386-135af9c3836b" + "WESTUS2:20190411T020435Z:caec697d-ce1f-4506-bcbe-dbb215e16feb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:34 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2018-01-01&expandApiVersionSet=false", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEmZXhwYW5kQXBpVmVyc2lvblNldD1mYWxzZQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d591508-3485-421e-9723-b5e04ed7db35" + "38fa077d-9b92-4d64-b1d9-f42843c1e3c7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:51 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1df8449d-eb03-4e4c-8fc6-ffbf34b2e8d0" + "bda16992-b874-4c2d-8e5a-743a59aaa6b8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "31fe2323-09fb-4d8d-a44f-ddafc971c86d" + "ac8090fc-b431-47ba-9e0a-a121d3e634b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040651Z:31fe2323-09fb-4d8d-a44f-ddafc971c86d" + "WESTUS2:20190411T020435Z:ac8090fc-b431-47ba-9e0a-a121d3e634b6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:34 GMT" + ], "Content-Length": [ "676" ], @@ -203,55 +203,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bba0d73d-4a43-4dac-a707-5ee8ab4cd04a" + "947f16c2-77d4-477f-9a4c-d04e446081d2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e04b3c9c-a6d9-49c9-b41c-115b1e720c07" + "4da8d8b5-d828-4460-9fcc-75d4df41eb80" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-correlation-request-id": [ - "973c46d9-617b-4494-88cd-7a67f6808ad5" + "003bb529-d49f-4a0f-a6d8-ed4a63ce5c4a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040652Z:973c46d9-617b-4494-88cd-7a67f6808ad5" + "WESTUS2:20190411T020435Z:003bb529-d49f-4a0f-a6d8-ed4a63ce5c4a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:34 GMT" + ], "Content-Length": [ "7418" ], @@ -266,55 +266,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations?$top=3&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/JHRvcD0zJmFwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations?$top=3&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/JHRvcD0zJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d425b90-a243-4a57-a64b-6135fbc79730" + "b6be2849-95f8-41a5-a65f-74b9aa34f455" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc60beb8-8712-40de-987a-14f0ab705e35" + "122a3b74-67ec-41fa-a4dd-3aae4d067c20" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11996" ], "x-ms-correlation-request-id": [ - "b0a6d7c4-3f6a-4ef8-a7d3-fd1ff7a0c76c" + "4e2428b3-7953-4d32-a702-40e946ab9b47" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040652Z:b0a6d7c4-3f6a-4ef8-a7d3-fd1ff7a0c76c" + "WESTUS2:20190411T020435Z:4e2428b3-7953-4d32-a702-40e946ab9b47" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:34 GMT" + ], "Content-Length": [ "3430" ], @@ -325,59 +325,59 @@ "-1" ] }, - "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 \"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 \"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 \"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 \"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}", + "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 \"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 \"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 \"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 \"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=2019-01-01&%24skip=3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/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", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/JTI0dG9wPTMmYXBpLXZlcnNpb249MjAxOC0wMS0wMSYlMjRza2lwPTM=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations?%24top=3&api-version=2019-01-01&%24skip=3", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/JTI0dG9wPTMmYXBpLXZlcnNpb249MjAxOS0wMS0wMSYlMjRza2lwPTM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc274783-1818-4509-a3c6-1eb18ce6ff2d" + "4aa487a9-b91e-4ae6-8f87-2801d8d0b331" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bb935975-85a5-499f-b94b-2e20e2dfe4b5" + "dd4ce48c-c310-46eb-a821-c16e8259fa01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11995" ], "x-ms-correlation-request-id": [ - "d09e6686-823e-4ac9-a5c7-12bc419cf6ed" + "53559342-938c-426d-8563-b24bca65f4bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040652Z:d09e6686-823e-4ac9-a5c7-12bc419cf6ed" + "WESTUS2:20190411T020435Z:53559342-938c-426d-8563-b24bca65f4bc" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:34 GMT" + ], "Content-Length": [ "4273" ], @@ -392,58 +392,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/retrieve-header-only?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcmV0cmlldmUtaGVhZGVyLW9ubHk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/retrieve-header-only?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvcmV0cmlldmUtaGVhZGVyLW9ubHk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f68b2394-5282-488a-9c1b-15bc6e7062ac" + "69501efc-a102-4c80-99f9-0c202a40d523" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:52 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ "\"AAAAAAAAE8w=\"" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "96b559c2-bb0f-42f1-a28b-c4c3dab1a68f" + "76487fdd-91ca-4542-9858-8aefdcd41bd4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11994" ], "x-ms-correlation-request-id": [ - "a7e523e1-b29f-4677-96d9-bd5aa28b86b6" + "5ab11369-bf94-4000-bc06-a0ce98464d61" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040652Z:a7e523e1-b29f-4677-96d9-bd5aa28b86b6" + "WESTUS2:20190411T020435Z:5ab11369-bf94-4000-bc06-a0ce98464d61" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:34 GMT" + ], "Content-Length": [ "898" ], @@ -458,22 +458,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid7057?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ3MDU3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ0OTk1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"operationDescription3541\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription2706\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName9702\",\r\n \"description\": \"newOperationRequestParamDescr893\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue4757\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue4757\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName2076\",\r\n \"description\": \"newOperationRequestHeaderParamDescr7279\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue1701\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue1701\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType5971\",\r\n \"sample\": \"newOperationRequestRepresentationSample9096\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription7916\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType8496\",\r\n \"sample\": \"newOperationResponseRepresentationSample6374\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"displayName\": \"operationName6928\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/newresource\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"operationDescription3417\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription4602\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName5158\",\r\n \"description\": \"newOperationRequestParamDescr2300\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue7922\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue7922\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName7017\",\r\n \"description\": \"newOperationRequestHeaderParamDescr9927\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue7175\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue7175\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType6063\",\r\n \"sample\": \"newOperationRequestRepresentationSample6121\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription1018\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType660\",\r\n \"sample\": \"newOperationResponseRepresentationSample5908\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"displayName\": \"operationName9706\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/newresource\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0ae812b1-d7ee-4c9a-82f1-d8efd05edeef" + "a13b723f-4226-463c-b402-629fa52ac0de" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -486,36 +486,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:52 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY9s=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcD0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bc808d33-bfe3-4904-8c17-eec945321ea4" + "d1958b17-f2cc-4592-9add-91ca6e562848" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "c34c0de7-1548-416e-bbb4-628515eb03ba" + "4b17278f-f361-4a05-ad5b-8fbb34c6e442" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040653Z:c34c0de7-1548-416e-bbb4-628515eb03ba" + "WESTUS2:20190411T020436Z:4b17278f-f361-4a05-ad5b-8fbb34c6e442" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:36 GMT" + ], "Content-Length": [ "2113" ], @@ -526,62 +526,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid7057\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"operationid7057\",\r\n \"properties\": {\r\n \"displayName\": \"operationName6928\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/newresource\",\r\n \"templateParameters\": [],\r\n \"description\": \"operationDescription3541\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription2706\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName9702\",\r\n \"description\": \"newOperationRequestParamDescr893\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue4757\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue4757\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName2076\",\r\n \"description\": \"newOperationRequestHeaderParamDescr7279\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue1701\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue1701\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType5971\",\r\n \"sample\": \"newOperationRequestRepresentationSample9096\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription7916\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType8496\",\r\n \"sample\": \"newOperationResponseRepresentationSample6374\"\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/operationid4995\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"operationid4995\",\r\n \"properties\": {\r\n \"displayName\": \"operationName9706\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/newresource\",\r\n \"templateParameters\": [],\r\n \"description\": \"operationDescription3417\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription4602\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName5158\",\r\n \"description\": \"newOperationRequestParamDescr2300\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue7922\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue7922\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName7017\",\r\n \"description\": \"newOperationRequestHeaderParamDescr9927\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue7175\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue7175\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType6063\",\r\n \"sample\": \"newOperationRequestRepresentationSample6121\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription1018\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType660\",\r\n \"sample\": \"newOperationResponseRepresentationSample5908\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid7057?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ3MDU3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ0OTk1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "762e97f3-1fb8-42eb-8c70-c514648ed141" + "ed5fee8e-d174-4873-8667-ffb07f8a9d7e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:53 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY9s=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcD0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0ca9abd7-7903-4f6d-b49a-7d6596020ecb" + "4a271e42-e971-4115-9aaf-c7c1ec250d31" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11993" ], "x-ms-correlation-request-id": [ - "a320def3-e535-41e9-a718-129fd3b8a6cd" + "e763c353-f16a-4622-8e2a-a3432fc97bc0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040653Z:a320def3-e535-41e9-a718-129fd3b8a6cd" + "WESTUS2:20190411T020436Z:e763c353-f16a-4622-8e2a-a3432fc97bc0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:36 GMT" + ], "Content-Length": [ "2113" ], @@ -592,62 +592,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid7057\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"operationid7057\",\r\n \"properties\": {\r\n \"displayName\": \"operationName6928\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/newresource\",\r\n \"templateParameters\": [],\r\n \"description\": \"operationDescription3541\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription2706\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName9702\",\r\n \"description\": \"newOperationRequestParamDescr893\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue4757\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue4757\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName2076\",\r\n \"description\": \"newOperationRequestHeaderParamDescr7279\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue1701\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue1701\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType5971\",\r\n \"sample\": \"newOperationRequestRepresentationSample9096\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription7916\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType8496\",\r\n \"sample\": \"newOperationResponseRepresentationSample6374\"\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/operationid4995\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"operationid4995\",\r\n \"properties\": {\r\n \"displayName\": \"operationName9706\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/newresource\",\r\n \"templateParameters\": [],\r\n \"description\": \"operationDescription3417\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription4602\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName5158\",\r\n \"description\": \"newOperationRequestParamDescr2300\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue7922\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue7922\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName7017\",\r\n \"description\": \"newOperationRequestHeaderParamDescr9927\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue7175\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue7175\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType6063\",\r\n \"sample\": \"newOperationRequestRepresentationSample6121\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription1018\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType660\",\r\n \"sample\": \"newOperationResponseRepresentationSample5908\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid7057?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ3MDU3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ0OTk1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96b406ae-2106-40f2-a82c-35b35334d45f" + "1a21015d-4884-4d8b-af4f-55d0ece48194" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:53 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY90=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcD8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "51c493fe-bd47-43bf-8f8d-590e88a20e60" + "a721795e-f57b-452b-8214-6f1c39bad0ae" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11991" ], "x-ms-correlation-request-id": [ - "cfdd4ff0-4231-4eac-a3ab-d4113540170e" + "ed63c2c3-2677-4354-b1d8-33d3ab9f5e09" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040653Z:cfdd4ff0-4231-4eac-a3ab-d4113540170e" + "WESTUS2:20190411T020437Z:ed63c2c3-2677-4354-b1d8-33d3ab9f5e09" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:37 GMT" + ], "Content-Length": [ "2108" ], @@ -658,59 +658,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid7057\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"operationid7057\",\r\n \"properties\": {\r\n \"displayName\": \"patchedName1701\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/newresource\",\r\n \"templateParameters\": [],\r\n \"description\": \"patchedDescription8198\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription2706\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName9702\",\r\n \"description\": \"newOperationRequestParamDescr893\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue4757\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue4757\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName2076\",\r\n \"description\": \"newOperationRequestHeaderParamDescr7279\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue1701\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue1701\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType5971\",\r\n \"sample\": \"newOperationRequestRepresentationSample9096\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription7916\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType8496\",\r\n \"sample\": \"newOperationResponseRepresentationSample6374\"\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/operationid4995\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"operationid4995\",\r\n \"properties\": {\r\n \"displayName\": \"patchedName2782\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/newresource\",\r\n \"templateParameters\": [],\r\n \"description\": \"patchedDescription5067\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription4602\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName5158\",\r\n \"description\": \"newOperationRequestParamDescr2300\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue7922\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue7922\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName7017\",\r\n \"description\": \"newOperationRequestHeaderParamDescr9927\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue7175\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue7175\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType6063\",\r\n \"sample\": \"newOperationRequestRepresentationSample6121\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription1018\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType660\",\r\n \"sample\": \"newOperationResponseRepresentationSample5908\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid7057?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ3MDU3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ0OTk1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fccb3f6-1a9a-4584-9ad6-9e98b9dd6499" + "434ba030-da88-4450-b528-7cf941fd72da" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "51ebbfac-5236-442b-860c-d035ce295d1c" + "4047eab9-e38c-4176-92c8-87a3da4f12cc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11989" ], "x-ms-correlation-request-id": [ - "6801b9fa-0dec-495a-b167-1cf28d33cbcd" + "cce95155-e4e0-4d09-b092-571c7f3c0081" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040654Z:6801b9fa-0dec-495a-b167-1cf28d33cbcd" + "WESTUS2:20190411T020437Z:cce95155-e4e0-4d09-b092-571c7f3c0081" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:37 GMT" + ], "Content-Length": [ "85" ], @@ -725,58 +725,58 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid7057?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ3MDU3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ0OTk1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8632a5b3-5ae2-4060-a516-504f0bf71901" + "11a70a07-9e38-4a11-83ba-02b72b34add0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:53 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY9s=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcD0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f375f606-05c1-4c58-980e-a6c957c87515" + "cabb3a52-8c65-46ff-909b-162b553a84bb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11992" ], "x-ms-correlation-request-id": [ - "0ce441c8-b62d-4a03-80a8-7c5f0d7681b5" + "6e70677e-74f4-4de6-ac57-148403c4945d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040653Z:0ce441c8-b62d-4a03-80a8-7c5f0d7681b5" + "WESTUS2:20190411T020436Z:6e70677e-74f4-4de6-ac57-148403c4945d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:36 GMT" + ], "Content-Length": [ "0" ], @@ -788,58 +788,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid7057?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ3MDU3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ0OTk1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4f6998d-ba83-4c4f-8ad5-910e0b8753c1" + "a5f3e509-c8bd-4d12-b11a-4dac16f8d933" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:53 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY90=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcD8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ddf815b-d21e-4e42-98bc-f8b1dced8f07" + "1e0e2bf9-be12-4fa3-b2de-2c924c9ace83" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11990" ], "x-ms-correlation-request-id": [ - "171b25dc-adcf-4d8c-93d9-75a63c119c9e" + "40e5ee04-31c6-4c2d-872a-6d93f2d14c78" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040653Z:171b25dc-adcf-4d8c-93d9-75a63c119c9e" + "WESTUS2:20190411T020437Z:40e5ee04-31c6-4c2d-872a-6d93f2d14c78" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:37 GMT" + ], "Content-Length": [ "0" ], @@ -851,25 +851,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid7057?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ3MDU3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ0OTk1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription8198\",\r\n \"displayName\": \"patchedName1701\",\r\n \"method\": \"HEAD\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription5067\",\r\n \"displayName\": \"patchedName2782\",\r\n \"method\": \"HEAD\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "56eb310c-a737-46d5-a52a-553ed7baf790" + "6afab436-1fb9-4a88-84c8-59a06692444f" ], "If-Match": [ - "\"AAAAAAAAY9s=\"" + "\"AAAAAAAAcD0=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -882,33 +882,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:53 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "de101ad0-0589-463c-8242-3fb585bacc9f" + "fa535f61-6380-49e6-88d2-ad21cb63f6a4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "2eea2662-be99-4501-b0f0-e1f62fb6b055" + "20f84c13-83b8-4909-9361-3593e478e3c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040653Z:2eea2662-be99-4501-b0f0-e1f62fb6b055" + "WESTUS2:20190411T020437Z:20f84c13-83b8-4909-9361-3593e478e3c0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:37 GMT" + ], "Expires": [ "-1" ] @@ -917,121 +917,121 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid7057?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ3MDU3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ0OTk1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2266939-81e2-4fde-b9b9-83ea74e16f90" + "ba27b951-74b8-46c2-8470-5b323bffcd2e" ], "If-Match": [ - "\"AAAAAAAAY90=\"" + "\"AAAAAAAAcD8=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5fb1571-b2ec-42bb-a4a9-06b387fc8d55" + "32ea5048-1afc-404e-b5dc-3bafbad3c60c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "23ef2ec3-1906-41b6-a88a-9cdab8ef42dd" + "54a347f4-3c17-4edd-b56e-2c0287d85f09" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040654Z:23ef2ec3-1906-41b6-a88a-9cdab8ef42dd" + "WESTUS2:20190411T020437Z:54a347f4-3c17-4edd-b56e-2c0287d85f09" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:04:37 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid7057?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ3MDU3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid4995?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQ0OTk1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67bef7b1-7e74-4305-8a7e-b14d915e2e50" + "742e6c2e-e358-48b8-8e3e-70a97d77a8ec" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "711b6799-19c2-4c05-ad3b-883c42f530dc" + "8446ff95-a4b3-4d26-83e8-17db6341fcc1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "97cb0e2c-3034-4894-bbc3-6a8ede7d3a39" + "da3d938d-c0ca-4d02-b8a2-115fd1b92e2d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040654Z:97cb0e2c-3034-4894-bbc3-6a8ede7d3a39" + "WESTUS2:20190411T020437Z:da3d938d-c0ca-4d02-b8a2-115fd1b92e2d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:37 GMT" + ], "Expires": [ "-1" ] @@ -1042,23 +1042,23 @@ ], "Names": { "CreateListUpdateDelete": [ - "operationid7057", - "operationName6928", - "operationDescription3541", - "operationRequestDescription2706", - "newOperationRequestHeaderParmName2076", - "newOperationRequestHeaderParamDescr7279", - "newOperationRequestHeaderParamDefaultValue1701", - "newOperationRequestParmName9702", - "newOperationRequestParamDescr893", - "newOperationRequestParamDefaultValue4757", - "newOperationRequestRepresentationContentType5971", - "newOperationRequestRepresentationSample9096", - "newOperationResponseDescription7916", - "newOperationResponseRepresentationContentType8496", - "newOperationResponseRepresentationSample6374", - "patchedName1701", - "patchedDescription8198" + "operationid4995", + "operationName9706", + "operationDescription3417", + "operationRequestDescription4602", + "newOperationRequestHeaderParmName7017", + "newOperationRequestHeaderParamDescr9927", + "newOperationRequestHeaderParamDefaultValue7175", + "newOperationRequestParmName5158", + "newOperationRequestParamDescr2300", + "newOperationRequestParamDefaultValue7922", + "newOperationRequestRepresentationContentType6063", + "newOperationRequestRepresentationSample6121", + "newOperationResponseDescription1018", + "newOperationResponseRepresentationContentType660", + "newOperationResponseRepresentationSample5908", + "patchedName2782", + "patchedDescription5067" ] }, "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 e4523ece503c..968a9c325689 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9a85979e-93d1-4a26-b410-35f1f549304e" + "f08a96b7-f99d-422a-a65b-644579397b1b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:56 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b070c797-71d3-4ff0-ae2c-7251b83b0125", - "62adb85f-ee34-477d-8bcf-415306ad409e" + "1ff2fbad-3092-477b-8bdf-2a1688451f58", + "62128f2f-4779-4476-9363-c4c8f80767cd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "ad6246b3-ae43-4e95-bacf-5404faf56777" + "19047921-9996-4b9a-a71f-0aa8b7db2e81" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041257Z:ad6246b3-ae43-4e95-bacf-5404faf56777" + "WESTUS2:20190411T020504Z:19047921-9996-4b9a-a71f-0aa8b7db2e81" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:04 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3506382-a199-4adc-a884-1734b0cec743" + "5328ed6d-dc0d-4a6c-83c4-bbb64ab855cc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:56 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4b7bcd98-65eb-41c5-a902-73efd70fb041" + "70b14d45-346d-4ee8-aee6-c94cbdeecb9b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "579e567c-e78c-430a-8266-31b0dddee091" + "848162ab-53dc-4e80-bf95-86c391143550" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041257Z:579e567c-e78c-430a-8266-31b0dddee091" + "WESTUS2:20190411T020504Z:848162ab-53dc-4e80-bf95-86c391143550" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:04 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2018-01-01&expandApiVersionSet=false", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEmZXhwYW5kQXBpVmVyc2lvblNldD1mYWxzZQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4408f94d-3277-430f-8c97-7908beb76450" + "64122f76-5053-4a99-950b-2da9474457ee" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:56 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1f3ad7bd-8933-44ae-a2ed-44bbb017fde1" + "4832358a-49e4-4835-88c0-77b047d7523b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "10b6dd6e-fcc9-4164-88c7-770515ab065d" + "2c943c85-0651-425a-bf78-c15650f231a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041257Z:10b6dd6e-fcc9-4164-88c7-770515ab065d" + "WESTUS2:20190411T020504Z:2c943c85-0651-425a-bf78-c15650f231a1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:04 GMT" + ], "Content-Length": [ "676" ], @@ -203,55 +203,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/products?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/products?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e029563d-a942-46df-8257-c8ec3e976c31" + "3cb43109-9b9e-490d-ab12-38e2026f7683" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:56 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5c7d1ff0-922b-4f2a-a190-9f9d956d1925" + "b3a71d05-e179-43f1-a822-cf7761fc83ae" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "55654f38-b35a-4ac3-af9e-564201736f88" + "6fdd4ef1-b576-4677-ad6a-c79b7d290d1d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041257Z:55654f38-b35a-4ac3-af9e-564201736f88" + "WESTUS2:20190411T020504Z:6fdd4ef1-b576-4677-ad6a-c79b7d290d1d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:04 GMT" + ], "Content-Length": [ "1319" ], @@ -266,55 +266,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/products?$top=1&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3Byb2R1Y3RzPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/products?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3Byb2R1Y3RzPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ceac15f5-0b2a-49ae-95f4-0936db794ac5" + "b9cede98-baa5-40eb-ac41-053b85cc4c2a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:57 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b2bdfbac-2929-46f3-821b-a54eedfa6ce3" + "6556c604-4d3f-4235-b91b-120e22b3b3a3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "aa7c4374-891c-4f61-88df-badd7b7095ad" + "5eaa323d-9263-48bc-b1e4-a94e2b0bf956" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041257Z:aa7c4374-891c-4f61-88df-badd7b7095ad" + "WESTUS2:20190411T020505Z:5eaa323d-9263-48bc-b1e4-a94e2b0bf956" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:04 GMT" + ], "Content-Length": [ "927" ], @@ -325,59 +325,59 @@ "-1" ] }, - "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/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 2147483647,\r\n \"state\": \"published\"\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/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/apis/echo-api/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 2147483647,\r\n \"state\": \"published\"\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/products?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/products?%24top=1&api-version=2018-01-01&%24skip=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3Byb2R1Y3RzPyUyNHRvcD0xJmFwaS12ZXJzaW9uPTIwMTgtMDEtMDEmJTI0c2tpcD0x", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/products?%24top=1&api-version=2019-01-01&%24skip=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3Byb2R1Y3RzPyUyNHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDEmJTI0c2tpcD0x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2319934f-9da2-4fba-81a1-7c6b620a704b" + "6df1c5af-11e8-48bc-aa1e-549b34503acd" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:57 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9fac3773-9740-468b-ad04-4a504bbbb564" + "44b428fc-8493-4da7-97a9-1c552d1a0e5a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "3ae431e4-a5e1-4a87-a126-b5661569fca2" + "f16357f2-032e-41d6-8653-6aa632b12e9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041257Z:3ae431e4-a5e1-4a87-a126-b5661569fca2" + "WESTUS2:20190411T020505Z:f16357f2-032e-41d6-8653-6aa632b12e9f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:04 GMT" + ], "Content-Length": [ "675" ], @@ -392,55 +392,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/products?$skip=1&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3Byb2R1Y3RzPyRza2lwPTEmYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/products?$skip=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3Byb2R1Y3RzPyRza2lwPTEmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1f38b00-49d9-4f36-b4e0-95f2aeb63b8d" + "6992af4f-1636-4744-adbb-bd01fe6af904" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:57 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "57e12c96-75f1-4f07-bc66-db3a02eb2231" + "4d489abd-f2e7-4561-955a-5e239e10025a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "32ccd43b-352f-4cc4-b24d-339ba788e1d2" + "5fc42133-c5e7-4394-a0d5-bfef3044df48" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041258Z:32ccd43b-352f-4cc4-b24d-339ba788e1d2" + "WESTUS2:20190411T020505Z:5fc42133-c5e7-4394-a0d5-bfef3044df48" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:04 GMT" + ], "Content-Length": [ "675" ], 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 23bb8ed0d587..e094a6a106b7 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "692f0ba1-7216-4688-aedf-19e1162d6588" + "f5616c33-293b-474b-b355-36f996bc20fc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:46 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAE5C/M=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFzct8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aa4754fe-98d0-4289-b01e-1742351336b2", - "c4abf40e-f3b6-46de-9e45-966decf8da76" + "8c2c0df5-3f21-4592-abc8-dbb85a94a282", + "7660aa2e-fc55-4227-aef5-8f648207f609" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1199" ], "x-ms-correlation-request-id": [ - "183ce59e-2a5a-4925-b496-d229cc2e60e2" + "aa5d67a0-7c1d-4413-b2b0-7cc266a8a433" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184447Z:183ce59e-2a5a-4925-b496-d229cc2e60e2" + "WESTUS2:20190412T000749Z:aa5d67a0-7c1d-4413-b2b0-7cc266a8a433" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:07:49 GMT" + ], "Content-Length": [ - "1755" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAE5C/M=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\"\r\n },\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\": \"AAAAAAFzct8=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0fbfcb1-9814-4146-9671-6c75e4c82dd4" + "fe07c255-73d0-4f2c-85b9-5605657fbb6a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:46 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAE5C/M=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFzct8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e88b0d59-1b02-4ece-a9f1-bdd2dd981811" + "efb40620-d861-4e4c-be18-e449e4f05afc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11999" ], "x-ms-correlation-request-id": [ - "3d22471f-bd3d-4a0c-b3e1-ebe1a41fd8d8" + "b9559233-7068-442e-baf7-edfb86ba45ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184447Z:3d22471f-bd3d-4a0c-b3e1-ebe1a41fd8d8" + "WESTUS2:20190412T000749Z:b9559233-7068-442e-baf7-edfb86ba45ec" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:07:49 GMT" + ], "Content-Length": [ - "1755" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,68 +136,125 @@ "-1" ] }, - "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\": \"AAAAAAE5C/M=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\"\r\n },\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\": \"AAAAAAFzct8=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "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}", + "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerApi\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "83afefe8-5cc9-4a5b-843e-e1e0ad7123d3" + "9deb93a9-249d-409d-860e-dc8b055bfd3c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "18238" + "18224" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:47 GMT" - ], "Pragma": [ "no-cache" ], - "ETag": [ - "\"AAAAAAAAN30=\"" + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713?api-version=2019-01-01&asyncId=5cafd6d6b59744156c3729c3&asyncCode=201" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "55f076c0-cc7a-4d93-9d80-1afd35977ee7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "4400bc89-c9b0-4886-a2a0-6820a55cf98c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190412T000750Z:4400bc89-c9b0-4886-a2a0-6820a55cf98c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Apr 2019 00:07:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713?api-version=2019-01-01&asyncId=5cafd6d6b59744156c3729c3&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAxJmFzeW5jSWQ9NWNhZmQ2ZDZiNTk3NDQxNTZjMzcyOWMzJmFzeW5jQ29kZT0yMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAfGg=\"" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d96c2a23-d792-4283-8489-84ae68526100" + "52d59342-abb6-480d-9681-37a0f11f1f12" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "c12856d0-3557-450d-b414-789cfcaf505b" + "f936e2b0-86a9-448b-a13f-881683502641" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184448Z:c12856d0-3557-450d-b414-789cfcaf505b" + "WESTUS2:20190412T000821Z:f936e2b0-86a9-448b-a13f-881683502641" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:20 GMT" + ], "Content-Length": [ "848" ], @@ -208,62 +265,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid7050\",\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/apiid4713\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid4713\",\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}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78917c06-5aa0-4299-be78-49a726033d84" + "cffc87d4-ceb8-4d3c-ad16-fc139244777d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:47 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAN30=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAfGg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "599fd69e-6d7f-4ab1-a725-5bd30c148ae0" + "2bb96a29-e0db-4ff4-af9d-15ff315479f4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11997" ], "x-ms-correlation-request-id": [ - "e76ba1eb-eb74-446d-9ce8-0f596f73a0f2" + "c0965e44-c5d9-4441-b36f-85f20a294679" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184448Z:e76ba1eb-eb74-446d-9ce8-0f596f73a0f2" + "WESTUS2:20190412T000821Z:c0965e44-c5d9-4441-b36f-85f20a294679" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:20 GMT" + ], "Content-Length": [ "848" ], @@ -274,59 +331,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid7050\",\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/apiid4713\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid4713\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebdb8fb0-15ec-4c3b-8cc3-95e846addb14" + "d1b64920-9718-4193-bda1-cfd20b0b1545" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:51 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b974b359-ae76-479a-b30f-7a360f29185a" + "60b576fc-2a81-489d-8bbd-9b72050b7e5b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11982" ], "x-ms-correlation-request-id": [ - "6987cb22-418a-4cb3-b84b-d5fb6967ddf4" + "9b896123-75ea-47c9-b44b-b57f0a8489d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184452Z:6987cb22-418a-4cb3-b84b-d5fb6967ddf4" + "WESTUS2:20190412T000856Z:9b896123-75ea-47c9-b44b-b57f0a8489d1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:55 GMT" + ], "Content-Length": [ "79" ], @@ -341,57 +398,57 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050/operations?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/operations?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ddda40e4-58ca-44e4-a62c-0d16196bb6e9" + "768f6eec-6e0c-4a3f-a2ef-f4cb9112e158" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:47 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0efe8c86-bab2-4b78-8d88-3731b9725b0f" + "c3810195-78c1-4f0d-acfd-d75393afbf5d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11996" ], "x-ms-correlation-request-id": [ - "e765b883-6fef-4b3d-9764-ec667c728c85" + "7edab0cf-8373-4843-8883-e51a19044110" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184448Z:e765b883-6fef-4b3d-9764-ec667c728c85" + "WESTUS2:20190412T000821Z:7edab0cf-8373-4843-8883-e51a19044110" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:21 GMT" + ], "Content-Length": [ - "18978" + "18959" ], "Content-Type": [ "application/json; charset=utf-8" @@ -400,62 +457,62 @@ "-1" ] }, - "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/apiid7050/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\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\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\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\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5bf5a7a0fb4a4015801c5875\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"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/apiid4713/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\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\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\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\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00fb551a-df6c-4ec3-af08-137b7958f9b9" + "4d60093d-4642-41f0-a1d0-b6b59a033183" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:47 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAN30=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAfGg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "718853de-18f6-4694-a4e8-80c54f874ac7" + "01937a7d-a5eb-48f8-a030-0877db40e1ea" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11995" ], "x-ms-correlation-request-id": [ - "e0adc4a0-a103-4a64-93e5-7a4111c86d46" + "91035655-be81-4ce7-a748-08c0d78fe092" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184448Z:e0adc4a0-a103-4a64-93e5-7a4111c86d46" + "WESTUS2:20190412T000821Z:91035655-be81-4ce7-a748-08c0d78fe092" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:21 GMT" + ], "Content-Length": [ "0" ], @@ -467,58 +524,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cefd264a-0bb1-45fd-8349-0f0d2c062b35" + "5e0f1a53-2072-4aed-a227-56ced4728b60" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:49 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAN30=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAfGg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62e6f4ed-60d3-4abc-8352-9bfed7ab275b" + "451ae027-6f1c-4878-b67f-49d36d4324d6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11988" ], "x-ms-correlation-request-id": [ - "512a40f2-ccbc-4edd-929b-05d0a3785d41" + "c7ddf3a4-7af7-4444-a16d-0b3ec75a7904" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184450Z:512a40f2-ccbc-4edd-929b-05d0a3785d41" + "WESTUS2:20190412T000854Z:c7ddf3a4-7af7-4444-a16d-0b3ec75a7904" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:53 GMT" + ], "Content-Length": [ "0" ], @@ -530,66 +587,126 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050%3Brev%3D2?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MCUzQnJldiUzRDI/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713%3Brev%3D2?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMyUzQnJldiUzRDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "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 \"apiRevisionDescription\": \"Petstore second revision\",\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}", + "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 \"isCurrent\": false,\r\n \"apiRevisionDescription\": \"Petstore second revision\",\r\n \"sourceApiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713\",\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api2\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "866e5d12-e6d5-4727-bf95-022de6345dc6" + "97060931-6260-42a9-aa97-38be33529f04" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "562" + "769" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:48 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAN5o=\"" + "\"AAAAAAAAfIU=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d9de4b35-b736-4e74-8c34-bf5a8df7a4d6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "715b5b53-d7af-4c93-9cfa-a9084eaa1b4c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190412T000822Z:715b5b53-d7af-4c93-9cfa-a9084eaa1b4c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Apr 2019 00:08:22 GMT" + ], + "Content-Length": [ + "896" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid4713;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api2\",\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 \"apiRevisionDescription\": \"Petstore second revision\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713%3Brev%3D2?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMyUzQnJldiUzRDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAfIU=\"" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d6c4f909-df6b-4257-9184-93967a63a16f" + "3de08b6c-7a54-49af-99da-50cc70b98bdc" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" ], "x-ms-correlation-request-id": [ - "cbe4a7a8-da31-4015-97db-dc8dc342890d" + "41c854f1-1036-434f-bfda-c03b51dcbd7f" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184448Z:cbe4a7a8-da31-4015-97db-dc8dc342890d" + "WESTUS2:20190412T000853Z:41c854f1-1036-434f-bfda-c03b51dcbd7f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:52 GMT" + ], "Content-Length": [ - "898" + "896" ], "Content-Type": [ "application/json; charset=utf-8" @@ -598,26 +715,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid7050;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 \"apiRevisionDescription\": \"Petstore second revision\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid4713;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api2\",\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 \"apiRevisionDescription\": \"Petstore second revision\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050%3Brev%3D2/operations/firstOpRev1174?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MCUzQnJldiUzRDIvb3BlcmF0aW9ucy9maXJzdE9wUmV2MTE3ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713%3Brev%3D2/operations/firstOpRev8365?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMyUzQnJldiUzRDIvb3BlcmF0aW9ucy9maXJzdE9wUmV2ODM2NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description_azsmnet6492\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet7398\",\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet6351\",\r\n \"description\": \"description_azsmnet5665\",\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_azsmnet3267\",\r\n \"description\": \"description_azsmnet1389\",\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_azsmnet1181\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet2009\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet9222\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet5197\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet8218\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"displayName\": \"operation_azsmnet713\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"template_azsmnet9624\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description_azsmnet790\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet6032\",\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet8807\",\r\n \"description\": \"description_azsmnet4590\",\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_azsmnet4274\",\r\n \"description\": \"description_azsmnet2536\",\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_azsmnet9453\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet7685\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet6184\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet8235\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet4425\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"displayName\": \"operation_azsmnet4811\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"template_azsmnet9245\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6e903b26-8388-4d0e-824c-4bbea25d94cb" + "c3e5fd8d-77d7-417e-8e69-acf9ef0d33d7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -630,36 +747,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:48 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAN54=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAfKM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "29827874-2f7a-4fe6-9292-dc307f4bacf3" + "159ec03f-1811-493f-8360-2c3d3b5e3ff9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1196" ], "x-ms-correlation-request-id": [ - "9f8c80cd-7ae1-4671-aa9c-7a5f2302a923" + "e62a51fb-ab05-4afd-bfec-1ab9a78867ed" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184449Z:9f8c80cd-7ae1-4671-aa9c-7a5f2302a923" + "WESTUS2:20190412T000853Z:e62a51fb-ab05-4afd-bfec-1ab9a78867ed" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:53 GMT" + ], "Content-Length": [ "1903" ], @@ -670,70 +787,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050;rev=2/operations/firstOpRev1174\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"firstOpRev1174\",\r\n \"properties\": {\r\n \"displayName\": \"operation_azsmnet713\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/template_azsmnet9624\",\r\n \"templateParameters\": [],\r\n \"description\": \"description_azsmnet6492\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet7398\",\r\n \"queryParameters\": [],\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet6351\",\r\n \"description\": \"description_azsmnet5665\",\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_azsmnet3267\",\r\n \"description\": \"description_azsmnet1389\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\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_azsmnet1181\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet2009\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet9222\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet5197\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet8218\"\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/apiid4713;rev=2/operations/firstOpRev8365\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"firstOpRev8365\",\r\n \"properties\": {\r\n \"displayName\": \"operation_azsmnet4811\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/template_azsmnet9245\",\r\n \"templateParameters\": [],\r\n \"description\": \"description_azsmnet790\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet6032\",\r\n \"queryParameters\": [],\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet8807\",\r\n \"description\": \"description_azsmnet4590\",\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_azsmnet4274\",\r\n \"description\": \"description_azsmnet2536\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\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_azsmnet9453\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet7685\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet6184\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet8235\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet4425\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050%3Brev%3D2/operations/secondOpName728?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MCUzQnJldiUzRDIvb3BlcmF0aW9ucy9zZWNvbmRPcE5hbWU3Mjg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description_azsmnet8717\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet8392\",\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet805\",\r\n \"description\": \"description_azsmnet145\",\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_azsmnet6057\",\r\n \"description\": \"description_azsmnet5084\",\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_azsmnet3008\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet545\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet8798\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet7865\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet5063\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"displayName\": \"operation_azsmnet2803\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"template_azsmnet1327\"\r\n }\r\n}", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713%3Brev%3D2/operations?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMyUzQnJldiUzRDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c36de8d9-4872-4f27-b804-33b7c80d8152" + "e022cc23-964a-472d-b4f3-3b4193464eaa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1525" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:48 GMT" - ], "Pragma": [ "no-cache" ], - "ETag": [ - "\"AAAAAAAAN6E=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "40fef30f-c48c-4e79-9041-f564e1d35b49" + "555ffa66-31c9-4049-8173-17e2c272b476" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" ], "x-ms-correlation-request-id": [ - "39105ebb-716e-4b34-b259-70a7163a008a" + "91690fd4-a731-4f41-92af-08c185b377ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184449Z:39105ebb-716e-4b34-b259-70a7163a008a" + "WESTUS2:20190412T000854Z:91690fd4-a731-4f41-92af-08c185b377ad" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:53 GMT" + ], "Content-Length": [ - "1902" + "19122" ], "Content-Type": [ "application/json; charset=utf-8" @@ -742,61 +850,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050;rev=2/operations/secondOpName728\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"secondOpName728\",\r\n \"properties\": {\r\n \"displayName\": \"operation_azsmnet2803\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/template_azsmnet1327\",\r\n \"templateParameters\": [],\r\n \"description\": \"description_azsmnet8717\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet8392\",\r\n \"queryParameters\": [],\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet805\",\r\n \"description\": \"description_azsmnet145\",\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_azsmnet6057\",\r\n \"description\": \"description_azsmnet5084\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\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_azsmnet3008\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet545\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet8798\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet7865\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet5063\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", - "StatusCode": 201 + "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/apiid4713;rev=2/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\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/apiid4713;rev=2/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\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/apiid4713;rev=2/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\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\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\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/apiid4713;rev=2/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\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\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\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/apiid4713;rev=2/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\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/apiid4713;rev=2/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"petArray\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\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/apiid4713;rev=2/operations/firstOpRev8365\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"firstOpRev8365\",\r\n \"properties\": {\r\n \"displayName\": \"operation_azsmnet4811\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/template_azsmnet9245\",\r\n \"templateParameters\": [],\r\n \"description\": \"description_azsmnet790\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet6032\",\r\n \"queryParameters\": [],\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet8807\",\r\n \"description\": \"description_azsmnet4590\",\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_azsmnet4274\",\r\n \"description\": \"description_azsmnet2536\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\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_azsmnet9453\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet7685\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet6184\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet8235\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet4425\"\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/apiid4713;rev=2/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050%3Brev%3D2/operations?$top=1&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MCUzQnJldiUzRDIvb3BlcmF0aW9ucz8kdG9wPTEmYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713%3Brev%3D2/operations?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMyUzQnJldiUzRDIvb3BlcmF0aW9ucz8kdG9wPTEmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99a0751e-68d7-40fa-8cbd-11a3c729f1a1" + "dc3ac336-18da-4bc4-acc0-46c5af285189" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b8f466d-d7f2-451d-a8aa-1ee8871ef404" + "64e61848-f864-40e5-a3cf-79db03b60a42" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11992" ], "x-ms-correlation-request-id": [ - "90f88ef4-95a7-41f0-b6d3-4eb43e5e53f1" + "03e45f1e-9cca-48f5-9176-064d0a62fe59" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184449Z:90f88ef4-95a7-41f0-b6d3-4eb43e5e53f1" + "WESTUS2:20190412T000854Z:03e45f1e-9cca-48f5-9176-064d0a62fe59" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:53 GMT" + ], "Content-Length": [ - "2473" + "1994" ], "Content-Type": [ "application/json; charset=utf-8" @@ -805,61 +913,61 @@ "-1" ] }, - "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/apiid7050;rev=2/operations/secondOpName728\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"secondOpName728\",\r\n \"properties\": {\r\n \"displayName\": \"operation_azsmnet2803\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/template_azsmnet1327\",\r\n \"templateParameters\": [],\r\n \"description\": \"description_azsmnet8717\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet8392\",\r\n \"queryParameters\": [],\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet805\",\r\n \"description\": \"description_azsmnet145\",\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_azsmnet6057\",\r\n \"description\": \"description_azsmnet5084\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\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_azsmnet3008\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet545\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet8798\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet7865\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet5063\"\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/apiid7050;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/apiid4713;rev=2/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\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 \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050;rev=2/operations?%24top=1&api-version=2018-01-01&%24skip=1", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MDtyZXY9Mi9vcGVyYXRpb25zPyUyNHRvcD0xJmFwaS12ZXJzaW9uPTIwMTgtMDEtMDEmJTI0c2tpcD0x", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations?%24top=1&api-version=2019-01-01&%24skip=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMztyZXY9Mi9vcGVyYXRpb25zPyUyNHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDEmJTI0c2tpcD0x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b5ba34d-7094-45cd-b499-964b212f47e8" + "506fbeda-0103-4c5d-a832-0016475247a5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e59e30a2-9228-4747-af7f-6e8de279719a" + "6c71cb9b-1c03-4df1-944d-47c6b16771f2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11991" ], "x-ms-correlation-request-id": [ - "63104e18-98fb-4c15-94df-c4b42499da15" + "00cbb063-e211-4c81-a59e-104bae38e6f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184449Z:63104e18-98fb-4c15-94df-c4b42499da15" + "WESTUS2:20190412T000854Z:00cbb063-e211-4c81-a59e-104bae38e6f7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:53 GMT" + ], "Content-Length": [ - "2223" + "1762" ], "Content-Type": [ "application/json; charset=utf-8" @@ -868,61 +976,61 @@ "-1" ] }, - "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/apiid7050;rev=2/operations/firstOpRev1174\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"firstOpRev1174\",\r\n \"properties\": {\r\n \"displayName\": \"operation_azsmnet713\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/template_azsmnet9624\",\r\n \"templateParameters\": [],\r\n \"description\": \"description_azsmnet6492\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet7398\",\r\n \"queryParameters\": [],\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet6351\",\r\n \"description\": \"description_azsmnet5665\",\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_azsmnet3267\",\r\n \"description\": \"description_azsmnet1389\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\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_azsmnet1181\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet2009\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet9222\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet5197\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet8218\"\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/apiid4713;rev=2/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5cafd6d6b59744156c3729c2\",\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 \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713;rev=2/operations?%24top=1&api-version=2019-01-01&%24skip=2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050/revisions?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MC9yZXZpc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/revisions?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9yZXZpc2lvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7762cd1-c0e4-40a5-80c7-036589aed7bd" + "4e4fe80e-7152-40a8-816d-85890852caac" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e8daa50-a985-4218-a118-9bfe50f3f108" + "0e197d0c-6213-4ea9-8dc7-eb4005e4123e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11990" ], "x-ms-correlation-request-id": [ - "cd6211c6-445e-44dd-8150-47be50d169ed" + "e733603b-202d-4973-99d7-770fec9615e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184449Z:cd6211c6-445e-44dd-8150-47be50d169ed" + "WESTUS2:20190412T000854Z:e733603b-202d-4973-99d7-770fec9615e8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:53 GMT" + ], "Content-Length": [ - "504" + "508" ], "Content-Type": [ "application/json; charset=utf-8" @@ -931,62 +1039,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"apiId\": \"/apis/apiid7050;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2018-11-21T18:44:48.737Z\",\r\n \"updatedDateTime\": \"2018-11-21T18:44:48.77Z\",\r\n \"description\": \"Petstore second revision\",\r\n \"privateUrl\": \"/swaggerApi2;rev=2\",\r\n \"isOnline\": true,\r\n \"isCurrent\": false\r\n },\r\n {\r\n \"apiId\": \"/apis/apiid7050;rev=1\",\r\n \"apiRevision\": \"1\",\r\n \"createdDateTime\": \"2018-11-21T18:44:48Z\",\r\n \"updatedDateTime\": \"2018-11-21T18:44:48.047Z\",\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/apiid4713;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2019-04-12T00:08:21.713Z\",\r\n \"updatedDateTime\": \"2019-04-12T00:08:21.807Z\",\r\n \"description\": \"Petstore second revision\",\r\n \"privateUrl\": \"/swaggerApi;rev=2\",\r\n \"isOnline\": true,\r\n \"isCurrent\": false\r\n },\r\n {\r\n \"apiId\": \"/apis/apiid4713;rev=1\",\r\n \"apiRevision\": \"1\",\r\n \"createdDateTime\": \"2019-04-12T00:07:50.443Z\",\r\n \"updatedDateTime\": \"2019-04-12T00:07:50.473Z\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050%3Brev%3D2?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MCUzQnJldiUzRDI/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713%3Brev%3D2?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMyUzQnJldiUzRDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "feb7dae6-5096-4be2-ab7f-55e45ad20f23" + "bf982721-9890-4f3d-9f29-e193dc07a82b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:49 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAN5o=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAfIU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "88051135-3b3d-4389-b265-315c2c1ab7b7" + "9c0e300e-05c5-4287-8b4e-6ac3469a5816" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11989" ], "x-ms-correlation-request-id": [ - "f2334583-371a-4aa4-8611-4f8e2982be69" + "4615bb5d-8cf1-4e19-adf3-cdd1afd8166d" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184450Z:f2334583-371a-4aa4-8611-4f8e2982be69" + "WESTUS2:20190412T000854Z:4615bb5d-8cf1-4e19-adf3-cdd1afd8166d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:53 GMT" + ], "Content-Length": [ "0" ], @@ -998,57 +1106,57 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050/releases?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MC9yZWxlYXNlcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9yZWxlYXNlcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a0e228c-f075-494f-bc3f-528fec7e33f8" + "09fac686-2331-4fd8-9d3a-a12e32b803d2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "887aee1e-e234-40c5-8bed-142b784e6539" + "04b69a58-f597-4ac6-8f96-47d10c9b0719" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11987" ], "x-ms-correlation-request-id": [ - "1df3b326-2760-4ce6-8205-6ea83d26c5b7" + "4c4eaab9-5a27-4293-b44a-93933d9d7a38" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184450Z:1df3b326-2760-4ce6-8205-6ea83d26c5b7" + "WESTUS2:20190412T000854Z:4c4eaab9-5a27-4293-b44a-93933d9d7a38" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:54 GMT" + ], "Content-Length": [ - "38" + "19" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1057,61 +1165,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050/releases?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MC9yZWxlYXNlcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9yZWxlYXNlcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff2bd535-dabf-4a1e-a48d-a065fcea71cb" + "52595e92-086c-427f-9132-595c1a26211d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "88e0165d-c877-445a-9d54-0472bbd87c4d" + "93f53931-e4f1-4f24-84ce-be4bacc771d7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11984" ], "x-ms-correlation-request-id": [ - "c66bf00f-da1f-48f6-ac7d-f2244871f22b" + "1a28e918-59fb-4550-aa30-adfe0fb17b27" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184451Z:c66bf00f-da1f-48f6-ac7d-f2244871f22b" + "WESTUS2:20190412T000855Z:1a28e918-59fb-4550-aa30-adfe0fb17b27" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:55 GMT" + ], "Content-Length": [ - "538" + "517" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1120,26 +1228,26 @@ "-1" ] }, - "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/apiid7050/releases/apireleaseid1546\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"apireleaseid1546\",\r\n \"properties\": {\r\n \"createdDateTime\": \"2018-11-21T18:44:51.083Z\",\r\n \"updatedDateTime\": \"2018-11-21T18:44:51.083Z\",\r\n \"notes\": \"update_desc8809\"\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/apiid4713/releases/apireleaseid3654\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"apireleaseid3654\",\r\n \"properties\": {\r\n \"createdDateTime\": \"2019-04-12T00:08:54.88Z\",\r\n \"updatedDateTime\": \"2019-04-12T00:08:54.88Z\",\r\n \"notes\": \"update_desc4045\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050/releases/apireleaseid1546?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MC9yZWxlYXNlcy9hcGlyZWxlYXNlaWQxNTQ2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases/apireleaseid3654?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9yZWxlYXNlcy9hcGlyZWxlYXNlaWQzNjU0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/apiid7050;rev=2\",\r\n \"notes\": \"revision_description2897\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/apiid4713;rev=2\",\r\n \"notes\": \"revision_description7649\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e6d26d69-7565-4c34-8f11-85e9ea812c37" + "d082685c-09f2-4daf-bf6f-08a2745defb8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1152,38 +1260,38 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:50 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAN6Y=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAfKk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "242ccd14-5c9c-49e5-950c-9ef0478382ec" + "6e038219-9dc7-46ce-89e3-93f73df443ef" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1195" ], "x-ms-correlation-request-id": [ - "190cdabd-1d12-414a-8b7e-045ca4c75bc2" + "3f7168ce-c9cc-4483-b7b1-a31263b1c769" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184451Z:190cdabd-1d12-414a-8b7e-045ca4c75bc2" + "WESTUS2:20190412T000855Z:3f7168ce-c9cc-4483-b7b1-a31263b1c769" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:54 GMT" + ], "Content-Length": [ - "649" + "647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1192,62 +1300,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050/releases/apireleaseid1546\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"apireleaseid1546\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050\",\r\n \"createdDateTime\": \"2018-11-21T18:44:51.0824191Z\",\r\n \"updatedDateTime\": \"2018-11-21T18:44:51.0824191Z\",\r\n \"notes\": \"revision_description2897\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases/apireleaseid3654\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"apireleaseid3654\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713\",\r\n \"createdDateTime\": \"2019-04-12T00:08:54.878586Z\",\r\n \"updatedDateTime\": \"2019-04-12T00:08:54.878586Z\",\r\n \"notes\": \"revision_description7649\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050/releases/apireleaseid1546?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MC9yZWxlYXNlcy9hcGlyZWxlYXNlaWQxNTQ2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases/apireleaseid3654?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9yZWxlYXNlcy9hcGlyZWxlYXNlaWQzNjU0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e13aed6-0069-4356-a083-d9b024dd8ca1" + "03f8cad5-a0e7-4693-9c27-e7a9337b8243" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:50 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAN6Y=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAfKk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fa953aa1-06bc-4277-82db-8d4f3bd859a3" + "e3e33e99-dc59-41ad-9c54-b45f83e9693f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11986" ], "x-ms-correlation-request-id": [ - "39af5ae8-de7d-4740-bfb6-f1870eb6e427" + "d094fec0-1d0d-4ad7-8673-ed438a7e536a" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184451Z:39af5ae8-de7d-4740-bfb6-f1870eb6e427" + "WESTUS2:20190412T000855Z:d094fec0-1d0d-4ad7-8673-ed438a7e536a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:54 GMT" + ], "Content-Length": [ "0" ], @@ -1259,25 +1367,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050/releases/apireleaseid1546?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MC9yZWxlYXNlcy9hcGlyZWxlYXNlaWQxNTQ2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases/apireleaseid3654?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9yZWxlYXNlcy9hcGlyZWxlYXNlaWQzNjU0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/apiid7050;rev=2\",\r\n \"notes\": \"update_desc8809\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/apiid4713;rev=2\",\r\n \"notes\": \"update_desc4045\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dc16aa6a-b3a6-4531-9485-2ad69896b6f9" + "e09aa105-ee4c-44cb-83cb-a471e3a6ac65" ], "If-Match": [ - "\"AAAAAAAAN6Y=\"" + "\"AAAAAAAAfKk=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1290,33 +1398,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d0bc5689-b03e-4cea-9100-cbeecacf07cc" + "05557f08-4905-475b-af24-0aaa5afea545" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1194" ], "x-ms-correlation-request-id": [ - "b27c5f45-c9b8-4f9b-8b65-4d78890e2fa1" + "0eb0ef75-877c-4455-bbfc-51e52f14960c" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184451Z:b27c5f45-c9b8-4f9b-8b65-4d78890e2fa1" + "WESTUS2:20190412T000855Z:0eb0ef75-877c-4455-bbfc-51e52f14960c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:54 GMT" + ], "Expires": [ "-1" ] @@ -1325,60 +1433,123 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050/releases/apireleaseid1546?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MC9yZWxlYXNlcy9hcGlyZWxlYXNlaWQxNTQ2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases/apireleaseid3654?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9yZWxlYXNlcy9hcGlyZWxlYXNlaWQzNjU0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "700b589f-3829-424d-894f-736770eb2aac" + "30887d7d-7f22-4efd-88b1-be1451f1dc3a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:50 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAN6s=\"" + "\"AAAAAAAAfKw=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "07605bc7-71be-4c02-9088-84a8d4edbf4b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "a43a9f67-e100-44b1-bf83-d9c9a1b6635c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190412T000855Z:a43a9f67-e100-44b1-bf83-d9c9a1b6635c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Apr 2019 00:08:54 GMT" + ], + "Content-Length": [ + "630" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases/apireleaseid3654\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"apireleaseid3654\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713\",\r\n \"createdDateTime\": \"2019-04-12T00:08:54.88Z\",\r\n \"updatedDateTime\": \"2019-04-12T00:08:54.88Z\",\r\n \"notes\": \"update_desc4045\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/revisions?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9yZXZpc2lvbnM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ff8b313-dc56-4dc3-bc57-3f6dbf287deb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a6b88110-1d7d-405d-a80a-f37ee04fe9a1" + "6ecadb49-1c18-41e0-bc05-38a7eda92e4c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11983" ], "x-ms-correlation-request-id": [ - "c8918b17-3cb0-478f-8dfb-e43bc8b6647b" + "3d4560c1-0d55-4d8b-b762-d0e2036fdc7b" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184451Z:c8918b17-3cb0-478f-8dfb-e43bc8b6647b" + "WESTUS2:20190412T000855Z:3d4560c1-0d55-4d8b-b762-d0e2036fdc7b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:55 GMT" + ], "Content-Length": [ - "632" + "521" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1387,125 +1558,185 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050/releases/apireleaseid1546\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"apireleaseid1546\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050\",\r\n \"createdDateTime\": \"2018-11-21T18:44:51.083Z\",\r\n \"updatedDateTime\": \"2018-11-21T18:44:51.083Z\",\r\n \"notes\": \"update_desc8809\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"apiId\": \"/apis/apiid4713;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2019-04-12T00:08:21.713Z\",\r\n \"updatedDateTime\": \"2019-04-12T00:08:54.88Z\",\r\n \"description\": \"Petstore second revision\",\r\n \"privateUrl\": \"/swaggerApi\",\r\n \"isOnline\": true,\r\n \"isCurrent\": true\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/revisions?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050?deleteRevisions=true&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MD9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMz9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7e1408a-9d26-443c-9769-c233f5e2dd84" + "cd72afbf-55af-4e9f-84fd-ccac8c249ef7" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:51 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72619885-9690-4f78-aae2-0008aebf094a" + "2e03dd08-d1a0-4f3b-8c0a-a8d0ccc138d3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14993" + "14999" ], "x-ms-correlation-request-id": [ - "900f1deb-a4b7-4aa8-8833-1a0e60a76e53" + "293df250-8da7-4a9a-9237-c4ce01f2a217" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184452Z:900f1deb-a4b7-4aa8-8833-1a0e60a76e53" + "WESTUS2:20190412T000856Z:293df250-8da7-4a9a-9237-c4ce01f2a217" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 12 Apr 2019 00:08:55 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7050?deleteRevisions=true&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzA1MD9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMz9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "470da896-2af4-4f59-8f59-7122fd7a16be" + "d38dd645-c134-4521-bf26-7b3a2e5ffe95" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:44:51 GMT" - ], "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ca6baf2c-efa6-4036-94cd-c84875934296" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "99b91962-c2d6-412c-945e-ff0d6d710318" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190412T000856Z:99b91962-c2d6-412c-945e-ff0d6d710318" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Apr 2019 00:08:55 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid4713/releases/apireleaseid3654?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNDcxMy9yZWxlYXNlcy9hcGlyZWxlYXNlaWQzNjU0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a53b0905-2859-4e3f-a1b3-b2a22a9b90c7" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cac734a7-5d63-4e63-a3d1-706e658a95be" + "fc69937a-abb2-4522-8356-a1a3fa1410db" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14992" + "14997" ], "x-ms-correlation-request-id": [ - "fff57e12-a724-485c-9697-9635f1604b2d" + "85180f61-8da7-4771-bc05-460d549de090" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184452Z:fff57e12-a724-485c-9697-9635f1604b2d" + "WESTUS2:20190412T000856Z:85180f61-8da7-4771-bc05-460d549de090" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 12 Apr 2019 00:08:55 GMT" + ], "Expires": [ "-1" ] @@ -1516,40 +1747,26 @@ ], "Names": { "CreateListUpdateDelete": [ - "apiid7050", - "apireleaseid1546", - "firstOpRev1174", - "secondOpName728", - "revision_description2897", - "update_desc8809" + "apiid4713", + "apireleaseid3654", + "firstOpRev8365", + "revision_description7649", + "update_desc4045" ], "CreateOperationContract": [ - "azsmnet713", - "azsmnet6492", - "azsmnet9624", - "azsmnet7398", - "azsmnet6351", - "azsmnet5665", - "azsmnet3267", - "azsmnet1389", - "azsmnet1181", - "azsmnet2009", - "azsmnet9222", - "azsmnet5197", - "azsmnet8218", - "azsmnet2803", - "azsmnet8717", - "azsmnet1327", - "azsmnet8392", - "azsmnet805", - "azsmnet145", - "azsmnet6057", - "azsmnet5084", - "azsmnet3008", - "azsmnet545", - "azsmnet8798", - "azsmnet7865", - "azsmnet5063" + "azsmnet4811", + "azsmnet790", + "azsmnet9245", + "azsmnet6032", + "azsmnet8807", + "azsmnet4590", + "azsmnet4274", + "azsmnet2536", + "azsmnet9453", + "azsmnet7685", + "azsmnet6184", + "azsmnet8235", + "azsmnet4425" ] }, "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 5162fe00791f..27d9aaf7f895 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3ef5cea7-384f-4b2e-b38e-f113621a9024" + "29c69add-cb13-42c7-9fce-2c69dc9dacde" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:52 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bcb8eccc-2a93-4073-bee3-a48544830302", - "6a55223c-6fb4-4a30-bb3d-7913d604a561" + "c0aed9c3-694d-475f-be48-80bf1b686766", + "da712de6-932f-4b3c-89be-c82ce93089bf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "b6972024-0629-4da5-8e06-07768e3e6206" + "a3459fe8-5b93-4039-af50-5de1760c22ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040852Z:b6972024-0629-4da5-8e06-07768e3e6206" + "WESTUS2:20190411T020803Z:a3459fe8-5b93-4039-af50-5de1760c22ab" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:02 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70f371e1-5d6c-438b-a51f-53fd771aae08" + "87997ff3-cf37-45e9-80a3-fb69c6388db7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:52 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "35ec8524-8803-46b9-92e3-9e806a4cdee0" + "20a5f745-f5a0-4d3d-8379-8875b1e92d99" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-correlation-request-id": [ - "22320357-cdd8-4208-81cb-1d66984c9ef3" + "725578a4-a47a-4939-9c18-42d015907a7f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040852Z:22320357-cdd8-4208-81cb-1d66984c9ef3" + "WESTUS2:20190411T020803Z:725578a4-a47a-4939-9c18-42d015907a7f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:02 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,70 +136,130 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid6327?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNjMyNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid8419?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkODQxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription5188\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5074\",\r\n \"query\": \"query5311\"\r\n },\r\n \"displayName\": \"apiname787\",\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\": \"apidescription9189\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5518\",\r\n \"query\": \"query7125\"\r\n },\r\n \"displayName\": \"apiname1663\",\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": { "x-ms-client-request-id": [ - "93d06304-90b4-4b34-a10f-ccc1800f73c0" + "b2f5204f-2072-4902-9624-0e2bf0bf8085" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "352" + "353" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:53 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZC0=\"" + "\"AAAAAAAAcOI=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "db5a8f6c-6c70-42d6-830a-f83f53b22b82" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "2514c81b-d4e9-4793-ad43-75b55e4377fd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020804Z:2514c81b-d4e9-4793-ad43-75b55e4377fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:08:03 GMT" + ], + "Content-Length": [ + "736" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid8419\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid8419\",\r\n \"properties\": {\r\n \"displayName\": \"apiname1663\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription9189\",\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\": \"header5518\",\r\n \"query\": \"query7125\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid8419?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkODQxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcOI=\"" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d3148bff-839b-4bc0-b882-3af3d2011c04" + "32fc9860-c397-44e1-811f-de7f3f74a5a1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" ], "x-ms-correlation-request-id": [ - "f7c74a73-08e9-4d21-987d-b61c5e2ba3a9" + "4c725332-eb51-4855-b9c0-05e4f750f297" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040853Z:f7c74a73-08e9-4d21-987d-b61c5e2ba3a9" + "WESTUS2:20190411T020835Z:4c725332-eb51-4855-b9c0-05e4f750f297" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:35 GMT" + ], "Content-Length": [ - "735" + "736" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,64 +268,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid6327\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid6327\",\r\n \"properties\": {\r\n \"displayName\": \"apiname787\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription5188\",\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\": \"header5074\",\r\n \"query\": \"query5311\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid8419\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid8419\",\r\n \"properties\": {\r\n \"displayName\": \"apiname1663\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription9189\",\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\": \"header5518\",\r\n \"query\": \"query7125\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid6327?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNjMyNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid8419?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkODQxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89601b18-f8fc-4eb5-8de4-2695144730a9" + "59bf6cc1-e775-40db-9dc6-8a9aba27ee06" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:53 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZC0=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcOI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "de9d62d9-5855-49ca-b03e-916324f93c64" + "ea344e80-b352-4016-b10a-2d996524c2e8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-correlation-request-id": [ - "194d2820-a3c2-46bc-a038-a2537936cf2b" + "66f1ba8b-f19c-4fea-899d-6e8bf4e0699e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040853Z:194d2820-a3c2-46bc-a038-a2537936cf2b" + "WESTUS2:20190411T020835Z:66f1ba8b-f19c-4fea-899d-6e8bf4e0699e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:35 GMT" + ], "Content-Length": [ - "735" + "736" ], "Content-Type": [ "application/json; charset=utf-8" @@ -274,59 +334,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid6327\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid6327\",\r\n \"properties\": {\r\n \"displayName\": \"apiname787\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription5188\",\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\": \"header5074\",\r\n \"query\": \"query5311\"\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/apiid8419\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid8419\",\r\n \"properties\": {\r\n \"displayName\": \"apiname1663\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription9189\",\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\": \"header5518\",\r\n \"query\": \"query7125\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid6327?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNjMyNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid8419?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkODQxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d68e4d9-b054-4858-ade9-638b130c17cf" + "82e5ecb1-cf51-4ee4-b9a2-3f1fcb8c61ab" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:55 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3e3964c8-2ca8-4e23-9fff-57b7a89aee46" + "8b42c0b2-5b85-4738-a832-2f48ed3475b9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11991" ], "x-ms-correlation-request-id": [ - "46c7181f-181d-4c06-808a-7b3f5f428d78" + "bafb6725-163a-4429-9882-a3401071fb20" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040856Z:46c7181f-181d-4c06-808a-7b3f5f428d78" + "WESTUS2:20190411T020837Z:bafb6725-163a-4429-9882-a3401071fb20" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:36 GMT" + ], "Content-Length": [ "79" ], @@ -341,22 +401,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid6327/schemas/schemaid6840?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNjMyNy9zY2hlbWFzL3NjaGVtYWlkNjg0MD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid8419/schemas/schemaid7579?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkODQxOS9zY2hlbWFzL3NjaGVtYWlkNzU3OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "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": { "x-ms-client-request-id": [ - "edc254b9-45e6-43d8-9977-459f4f9292a0" + "b5298808-cca5-4a2a-a807-68e6e65f187a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -369,36 +429,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:53 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZDE=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcOY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f78848d-1f78-49eb-a4fc-d464362edafb" + "4d634533-af8b-4bde-ad3a-0ba2b555b610" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "9c0cc7ba-7d21-4aee-a774-d25e6c9bf091" + "97e733db-396c-4fe9-a3e2-07ccf6326ad8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040854Z:9c0cc7ba-7d21-4aee-a774-d25e6c9bf091" + "WESTUS2:20190411T020835Z:97e733db-396c-4fe9-a3e2-07ccf6326ad8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:35 GMT" + ], "Content-Length": [ "1715" ], @@ -409,59 +469,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid6327/schemas/schemaid6840\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid6840\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid8419/schemas/schemaid7579\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid7579\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid6327/schemas?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNjMyNy9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid8419/schemas?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkODQxOS9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4cd2970d-9a68-4b64-a2e6-467e637d200e" + "5784e0bc-d5c2-4960-8ff5-77a7c9a95953" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:53 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff32070f-558e-4db5-bc94-4b80e1873c18" + "f6c0e901-f948-4db7-bf4d-3e11e24cdf84" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11994" ], "x-ms-correlation-request-id": [ - "dbd75dc6-27cd-4b76-8927-3800a1c6694b" + "f6ebf08c-b48a-4224-8aeb-dbe2e5038e2e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040854Z:dbd75dc6-27cd-4b76-8927-3800a1c6694b" + "WESTUS2:20190411T020835Z:f6ebf08c-b48a-4224-8aeb-dbe2e5038e2e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:35 GMT" + ], "Content-Length": [ "2008" ], @@ -472,62 +532,62 @@ "-1" ] }, - "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/apiid6327/schemas/schemaid6840\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid6840\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/apiid8419/schemas/schemaid7579\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid7579\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid6327/schemas/schemaid6840?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNjMyNy9zY2hlbWFzL3NjaGVtYWlkNjg0MD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid8419/schemas/schemaid7579?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkODQxOS9zY2hlbWFzL3NjaGVtYWlkNzU3OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b572b366-7735-4546-84b0-7d71b365a746" + "026e6190-f367-4831-9c9b-f28162bcd50a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:53 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZDE=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcOY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f69d26b9-f4a0-4a03-acef-973bad719b40" + "8faef807-72dc-4319-a337-f835c002c472" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11993" ], "x-ms-correlation-request-id": [ - "eb31d0d9-5fd8-4cc7-bc89-70c947de5c38" + "2ed63e0c-7475-4721-8551-8667c029b4cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040854Z:eb31d0d9-5fd8-4cc7-bc89-70c947de5c38" + "WESTUS2:20190411T020836Z:2ed63e0c-7475-4721-8551-8667c029b4cf" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:35 GMT" + ], "Content-Length": [ "0" ], @@ -539,121 +599,121 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid6327/schemas/schemaid6840?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNjMyNy9zY2hlbWFzL3NjaGVtYWlkNjg0MD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid8419/schemas/schemaid7579?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkODQxOS9zY2hlbWFzL3NjaGVtYWlkNzU3OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f55487f-539d-41b8-94e0-64480ba8cf1f" + "eb149b5a-b048-4e8d-ac06-df5d88e0bb8a" ], "If-Match": [ - "\"AAAAAAAAZDE=\"" + "\"AAAAAAAAcOY=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a9370dfc-dddf-403b-b658-294795779326" + "201bc56b-f38a-4a86-a122-4585d6733329" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "620931ca-5642-44b5-bd8b-f9ace18fa546" + "6a09bbc6-e0c0-4841-b5de-1c16c3ff3ab8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040855Z:620931ca-5642-44b5-bd8b-f9ace18fa546" + "WESTUS2:20190411T020836Z:6a09bbc6-e0c0-4841-b5de-1c16c3ff3ab8" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:08:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid6327/schemas/schemaid6840?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNjMyNy9zY2hlbWFzL3NjaGVtYWlkNjg0MD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid8419/schemas/schemaid7579?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkODQxOS9zY2hlbWFzL3NjaGVtYWlkNzU3OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a785f06-0cc6-4421-9211-fba780f5ebfc" + "ae780751-9482-4293-9a0a-e6f7a0b78e06" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:55 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b07cf98f-3d35-479e-82b3-d1dbdd8d6b19" + "e27a059c-d51b-4850-a542-dbadb28be898" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "1e092fd0-5086-400e-9365-18a6744d3a54" + "19ebfa02-01d9-475b-9786-7de467e128d8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040856Z:1e092fd0-5086-400e-9365-18a6744d3a54" + "WESTUS2:20190411T020837Z:19ebfa02-01d9-475b-9786-7de467e128d8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:36 GMT" + ], "Expires": [ "-1" ] @@ -662,55 +722,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid6327/schemas/schemaid6840?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNjMyNy9zY2hlbWFzL3NjaGVtYWlkNjg0MD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid8419/schemas/schemaid7579?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkODQxOS9zY2hlbWFzL3NjaGVtYWlkNzU3OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c15e0519-5ec8-49b8-96ca-c36f26040195" + "53415aa7-2fb9-440b-850f-356aeceb1990" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "867d910c-b935-4929-8c88-d15814cf38de" + "847e7862-3bb7-47fe-b990-20344d2dea0b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11992" ], "x-ms-correlation-request-id": [ - "f4d2ca95-d1da-41ad-b560-80ddf664da7b" + "e1016f99-1585-43e1-869d-39ac5c134233" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040855Z:f4d2ca95-d1da-41ad-b560-80ddf664da7b" + "WESTUS2:20190411T020836Z:e1016f99-1585-43e1-869d-39ac5c134233" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:36 GMT" + ], "Content-Length": [ "82" ], @@ -725,121 +785,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid6327?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNjMyNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid8419?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkODQxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8099df0e-3490-4a2d-ae8f-83b9ae5a7c9a" + "6d36bc58-0c54-4250-8ffe-6e0ed2d55550" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:55 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "861578b3-19ca-448e-a98f-8e22795acdcb" + "22ff076a-da06-4029-9d52-7c7e8fd72f59" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "666a8d71-1f3b-40ed-a309-e518c0fa34e9" + "e10c4a8d-f384-4fd6-8b55-180896e3943b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040856Z:666a8d71-1f3b-40ed-a309-e518c0fa34e9" + "WESTUS2:20190411T020836Z:e10c4a8d-f384-4fd6-8b55-180896e3943b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:08:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid6327?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNjMyNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid8419?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkODQxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c187d08-8a92-4078-830f-933f891ce30d" + "12f16c2e-8df1-48c3-88c5-2011f438ff9c" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:56 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d5c00a6a-7a03-4d11-88f9-dede550e54cb" + "f5f27874-5b97-4f5a-b1c7-57bf2363ab3b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "11dc790f-23a6-49ec-a8da-e9d3c82e7a7f" + "cdbe3abe-a441-42ee-a83c-5eec747c717e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040856Z:11dc790f-23a6-49ec-a8da-e9d3c82e7a7f" + "WESTUS2:20190411T020837Z:cdbe3abe-a441-42ee-a83c-5eec747c717e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:37 GMT" + ], "Expires": [ "-1" ] @@ -850,12 +910,12 @@ ], "Names": { "CreateListUpdateDelete": [ - "apiid6327", - "schemaid6840", - "apiname787", - "apidescription5188", - "header5074", - "query5311" + "apiid8419", + "schemaid7579", + "apiname1663", + "apidescription9189", + "header5518", + "query7125" ] }, "Variables": { diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiTests/CloneApiUsingSourceApiId.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiTests/CloneApiUsingSourceApiId.json new file mode 100644 index 000000000000..152f431ae28c --- /dev/null +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiTests/CloneApiUsingSourceApiId.json @@ -0,0 +1,881 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f58b0028-265f-4d02-b5e9-7c79f4602e84" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "289" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAFuRAQ=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8645d6c8-7046-4d4b-b52b-bb5ff9a8a4f1", + "d7659e1e-6742-484e-ac3f-f096b6522a18" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "67caf025-8a52-4a6a-a97b-85930c7977be" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020958Z:67caf025-8a52-4a6a-a97b-85930c7977be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:09:58 GMT" + ], + "Content-Length": [ + "2039" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e06b2956-c143-414c-8baf-c12ac3316d96" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAFuRAQ=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "23fa86d9-afbc-4f51-9afc-688de437ad31" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "4dc08a8b-03f9-4214-9185-d19b7f09a5df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020959Z:4dc08a8b-03f9-4214-9185-d19b7f09a5df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:09:58 GMT" + ], + "Content-Length": [ + "2039" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3N3YWdnZXJBcGlJZDI1NjQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerApi\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63bbfa6d-b3ca-4c5e-904f-3194508f2f37" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "18224" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564?api-version=2019-01-01&asyncId=5caea1f7b597440f487b0e03&asyncCode=201" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "533b5890-8f91-4cb4-b766-05a5afaff886" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "d00a99b6-533a-4104-ac35-c74850e61345" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020959Z:d00a99b6-533a-4104-ac35-c74850e61345" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:09:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564?api-version=2019-01-01&asyncId=5caea1f7b597440f487b0e03&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3N3YWdnZXJBcGlJZDI1NjQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMSZhc3luY0lkPTVjYWVhMWY3YjU5NzQ0MGY0ODdiMGUwMyZhc3luY0NvZGU9MjAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcVQ=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a4a4a397-27f3-43b3-b73a-cc0567bf9f37" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "ae7a8cd4-e3f3-4f4e-8c43-be98c4dc4982" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021029Z:ae7a8cd4-e3f3-4f4e-8c43-be98c4dc4982" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:10:28 GMT" + ], + "Content-Length": [ + "862" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"swaggerApiId2564\",\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}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564/operations?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3N3YWdnZXJBcGlJZDI1NjQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "911bfc44-4dbd-497a-825b-b3878308edb7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3316d1c5-3a7a-49b1-97d8-a381b46904a5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "bdebd280-4532-4cf9-b822-67b98568f318" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021029Z:bdebd280-4532-4cf9-b822-67b98568f318" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:10:29 GMT" + ], + "Content-Length": [ + "19015" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/swaggerApiId2564/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\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\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\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\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId3516?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRob3JpemF0aW9uU2VydmVySWQzNTE2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "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\": \"oauth2scope8057\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"displayName\": \"authName7462\",\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\": \"clientid1921\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b59a030-ccfc-4a0b-b072-54e762b09659" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "546" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcXE=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9e2f2b59-6e18-4ff4-831e-fde26cd149c6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "007d34b7-ed81-4570-aae5-760720919d95" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021030Z:007d34b7-ed81-4570-aae5-760720919d95" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:10:29 GMT" + ], + "Content-Length": [ + "1086" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId3516\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authorizationServerId3516\",\r\n \"properties\": {\r\n \"displayName\": \"authName7462\",\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\": \"oauth2scope8057\",\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\": \"clientid1921\",\r\n \"clientSecret\": null,\r\n \"resourceOwnerUsername\": null,\r\n \"resourceOwnerPassword\": null\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTI5Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription1680\",\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId3516\",\r\n \"scope\": \"oauth2scope1493\"\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header8104\",\r\n \"query\": \"query241\"\r\n },\r\n \"subscriptionRequired\": true,\r\n \"sourceApiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564\",\r\n \"displayName\": \"apiname6967\",\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": { + "x-ms-client-request-id": [ + "84a92cf0-1128-4616-9bc8-5f28ba4e3c80" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "746" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcXI=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6e510667-9ef8-446a-882d-c9c8b8ee9742" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "1a543cb3-b190-426a-88da-0d5fc66066b7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021031Z:1a543cb3-b190-426a-88da-0d5fc66066b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:10:30 GMT" + ], + "Content-Length": [ + "875" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1297\",\r\n \"properties\": {\r\n \"displayName\": \"apiname6967\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription1680\",\r\n \"subscriptionRequired\": true,\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\": \"authorizationServerId3516\",\r\n \"scope\": \"oauth2scope1493\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header8104\",\r\n \"query\": \"query241\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTI5Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcXI=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "53ed1584-425c-4b7f-b7c5-e3e3ef968f1d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "e5d439ca-88b6-4ad3-8db2-56b5a85c3914" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021101Z:e5d439ca-88b6-4ad3-8db2-56b5a85c3914" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:11:01 GMT" + ], + "Content-Length": [ + "875" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1297\",\r\n \"properties\": {\r\n \"displayName\": \"apiname6967\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription1680\",\r\n \"subscriptionRequired\": true,\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\": \"authorizationServerId3516\",\r\n \"scope\": \"oauth2scope1493\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header8104\",\r\n \"query\": \"query241\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTI5Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3468fd4-d9b6-4392-b786-2ad8be0ea256" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcXI=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "81264cba-4b23-4110-8c12-453e2b4185b1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "01a2e0ff-0e5e-4414-8a58-b4415a1b16b4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021101Z:01a2e0ff-0e5e-4414-8a58-b4415a1b16b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:11:01 GMT" + ], + "Content-Length": [ + "875" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1297\",\r\n \"properties\": {\r\n \"displayName\": \"apiname6967\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription1680\",\r\n \"subscriptionRequired\": true,\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\": \"authorizationServerId3516\",\r\n \"scope\": \"oauth2scope1493\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header8104\",\r\n \"query\": \"query241\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297/operations?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTI5Ny9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9851c306-a1ac-4b8f-b728-297b95d935ee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4024f1e1-9f76-4a81-97bd-02464a97a895" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "eedc95c3-1c8a-4442-8d8f-3497b6bdd407" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021102Z:eedc95c3-1c8a-4442-8d8f-3497b6bdd407" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:11:01 GMT" + ], + "Content-Length": [ + "16892" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/apiid1297/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\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/apiid1297/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\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/apiid1297/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\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\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\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/apiid1297/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\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\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\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/apiid1297/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\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/apiid1297/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"petArray\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5caea1f7b597440f487b0e02\",\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/apiid1297/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/swaggerApiId2564?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3N3YWdnZXJBcGlJZDI1NjQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad86d74d-7c16-4857-85d1-069289f63f62" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "470e25fb-5088-4d1e-9b66-bd645f072c70" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "b261bc57-27bf-4352-914a-8254ce0e6a32" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021102Z:b261bc57-27bf-4352-914a-8254ce0e6a32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:11:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1297?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTI5Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7896ed27-3fec-4618-a219-d981c1c6ce9b" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bae4978a-8ee0-45e4-89f1-61528e9e5d71" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "aa27f85c-4c9a-435c-b8e1-9373b13f4542" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021102Z:aa27f85c-4c9a-435c-b8e1-9373b13f4542" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:11:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId3516?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRob3JpemF0aW9uU2VydmVySWQzNTE2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a73376e2-8345-43b8-82f5-bd6b8d31ac63" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d1dc4606-5ef8-47d8-b817-72618693aa06" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "29c8de41-832a-461e-8cb2-359236b6a18e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021103Z:29c8de41-832a-461e-8cb2-359236b6a18e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:11:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "CloneApiUsingSourceApiId": [ + "authorizationServerId3516", + "apiid1297", + "swaggerApiId2564", + "authName7462", + "oauth2scope8057", + "clientid1921", + "apiname6967", + "apidescription1680", + "header8104", + "query241", + "oauth2scope1493" + ] + }, + "Variables": { + "SubscriptionId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", + "TestCertificate": "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", + "TestCertificatePassword": "Password", + "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", + "ServiceName": "sdktestservice", + "Location": "CentralUS", + "ResourceGroup": "Api-Default-CentralUS" + } +} \ No newline at end of file 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 1e5a2b34ef09..7d034279bfd2 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f6dabb85-b3eb-43f3-9f95-cfe40a67801e" + "455ea64d-4df9-4b16-be0a-2bf98cfa29e8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:28 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cc45fe0d-a3a6-4b81-a00a-edeb8edd5f6c", - "d62058c0-fbfc-40b6-a668-bfbac9acbb4d" + "43594d03-2817-44dd-aad2-e4db5777b351", + "d6cc025a-70f7-4288-8dd1-f763af75ff70" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "64ae3dee-536d-47f6-abea-04e979897a91" + "60e96e68-d62c-4142-b711-1e154b630fd9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041229Z:64ae3dee-536d-47f6-abea-04e979897a91" + "WESTUS2:20190411T021104Z:60e96e68-d62c-4142-b711-1e154b630fd9" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:11:03 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93f68d14-aa57-4488-aff6-00479248fee1" + "71bf327e-7687-4e61-88f4-d0a7ec7fd90d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:28 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6fdddb7a-3aa8-4d3c-8440-d011d25cf9ee" + "608935ff-e4da-4337-b970-2c297e5fc96d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11992" ], "x-ms-correlation-request-id": [ - "f22b54ba-f991-4879-93ae-6d7a41888fb9" + "926784b1-cc9d-4c2b-9a85-ef93dcc7fd59" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041229Z:f22b54ba-f991-4879-93ae-6d7a41888fb9" + "WESTUS2:20190411T021104Z:926784b1-cc9d-4c2b-9a85-ef93dcc7fd59" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:11:03 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2018-01-01&expandApiVersionSet=false", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEmZXhwYW5kQXBpVmVyc2lvblNldD1mYWxzZQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3557d6a-8c33-4786-8ca7-ccf34d5e9ecc" + "1f7c1efe-937e-43ca-9355-1a394ac5f3de" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:28 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a83874c-2a76-48e1-8812-4f41eab3914f" + "9403945e-1558-428f-8455-13c1e7fc71cf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11991" ], "x-ms-correlation-request-id": [ - "609484ee-cc7f-4d10-8b91-8a7f9fe6b3cc" + "6ae6c0e1-98f5-4f57-a483-c9c024e47e82" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041229Z:609484ee-cc7f-4d10-8b91-8a7f9fe6b3cc" + "WESTUS2:20190411T021104Z:6ae6c0e1-98f5-4f57-a483-c9c024e47e82" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:11:03 GMT" + ], "Content-Length": [ "676" ], @@ -203,58 +203,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6cb866f-88fd-4872-841b-e9574271b515" + "3879da54-098b-454c-9bfc-1ac838ec584f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:28 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY+4=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAb1s=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "21b56797-3eb5-4582-9040-0d852d73e035" + "4d6b9738-3129-423f-8635-f30b8e1185af" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11990" ], "x-ms-correlation-request-id": [ - "4bc8bf95-9d2d-415b-a4a1-1bafe9e4ad5e" + "cfa8380b-80ca-43c4-b531-874c21dfab01" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041229Z:4bc8bf95-9d2d-415b-a4a1-1bafe9e4ad5e" + "WESTUS2:20190411T021104Z:cfa8380b-80ca-43c4-b531-874c21dfab01" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:11:04 GMT" + ], "Content-Length": [ "713" ], @@ -269,22 +269,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId3053?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRob3JpemF0aW9uU2VydmVySWQzMDUzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId9105?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRob3JpemF0aW9uU2VydmVySWQ5MTA1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "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\": \"oauth2scope9701\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"displayName\": \"authName3979\",\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\": \"clientid1430\"\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\": \"oauth2scope6785\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"displayName\": \"authName5050\",\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\": \"clientid5208\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9d5d654d-3387-4312-afc7-1e36e8c07925" + "5b80c8ea-5335-466a-b82a-a6e504d12159" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -297,36 +297,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:29 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZQo=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcZM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6bd6e45a-6e07-469e-ba0a-f5ed465d1060" + "98afcabc-7714-4ffc-aed7-8441719b8298" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "12c2def1-71ef-4b92-b7f9-3bac4b098d0a" + "6d08cbb3-aa4f-486d-9f14-200eebb78b4e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041230Z:12c2def1-71ef-4b92-b7f9-3bac4b098d0a" + "WESTUS2:20190411T021105Z:6d08cbb3-aa4f-486d-9f14-200eebb78b4e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:11:04 GMT" + ], "Content-Length": [ "1086" ], @@ -337,26 +337,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId3053\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authorizationServerId3053\",\r\n \"properties\": {\r\n \"displayName\": \"authName3979\",\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\": \"oauth2scope9701\",\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\": \"clientid1430\",\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/authorizationServerId9105\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authorizationServerId9105\",\r\n \"properties\": {\r\n \"displayName\": \"authName5050\",\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\": \"oauth2scope6785\",\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\": \"clientid5208\",\r\n \"clientSecret\": null,\r\n \"resourceOwnerUsername\": null,\r\n \"resourceOwnerPassword\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid9563?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkOTU2Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMzM5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription8868\",\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId3053\",\r\n \"scope\": \"oauth2scope2577\"\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header9922\",\r\n \"query\": \"query9738\"\r\n },\r\n \"displayName\": \"apiname8910\",\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\": \"apidescription3785\",\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId9105\",\r\n \"scope\": \"oauth2scope8999\"\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5282\",\r\n \"query\": \"query7206\"\r\n },\r\n \"displayName\": \"apiname4512\",\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": { "x-ms-client-request-id": [ - "d7283daf-5200-407d-b7c4-081d9cd0fe52" + "cd03fed0-4bbf-40da-8c68-37c5e19ff2d0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -369,36 +369,96 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:30 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZQs=\"" + "\"AAAAAAAAcZQ=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "768f05ba-f1c7-4e3a-94cf-2562702e841c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "99de0172-9f9a-4296-bf1c-357b0320adf7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021106Z:99de0172-9f9a-4296-bf1c-357b0320adf7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:11:05 GMT" + ], + "Content-Length": [ + "841" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid3399\",\r\n \"properties\": {\r\n \"displayName\": \"apiname4512\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3785\",\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\": \"authorizationServerId9105\",\r\n \"scope\": \"oauth2scope8999\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5282\",\r\n \"query\": \"query7206\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMzM5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcZQ=\"" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59aaa26a-f974-4547-9879-502ddbed4e3f" + "830d0e49-f055-4423-bb18-4cbb14d5582f" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" ], "x-ms-correlation-request-id": [ - "22a04067-fb0f-4b8f-8c46-0c75ccca25e9" + "2fdc01f9-67cf-4d69-8d41-44bf64d6a762" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041231Z:22a04067-fb0f-4b8f-8c46-0c75ccca25e9" + "WESTUS2:20190411T021137Z:2fdc01f9-67cf-4d69-8d41-44bf64d6a762" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:11:36 GMT" + ], "Content-Length": [ "841" ], @@ -409,62 +469,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid9563\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid9563\",\r\n \"properties\": {\r\n \"displayName\": \"apiname8910\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription8868\",\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\": \"authorizationServerId3053\",\r\n \"scope\": \"oauth2scope2577\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header9922\",\r\n \"query\": \"query9738\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid3399\",\r\n \"properties\": {\r\n \"displayName\": \"apiname4512\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3785\",\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\": \"authorizationServerId9105\",\r\n \"scope\": \"oauth2scope8999\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5282\",\r\n \"query\": \"query7206\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid9563?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkOTU2Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMzM5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ac56867-049d-4324-b41f-561aab0df2c6" + "7761cd92-9351-4e6e-8a72-4aa46a24ce20" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:30 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZQs=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcZQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3799cb2a-ee0d-48f1-81ea-75a28e310ea6" + "28e3913e-8b45-4446-9bb8-aa637cc41846" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11988" ], "x-ms-correlation-request-id": [ - "fa67ceda-d908-4b91-b375-6a947f080b3e" + "d352b719-2602-4e04-a9ce-c88ab6f48037" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041231Z:fa67ceda-d908-4b91-b375-6a947f080b3e" + "WESTUS2:20190411T021137Z:d352b719-2602-4e04-a9ce-c88ab6f48037" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:11:37 GMT" + ], "Content-Length": [ "841" ], @@ -475,64 +535,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid9563\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid9563\",\r\n \"properties\": {\r\n \"displayName\": \"apiname8910\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription8868\",\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\": \"authorizationServerId3053\",\r\n \"scope\": \"oauth2scope2577\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header9922\",\r\n \"query\": \"query9738\"\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/apiid3399\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid3399\",\r\n \"properties\": {\r\n \"displayName\": \"apiname4512\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3785\",\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\": \"authorizationServerId9105\",\r\n \"scope\": \"oauth2scope8999\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5282\",\r\n \"query\": \"query7206\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid9563?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkOTU2Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMzM5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "959fd986-e84c-4b1d-a803-116b3a424989" + "63de3071-d504-432a-9eb2-222080792da8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:30 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZQ8=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcZg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6451fb35-3c42-4785-81ba-fe00a1d911b6" + "21694cd6-9d37-48dc-a9ce-2cc3d72d5049" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11986" ], "x-ms-correlation-request-id": [ - "1db9cfad-430e-45b9-945f-eb72a16543fc" + "fded6846-711c-4886-b190-35f84e601f29" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041231Z:1db9cfad-430e-45b9-945f-eb72a16543fc" + "WESTUS2:20190411T021137Z:fded6846-711c-4886-b190-35f84e601f29" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:11:37 GMT" + ], "Content-Length": [ - "749" + "748" ], "Content-Type": [ "application/json; charset=utf-8" @@ -541,59 +601,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid9563\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid9563\",\r\n \"properties\": {\r\n \"displayName\": \"patchedname8151\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"patchedDescription6549\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"patchedPath5807\",\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\": \"header9922\",\r\n \"query\": \"query9738\"\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/apiid3399\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid3399\",\r\n \"properties\": {\r\n \"displayName\": \"patchedname2889\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"patchedDescription108\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"patchedPath4462\",\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\": \"header5282\",\r\n \"query\": \"query7206\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid9563?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkOTU2Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMzM5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d4798d2-3f42-442a-8abb-baa774975a7b" + "d55a5ce1-2411-411d-a732-ace43c9dd98a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:33 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b81e53f9-95fc-4355-9627-e91b15faafba" + "fe9529a7-e7b1-4f66-af92-406b7414c8d8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11981" ], "x-ms-correlation-request-id": [ - "ff9d7848-0080-427e-a406-66b9d82548e4" + "2f835186-2f21-4aa3-93d1-513a22e52f0b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041234Z:ff9d7848-0080-427e-a406-66b9d82548e4" + "WESTUS2:20190411T021209Z:2f835186-2f21-4aa3-93d1-513a22e52f0b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:12:09 GMT" + ], "Content-Length": [ "79" ], @@ -608,58 +668,58 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid9563?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkOTU2Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMzM5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c0de3e8-ab9f-4ad3-9876-f8635a6f3874" + "67a71017-664b-45d2-884c-b592fdd8959f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:30 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZQs=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcZQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59fc98ec-ae71-4502-854d-54b78f1d50cb" + "11c32c2b-7efd-4a12-b719-20dbb555e560" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11987" ], "x-ms-correlation-request-id": [ - "e71e34db-23a0-48e8-ba49-5cc963c8fb69" + "e110e380-c68d-4479-af54-ac6637c8e0fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041231Z:e71e34db-23a0-48e8-ba49-5cc963c8fb69" + "WESTUS2:20190411T021137Z:e110e380-c68d-4479-af54-ac6637c8e0fb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:11:37 GMT" + ], "Content-Length": [ "0" ], @@ -671,64 +731,64 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid9563?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkOTU2Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMzM5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription6549\",\r\n \"authenticationSettings\": {},\r\n \"displayName\": \"patchedname8151\",\r\n \"path\": \"patchedPath5807\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription108\",\r\n \"authenticationSettings\": {},\r\n \"displayName\": \"patchedname2889\",\r\n \"path\": \"patchedPath4462\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9fed88ed-7746-4e75-b321-5baa23ca5fc6" + "d3cbb493-6ed9-472e-8c5d-2d6855133f4a" ], "If-Match": [ - "\"AAAAAAAAZQs=\"" + "\"AAAAAAAAcZQ=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "179" + "178" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a0067d25-b94c-4c9d-9b0c-5e0110391f6e" + "6eb32062-80c1-4076-96c1-0130f379fe80" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1193" ], "x-ms-correlation-request-id": [ - "02bf0b78-934d-4b10-a068-9a268c598c67" + "b42795f0-42c4-4067-9a6f-6f2fd57cf8ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041231Z:02bf0b78-934d-4b10-a068-9a268c598c67" + "WESTUS2:20190411T021137Z:b42795f0-42c4-4067-9a6f-6f2fd57cf8ad" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:11:37 GMT" + ], "Expires": [ "-1" ] @@ -737,22 +797,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId5763?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU3NjM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId549?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU0OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName7382\",\r\n \"metadataEndpoint\": \"https://provider4557.endpoint5476\",\r\n \"clientId\": \"clientId7791\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName8322\",\r\n \"metadataEndpoint\": \"https://provider4888.endpoint4150\",\r\n \"clientId\": \"clientId3533\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3e937ecf-60d6-46f9-8b9c-e8e4f7ead67c" + "fdde4d33-8ff7-4c57-a3f3-43cde2f75416" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -765,38 +825,38 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:31 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZRM=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcZw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a967f6d2-ab7c-4ee2-8a50-ea5b3f4e8c0a" + "4bf11538-c280-48a2-b4e8-8a1f8321c109" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1192" ], "x-ms-correlation-request-id": [ - "53a4dba5-4562-402f-a03b-cd3f58af57cf" + "b409eea3-4fd3-407e-8a69-39e030320e95" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041232Z:53a4dba5-4562-402f-a03b-cd3f58af57cf" + "WESTUS2:20190411T021138Z:b409eea3-4fd3-407e-8a69-39e030320e95" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:11:38 GMT" + ], "Content-Length": [ - "499" + "497" ], "Content-Type": [ "application/json; charset=utf-8" @@ -805,70 +865,130 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId5763\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId5763\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName7382\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider4557.endpoint5476\",\r\n \"clientId\": \"clientId7791\",\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/openId549\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId549\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName8322\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider4888.endpoint4150\",\r\n \"clientId\": \"clientId3533\",\r\n \"clientSecret\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid3170?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL29wZW5BcGlpZDMxNzA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid1142?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL29wZW5BcGlpZDExNDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription7546\",\r\n \"authenticationSettings\": {\r\n \"openid\": {\r\n \"openidProviderId\": \"openId5763\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header9922\",\r\n \"query\": \"query9738\"\r\n },\r\n \"displayName\": \"apiname9535\",\r\n \"serviceUrl\": \"http://newechoapi2.cloudapp.net/api\",\r\n \"path\": \"newOpenapiPath\",\r\n \"protocols\": [\r\n \"https\",\r\n \"http\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription3954\",\r\n \"authenticationSettings\": {\r\n \"openid\": {\r\n \"openidProviderId\": \"openId549\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5282\",\r\n \"query\": \"query7206\"\r\n },\r\n \"displayName\": \"apiname1248\",\r\n \"serviceUrl\": \"http://newechoapi2.cloudapp.net/api\",\r\n \"path\": \"newOpenapiPath\",\r\n \"protocols\": [\r\n \"https\",\r\n \"http\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "77a77d3c-ec13-42d5-a9c7-bee80279b11d" + "76d8f8a3-5574-47d7-b290-e9d6c2ae1b5c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "554" + "553" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:31 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZRQ=\"" + "\"AAAAAAAAcZ0=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4769b6e3-d349-4e5d-b37e-8d6a4e8d199f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "9c8dcf31-fbad-400d-b39c-f5fe875cd568" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021138Z:9c8dcf31-fbad-400d-b39c-f5fe875cd568" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:11:38 GMT" + ], + "Content-Length": [ + "881" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid1142\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid1142\",\r\n \"properties\": {\r\n \"displayName\": \"apiname1248\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3954\",\r\n \"serviceUrl\": \"http://newechoapi2.cloudapp.net/api\",\r\n \"path\": \"newOpenapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": {\r\n \"openidProviderId\": \"openId549\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5282\",\r\n \"query\": \"query7206\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid1142?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL29wZW5BcGlpZDExNDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcZ0=\"" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1e9a3fbd-7ee0-44e3-910b-d9c1718fc24f" + "f5dfc941-8c5b-41c1-9e4f-a6eb5e050606" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" ], "x-ms-correlation-request-id": [ - "ff257651-0430-4016-9357-23070fb230f3" + "140caabc-d066-4e94-821e-cb0e5784ea94" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041232Z:ff257651-0430-4016-9357-23070fb230f3" + "WESTUS2:20190411T021208Z:140caabc-d066-4e94-821e-cb0e5784ea94" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:12:08 GMT" + ], "Content-Length": [ - "882" + "881" ], "Content-Type": [ "application/json; charset=utf-8" @@ -877,64 +997,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid3170\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid3170\",\r\n \"properties\": {\r\n \"displayName\": \"apiname9535\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription7546\",\r\n \"serviceUrl\": \"http://newechoapi2.cloudapp.net/api\",\r\n \"path\": \"newOpenapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": {\r\n \"openidProviderId\": \"openId5763\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header9922\",\r\n \"query\": \"query9738\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid1142\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid1142\",\r\n \"properties\": {\r\n \"displayName\": \"apiname1248\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3954\",\r\n \"serviceUrl\": \"http://newechoapi2.cloudapp.net/api\",\r\n \"path\": \"newOpenapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": {\r\n \"openidProviderId\": \"openId549\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5282\",\r\n \"query\": \"query7206\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid3170?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL29wZW5BcGlpZDMxNzA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid1142?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL29wZW5BcGlpZDExNDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26eac1f8-753f-4956-aedf-ed143f5b77b3" + "a19a7952-8203-489e-8c3a-26941295660d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:31 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZRQ=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcZ0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0df633ba-4b38-474e-8630-958937f557c5" + "5f8438a4-293d-4c7f-84d3-79866638d6a7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11984" ], "x-ms-correlation-request-id": [ - "e3009e88-392a-401c-99c2-672bb27727f2" + "d7adb707-9ffb-4cfa-ab3d-a929db98646c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041232Z:e3009e88-392a-401c-99c2-672bb27727f2" + "WESTUS2:20190411T021209Z:d7adb707-9ffb-4cfa-ab3d-a929db98646c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:12:08 GMT" + ], "Content-Length": [ - "882" + "881" ], "Content-Type": [ "application/json; charset=utf-8" @@ -943,59 +1063,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid3170\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid3170\",\r\n \"properties\": {\r\n \"displayName\": \"apiname9535\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription7546\",\r\n \"serviceUrl\": \"http://newechoapi2.cloudapp.net/api\",\r\n \"path\": \"newOpenapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": {\r\n \"openidProviderId\": \"openId5763\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header9922\",\r\n \"query\": \"query9738\"\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/openApiid1142\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid1142\",\r\n \"properties\": {\r\n \"displayName\": \"apiname1248\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3954\",\r\n \"serviceUrl\": \"http://newechoapi2.cloudapp.net/api\",\r\n \"path\": \"newOpenapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": {\r\n \"openidProviderId\": \"openId549\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header5282\",\r\n \"query\": \"query7206\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid3170?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL29wZW5BcGlpZDMxNzA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid1142?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL29wZW5BcGlpZDExNDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcfbf762-ffef-47a4-af6e-a0c0f9fef2d5" + "6e3e3c6e-7c17-497c-8923-24d293e2e6a9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:33 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9842b45f-c2f0-447e-adcf-49b914ab3708" + "9ffe0088-ea2e-4218-8ff3-7d0f0f499459" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11980" ], "x-ms-correlation-request-id": [ - "2e9e184f-538c-44a9-9df6-c7a647e9b344" + "2a73a8b9-e208-44d8-b900-64e0311cb0cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041234Z:2e9e184f-538c-44a9-9df6-c7a647e9b344" + "WESTUS2:20190411T021210Z:2a73a8b9-e208-44d8-b900-64e0311cb0cf" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:12:09 GMT" + ], "Content-Length": [ "79" ], @@ -1010,57 +1130,57 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?$top=1&api-version=2018-01-01&expandApiVersionSet=false", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE4LTAxLTAxJmV4cGFuZEFwaVZlcnNpb25TZXQ9ZmFsc2U=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e04979e-a43a-4eb6-848e-4748629bcce6" + "c016a507-717a-4b2b-8fdc-00a1d341866c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18909c6a-8e3f-4fd2-89a2-5d58257ea97c" + "5ae1a507-8cbe-448b-8453-8050a70fd4b4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11983" ], "x-ms-correlation-request-id": [ - "01a85564-68d1-4f4a-8630-193cd74133f7" + "7c7068d5-0032-4103-8cf8-ab345b2f92fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041232Z:01a85564-68d1-4f4a-8630-193cd74133f7" + "WESTUS2:20190411T021209Z:7c7068d5-0032-4103-8cf8-ab345b2f92fc" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:12:08 GMT" + ], "Content-Length": [ - "1007" + "981" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1069,61 +1189,61 @@ "-1" ] }, - "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/openApiid3170\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid3170\",\r\n \"properties\": {\r\n \"displayName\": \"apiname9535\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription7546\",\r\n \"serviceUrl\": \"http://newechoapi2.cloudapp.net/api\",\r\n \"path\": \"newOpenapiPath\",\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\": \"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}", + "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/openApiid1142\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid1142\",\r\n \"properties\": {\r\n \"displayName\": \"apiname1248\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3954\",\r\n \"serviceUrl\": \"http://newechoapi2.cloudapp.net/api\",\r\n \"path\": \"newOpenapiPath\",\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\": \"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=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/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", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzPyUyNHRvcD0xJmFwaS12ZXJzaW9uPTIwMTgtMDEtMDEmZXhwYW5kQXBpVmVyc2lvblNldD1mYWxzZSYlMjRza2lwPTE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?%24top=1&api-version=2019-01-01&%24skip=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzPyUyNHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDEmJTI0c2tpcD0x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c3cb952-f399-4add-a609-5f3be14e9823" + "805c18d6-3737-47ab-83fd-bd975ecfdf54" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "efe19cef-fca8-4a46-916e-99839ef75487" + "c3bb96df-c726-4ad2-a5f6-c5cd2ed63b82" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11982" ], "x-ms-correlation-request-id": [ - "e3e22c86-82d6-473c-b185-cd3c8de166e6" + "f80ed86e-b0cf-4516-8a3b-4fa1d639775d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041232Z:e3e22c86-82d6-473c-b185-cd3c8de166e6" + "WESTUS2:20190411T021209Z:f80ed86e-b0cf-4516-8a3b-4fa1d639775d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:12:09 GMT" + ], "Content-Length": [ - "945" + "919" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1132,125 +1252,125 @@ "-1" ] }, - "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=2\"\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\",\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=2019-01-01&%24skip=2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid9563?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkOTU2Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMzM5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d53f9627-16c2-40bf-b9a2-aaa59d2becd4" + "9c1e182c-9b2b-45b1-acbb-dda64a1559a8" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:33 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d87f4387-44be-4a22-ab29-f3311bf87d3c" + "e7d5ff77-4da0-412d-92a4-09fe28343583" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "7539be7f-0063-4300-8b4e-bba8a65662be" + "5a57a55c-d3c0-4e33-8506-38d830df113f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041234Z:7539be7f-0063-4300-8b4e-bba8a65662be" + "WESTUS2:20190411T021209Z:5a57a55c-d3c0-4e33-8506-38d830df113f" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:12:09 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid9563?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkOTU2Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid3399?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMzM5OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c3d3442-bade-4b30-8f8d-34a866bdd334" + "4263cc7b-979f-4843-8ba9-090b46f985c1" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5360126e-d98f-4254-8835-84a6938525a5" + "6a3610b0-f640-4fb9-9e73-370961156289" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14995" ], "x-ms-correlation-request-id": [ - "8f8e7dbf-af06-4010-a64e-11404bcf1c09" + "3d945bfb-fc99-42ab-8bf9-b62555d8eceb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041234Z:8f8e7dbf-af06-4010-a64e-11404bcf1c09" + "WESTUS2:20190411T021210Z:3d945bfb-fc99-42ab-8bf9-b62555d8eceb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:12:10 GMT" + ], "Expires": [ "-1" ] @@ -1259,121 +1379,121 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid3170?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL29wZW5BcGlpZDMxNzA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid1142?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL29wZW5BcGlpZDExNDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ad0aa49-dd7b-4da1-8885-2d50ac3cae25" + "6f30be32-88e5-43ad-899f-d02f53ee3e2a" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:33 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "17479dbc-7bc3-4e95-b110-dac791e24f74" + "e29203be-d6e2-43e3-b9b2-b15c44bbf8b4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14996" ], "x-ms-correlation-request-id": [ - "c33ddc7b-c346-4932-abfb-d819eee79fbc" + "59f7af2d-b811-4c2c-91fa-c9f9de3e1e71" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041234Z:c33ddc7b-c346-4932-abfb-d819eee79fbc" + "WESTUS2:20190411T021210Z:59f7af2d-b811-4c2c-91fa-c9f9de3e1e71" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:12:09 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid3170?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL29wZW5BcGlpZDMxNzA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/openApiid1142?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL29wZW5BcGlpZDExNDI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01ce5758-25f1-4d48-862b-4d9e44310b75" + "eafc73b3-0583-49ae-a631-7d8a28bb7bf6" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "848cd51e-dae8-46de-8261-93d7b7a89a5d" + "4ea425dc-a5c8-42c9-bce3-20312ad7c1c1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14993" ], "x-ms-correlation-request-id": [ - "f3fad38b-882c-46a7-9743-8cfbb4729c69" + "9d3924cd-a13a-4059-aef8-f0bd1a077c2f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041235Z:f3fad38b-882c-46a7-9743-8cfbb4729c69" + "WESTUS2:20190411T021210Z:9d3924cd-a13a-4059-aef8-f0bd1a077c2f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:12:10 GMT" + ], "Expires": [ "-1" ] @@ -1382,126 +1502,126 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId3053?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRob3JpemF0aW9uU2VydmVySWQzMDUzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId9105?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRob3JpemF0aW9uU2VydmVySWQ5MTA1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2747a371-5f3a-4b34-90d0-40a98d2dd2f8" + "3afea03a-99b6-4a7b-9e0b-cd08c19e2550" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b445cccc-1654-426e-bc9b-902e0d10d3bf" + "fc43f777-26d1-4329-b2ef-0c43f9b6de1b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14994" ], "x-ms-correlation-request-id": [ - "fb88f764-5a37-4968-9398-4d508bb6cb22" + "2e005bec-e82d-4a33-866e-891c23f81112" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041235Z:fb88f764-5a37-4968-9398-4d508bb6cb22" + "WESTUS2:20190411T021210Z:2e005bec-e82d-4a33-866e-891c23f81112" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:12:10 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId5763?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU3NjM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId549?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU0OT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d1c21d9-c59a-4b40-9ac0-9e71fb5b2292" + "8e3b6f70-14c1-4f25-ad74-e7c58996ef92" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "68800056-a9ad-4895-a952-78872becb445" + "921a8361-da38-495e-b79f-6d00b5f4b39b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14992" ], "x-ms-correlation-request-id": [ - "6d4c0c47-d180-4072-b793-645191718ff0" + "89459161-1a23-4779-ad3f-45a6d5cd2654" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041236Z:6d4c0c47-d180-4072-b793-645191718ff0" + "WESTUS2:20190411T021211Z:89459161-1a23-4779-ad3f-45a6d5cd2654" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:12:10 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -1510,30 +1630,30 @@ ], "Names": { "CreateListUpdateDelete": [ - "authorizationServerId3053", - "apiid9563", - "openApiid3170", - "openId5763", - "authName3979", - "oauth2scope9701", - "clientid1430", - "apiname8910", - "apidescription8868", - "header9922", - "query9738", - "oauth2scope2577", - "patchedname8151", - "patchedDescription6549", - "patchedPath5807", - "openIdName7382", - "clientId7791", - "apiname9535", - "apidescription7546", - "oauth2scope2077" + "authorizationServerId9105", + "apiid3399", + "openApiid1142", + "openId549", + "authName5050", + "oauth2scope6785", + "clientid5208", + "apiname4512", + "apidescription3785", + "header5282", + "query7206", + "oauth2scope8999", + "patchedname2889", + "patchedDescription108", + "patchedPath4462", + "openIdName8322", + "clientId3533", + "apiname1248", + "apidescription3954", + "oauth2scope7820" ], "GetOpenIdMetadataEndpointUrl": [ - "provider4557", - "endpoint5476" + "provider4888", + "endpoint4150" ] }, "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 57b81a0db46a..086cc3ff2646 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "79ef53ff-5573-4550-b863-c3fe22464246" + "b076a0a5-805f-499d-aa1b-05c85316b6fb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:45:53 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAE5C/M=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "00bcf654-752d-4199-b653-3e7e35d13442", - "771d3470-9250-4bc7-879f-ae3e2e583309" + "9675921e-0f22-427b-9c3c-699de5638249", + "b52197b7-a5f3-4f4e-a2a6-bc8be7872b71" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1192" ], "x-ms-correlation-request-id": [ - "94d80940-7e89-4ed9-9443-a96fae26b84a" + "86061fd4-b400-46b3-a208-3f8342375551" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184553Z:94d80940-7e89-4ed9-9443-a96fae26b84a" + "WESTUS2:20190411T020935Z:86061fd4-b400-46b3-a208-3f8342375551" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:35 GMT" + ], "Content-Length": [ - "1755" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAE5C/M=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\"\r\n },\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc7eb32f-8cb8-4c2e-92de-d23a114b641c" + "92974a15-caff-4340-8444-da1d124edd30" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:45:54 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAE5C/M=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c025fcaf-a811-4b27-b39a-1e52f7e58ba6" + "1395184c-d92d-4cf1-8c0e-b00fc72b014f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11979" ], "x-ms-correlation-request-id": [ - "6bb561b4-54d5-4700-9ced-9602882c9aa5" + "78c8272d-768c-4744-8efe-803405eb070e" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184554Z:6bb561b4-54d5-4700-9ced-9602882c9aa5" + "WESTUS2:20190411T020935Z:78c8272d-768c-4744-8efe-803405eb070e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:35 GMT" + ], "Content-Length": [ - "1755" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "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\": \"AAAAAAE5C/M=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\"\r\n },\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlWZXJzaW9uU2V0cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5cf0033-cd23-489e-9c05-67c45fcc41f0" + "4ff0593f-297e-4ed5-bded-afe225790800" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:45:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "faf80d98-0be2-4f3f-8222-a20511591cee" + "a3e6e674-7b9d-41de-b292-800475991cdb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11978" ], "x-ms-correlation-request-id": [ - "f2005b1b-5819-454d-8866-25cb3992aa40" + "05b3184c-dec4-40eb-ba33-58d34f2c88e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184554Z:f2005b1b-5819-454d-8866-25cb3992aa40" + "WESTUS2:20190411T020935Z:05b3184c-dec4-40eb-ba33-58d34f2c88e6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:35 GMT" + ], "Content-Length": [ - "38" + "19" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,70 +199,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid4951?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDQ5NTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets/apiversionsetid4456?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlWZXJzaW9uU2V0cy9hcGl2ZXJzaW9uc2V0aWQ0NDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"versionsetdescript6842\",\r\n \"versionHeaderName\": \"x-ms-sdk-version\",\r\n \"displayName\": \"versionset8103\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"versionsetdescript2628\",\r\n \"versionHeaderName\": \"x-ms-sdk-version\",\r\n \"displayName\": \"versionset189\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8ff55afb-f7aa-4d95-b02b-725cea6a45a2" + "98be8878-e8f8-409b-983c-3f69122373c6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "192" + "191" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:45:55 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAOBQ=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcS0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6550f3ae-4484-4da7-b3ff-f981c7edec38" + "37405215-7592-49cd-b9c6-e92d9bc3d9a0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1191" ], "x-ms-correlation-request-id": [ - "c8fcbc8e-90c5-4df3-b3ed-091851495622" + "bab68c5b-db59-46c9-891a-a4a36a882156" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184555Z:c8fcbc8e-90c5-4df3-b3ed-091851495622" + "WESTUS2:20190411T020936Z:bab68c5b-db59-46c9-891a-a4a36a882156" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:35 GMT" + ], "Content-Length": [ - "515" + "510" ], "Content-Type": [ "application/json; charset=utf-8" @@ -271,62 +271,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid4951\",\r\n \"type\": \"Microsoft.ApiManagement/service/api-version-sets\",\r\n \"name\": \"apiversionsetid4951\",\r\n \"properties\": {\r\n \"displayName\": \"versionset8103\",\r\n \"description\": \"versionsetdescript6842\",\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/apiVersionSets/apiversionsetid4456\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"apiversionsetid4456\",\r\n \"properties\": {\r\n \"displayName\": \"versionset189\",\r\n \"description\": \"versionsetdescript2628\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"x-ms-sdk-version\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid4951?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDQ5NTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets/apiversionsetid4456?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlWZXJzaW9uU2V0cy9hcGl2ZXJzaW9uc2V0aWQ0NDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4646cad2-9324-4737-ac7b-0c35f06641ac" + "d5999190-9e9c-4523-a1e6-422d4bc13a68" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:45:55 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAOBQ=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcS0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c14138e3-7162-45e1-a905-9ccf6188414d" + "2e117e00-5d95-4183-90e8-8782c5795528" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11977" ], "x-ms-correlation-request-id": [ - "8fa8b83a-fb90-40ee-afff-24daddb97b4f" + "c6b63453-8514-4b3d-b2da-cf0e67def47e" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184555Z:8fa8b83a-fb90-40ee-afff-24daddb97b4f" + "WESTUS2:20190411T020936Z:c6b63453-8514-4b3d-b2da-cf0e67def47e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:35 GMT" + ], "Content-Length": [ "0" ], @@ -338,58 +338,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid4951?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDQ5NTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets/apiversionsetid4456?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlWZXJzaW9uU2V0cy9hcGl2ZXJzaW9uc2V0aWQ0NDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8219e9d-68b0-4231-ac05-8d7e85249e38" + "fbc15faf-9565-4bcc-912d-34e599aad933" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:45:55 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAOBc=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcTA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fcd40db1-7655-46a0-b25c-1b0db7d5fac2" + "4404e3a0-e015-4b3e-b086-a3ff60d4498c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11975" ], "x-ms-correlation-request-id": [ - "1c2c346a-a6c3-418e-b355-7a6979a2464c" + "8bece617-3aca-4118-9088-83f527b5c9cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184556Z:1c2c346a-a6c3-418e-b355-7a6979a2464c" + "WESTUS2:20190411T020936Z:8bece617-3aca-4118-9088-83f527b5c9cd" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:36 GMT" + ], "Content-Length": [ "0" ], @@ -401,25 +401,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid4951?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDQ5NTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets/apiversionsetid4456?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlWZXJzaW9uU2V0cy9hcGl2ZXJzaW9uc2V0aWQ0NDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"versionQueryName\": \"x-ms-sdk-version\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "07338956-0581-4538-ba95-3567aeb8b974" + "00d4b357-8ce5-4a0d-92a3-f65d519f46df" ], "If-Match": [ - "\"AAAAAAAAOBQ=\"" + "\"AAAAAAAAcS0=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -432,33 +432,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:45:55 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cdbfac1b-ab6d-48ed-9746-d7e2d8df9833" + "a261e2a0-118c-4988-b7a2-973e352b3116" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1190" ], "x-ms-correlation-request-id": [ - "637a6552-83dc-4a40-be25-cd38f0705d15" + "fc43f54d-b9e0-46a8-9a35-cbe7a73d05d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184555Z:637a6552-83dc-4a40-be25-cd38f0705d15" + "WESTUS2:20190411T020936Z:fc43f54d-b9e0-46a8-9a35-cbe7a73d05d9" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:36 GMT" + ], "Expires": [ "-1" ] @@ -467,60 +467,60 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid4951?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDQ5NTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets/apiversionsetid4456?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlWZXJzaW9uU2V0cy9hcGl2ZXJzaW9uc2V0aWQ0NDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3bba44f-b9c9-48a8-a486-98adb097e333" + "c0a80ec6-efd4-41cb-8e87-e11b8ddbe261" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:45:55 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAOBc=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcTA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ee248eb0-2397-4cf8-a947-76103661bc36" + "83cc1a27-6959-4e74-b206-138d7cb88aa5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11976" ], "x-ms-correlation-request-id": [ - "cb573a00-5cbf-4da5-bb58-b5ff62b55734" + "7e2a46ed-882b-43d0-a1f2-06a93914b112" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184556Z:cb573a00-5cbf-4da5-bb58-b5ff62b55734" + "WESTUS2:20190411T020936Z:7e2a46ed-882b-43d0-a1f2-06a93914b112" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:36 GMT" + ], "Content-Length": [ - "528" + "523" ], "Content-Type": [ "application/json; charset=utf-8" @@ -529,59 +529,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid4951\",\r\n \"type\": \"Microsoft.ApiManagement/service/api-version-sets\",\r\n \"name\": \"apiversionsetid4951\",\r\n \"properties\": {\r\n \"displayName\": \"versionset8103\",\r\n \"description\": \"versionsetdescript6842\",\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/apiVersionSets/apiversionsetid4456\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"apiversionsetid4456\",\r\n \"properties\": {\r\n \"displayName\": \"versionset189\",\r\n \"description\": \"versionsetdescript2628\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"x-ms-sdk-version\",\r\n \"versionHeaderName\": \"x-ms-sdk-version\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid4951?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDQ5NTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets/apiversionsetid4456?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlWZXJzaW9uU2V0cy9hcGl2ZXJzaW9uc2V0aWQ0NDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e037b5e-d971-4982-8342-c9cd9ec43b51" + "f4108725-9cc2-4028-9055-94ec35f47aa8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:45:56 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a62bd74-68f2-48aa-a445-5a7a71b50e39" + "38d7df15-a324-477b-b457-2a721ef4758f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11974" ], "x-ms-correlation-request-id": [ - "efd860c9-6b36-402e-9db0-d0859fdba951" + "c98ea29d-d2d8-44ae-a525-4d10a81bf2b5" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184556Z:efd860c9-6b36-402e-9db0-d0859fdba951" + "WESTUS2:20190411T020937Z:c98ea29d-d2d8-44ae-a525-4d10a81bf2b5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:36 GMT" + ], "Content-Length": [ "91" ], @@ -596,121 +596,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid4951?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDQ5NTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets/apiversionsetid4456?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlWZXJzaW9uU2V0cy9hcGl2ZXJzaW9uc2V0aWQ0NDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5aa70f0-7b94-469e-9e2f-070a72080e67" + "b62cf8ee-de6d-43e5-82dd-4f813640509f" ], "If-Match": [ - "\"AAAAAAAAOBc=\"" + "\"AAAAAAAAcTA=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:45:56 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c8e7b22-949f-41f0-bdcd-a717dece5f23" + "f9f7908d-c529-4b81-a68a-e39646158171" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14990" + "14995" ], "x-ms-correlation-request-id": [ - "45135d27-9b4c-4b15-8cdd-7fb05ee79ed7" + "0c73d973-05cc-424f-9b2f-58830758a403" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184556Z:45135d27-9b4c-4b15-8cdd-7fb05ee79ed7" + "WESTUS2:20190411T020937Z:0c73d973-05cc-424f-9b2f-58830758a403" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:09:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid4951?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDQ5NTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apiVersionSets/apiversionsetid4456?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlWZXJzaW9uU2V0cy9hcGl2ZXJzaW9uc2V0aWQ0NDU2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "371c8827-d13d-4385-ac10-da52d7f85702" + "2f5f9054-b7c4-482b-8194-36da7a6b21c7" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.5.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 21 Nov 2018 18:45:56 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a7aef824-a518-470d-9029-a7ab5a8dcd41" + "6ce2306d-1ede-4018-aeb9-e0dfd23a2a51" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14989" + "14994" ], "x-ms-correlation-request-id": [ - "dc0d7c62-616c-4f67-a633-cfe620f678bc" + "86c6a1ad-344d-4687-aaca-cca9ae428dce" ], "x-ms-routing-request-id": [ - "WESTUS2:20181121T184556Z:dc0d7c62-616c-4f67-a633-cfe620f678bc" + "WESTUS2:20190411T020937Z:86c6a1ad-344d-4687-aaca-cca9ae428dce" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:37 GMT" + ], "Expires": [ "-1" ] @@ -721,9 +721,9 @@ ], "Names": { "CreateListUpdateDelete": [ - "apiversionsetid4951", - "versionset8103", - "versionsetdescript6842" + "apiversionsetid4456", + "versionset189", + "versionsetdescript2628" ] }, "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 04d832870ed6..ff23c1ed5f03 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a2deb96b-4adb-4923-9010-da2a6a658d7d" + "9dbdfbba-da6c-4b3a-9900-cc8f57526a7d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:14 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7cb3387c-817b-4eb6-924a-394cc7a42d73", - "58261769-c21f-4156-8fb3-e19827af4fe8" + "5a5e32bf-30a3-45ee-b17c-a5fca8633f27", + "9b60ae91-fea7-415d-a25b-4214533aba5e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "69970ec7-47ec-4107-bf91-99fca1cd7faa" + "6c84752a-128e-4ee7-ac2f-9aaa34abc018" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040714Z:69970ec7-47ec-4107-bf91-99fca1cd7faa" + "WESTUS2:20190411T021624Z:6c84752a-128e-4ee7-ac2f-9aaa34abc018" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:24 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5a1066d-72b3-48df-a0b5-a2d13a612258" + "ef5ba9b8-33f2-4182-b7ab-c93348f69c03" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:14 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d5b8c7c6-c185-4700-8e4e-239f95ae702f" + "dc3c5b20-8775-41a2-a233-a7f1a9c68f05" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11995" ], "x-ms-correlation-request-id": [ - "79b56831-6421-4649-937e-798f82a1657e" + "a4690134-181e-4cda-b568-87316286a5ef" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040714Z:79b56831-6421-4649-937e-798f82a1657e" + "WESTUS2:20190411T021624Z:a4690134-181e-4cda-b568-87316286a5ef" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:24 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa41ee7b-716c-4d72-9735-4f27ae50a682" + "4a169936-cd03-4eee-a9b4-62fc0a700b4e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "345b6697-7343-4bb2-92d7-eed8a0065ddc" + "69e01448-813e-457f-8199-d63f047fa351" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11994" ], "x-ms-correlation-request-id": [ - "addef05a-37f1-4e6e-a97f-8d8d81100c8e" + "821257c4-9fc6-4b31-b086-64aff8d8be79" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040714Z:addef05a-37f1-4e6e-a97f-8d8d81100c8e" + "WESTUS2:20190411T021624Z:821257c4-9fc6-4b31-b086-64aff8d8be79" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:24 GMT" + ], "Content-Length": [ "19" ], @@ -203,57 +203,57 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9adbeb35-e869-4c65-b680-3841d15675a7" + "b7027f4c-7c12-4621-beaa-68979ed2ba04" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:15 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ebdebb6-6dc5-4145-9242-3fc1c46eeb99" + "593e6023-e2e5-4e86-b53d-23c014e3b4bb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11992" ], "x-ms-correlation-request-id": [ - "08e18b48-3c2d-4496-b1ed-d5ed23b862c1" + "bfaabe3c-a23d-4cbe-8e0e-84b4c797577f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040715Z:08e18b48-3c2d-4496-b1ed-d5ed23b862c1" + "WESTUS2:20190411T021625Z:bfaabe3c-a23d-4cbe-8e0e-84b4c797577f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:25 GMT" + ], "Content-Length": [ - "1468" + "1467" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,70 +262,70 @@ "-1" ] }, - "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/authsid1449\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid1449\",\r\n \"properties\": {\r\n \"displayName\": \"authName4492\",\r\n \"description\": \"authdescription5670\",\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\": \"tokenname2148\",\r\n \"value\": \"tokenvalue4322\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope4141\",\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\": \"clientid1334\",\r\n \"clientSecret\": \"authclientsecret8519\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername6694\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd4862\"\r\n }\r\n }\r\n ]\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/authsid6876\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid6876\",\r\n \"properties\": {\r\n \"displayName\": \"authName823\",\r\n \"description\": \"authdescription9674\",\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\": \"tokenname2079\",\r\n \"value\": \"tokenvalue7528\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope6309\",\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\": \"clientid2297\",\r\n \"clientSecret\": \"authclientsecret7354\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername3598\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd3594\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid1449?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkMTQ0OT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjg3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"authdescription5670\",\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\": \"tokenname2148\",\r\n \"value\": \"tokenvalue4322\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope4141\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientSecret\": \"authclientsecret8519\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername6694\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd4862\",\r\n \"displayName\": \"authName4492\",\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\": \"clientid1334\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"authdescription9674\",\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\": \"tokenname2079\",\r\n \"value\": \"tokenvalue7528\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope6309\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientSecret\": \"authclientsecret7354\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername3598\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd3594\",\r\n \"displayName\": \"authName823\",\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\": \"clientid2297\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4b3390b0-1373-4194-b364-6804bbe347f4" + "6fca3b5f-057f-4a40-9987-216520bbafbf" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "999" + "998" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:15 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZBc=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcis=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0bf55413-f518-4cef-9210-1af6a03b397e" + "f34d4900-e0c3-4d30-a176-8b009a71e11a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "ccb620a6-c671-4dc5-95c4-ab2c8bd6d9c9" + "76070156-4729-400f-a5af-aec578d3635c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040715Z:ccb620a6-c671-4dc5-95c4-ab2c8bd6d9c9" + "WESTUS2:20190411T021625Z:76070156-4729-400f-a5af-aec578d3635c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:25 GMT" + ], "Content-Length": [ - "1283" + "1282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,64 +334,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid1449\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid1449\",\r\n \"properties\": {\r\n \"displayName\": \"authName4492\",\r\n \"description\": \"authdescription5670\",\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\": \"tokenname2148\",\r\n \"value\": \"tokenvalue4322\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope4141\",\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\": \"clientid1334\",\r\n \"clientSecret\": \"authclientsecret8519\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername6694\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd4862\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid6876\",\r\n \"properties\": {\r\n \"displayName\": \"authName823\",\r\n \"description\": \"authdescription9674\",\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\": \"tokenname2079\",\r\n \"value\": \"tokenvalue7528\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope6309\",\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\": \"clientid2297\",\r\n \"clientSecret\": \"authclientsecret7354\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername3598\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd3594\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid1449?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkMTQ0OT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjg3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e1a4bf3-9474-4403-82ea-3b1b3ae0afd1" + "90faabe4-08f1-4657-92d5-d640e02a71b3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:15 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZBc=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcis=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54287a61-06a6-4001-83c0-3c6febbff29a" + "36259034-31e9-438a-9d1b-d758dd60dd8d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11993" ], "x-ms-correlation-request-id": [ - "82c7e3e5-c7cb-41a4-95a2-1b5791b2d004" + "5aa0ae0f-4ba1-44f6-8df5-6de6f0d3110e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040715Z:82c7e3e5-c7cb-41a4-95a2-1b5791b2d004" + "WESTUS2:20190411T021625Z:5aa0ae0f-4ba1-44f6-8df5-6de6f0d3110e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:25 GMT" + ], "Content-Length": [ - "1283" + "1282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -400,64 +400,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid1449\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid1449\",\r\n \"properties\": {\r\n \"displayName\": \"authName4492\",\r\n \"description\": \"authdescription5670\",\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\": \"tokenname2148\",\r\n \"value\": \"tokenvalue4322\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope4141\",\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\": \"clientid1334\",\r\n \"clientSecret\": \"authclientsecret8519\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername6694\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd4862\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid6876\",\r\n \"properties\": {\r\n \"displayName\": \"authName823\",\r\n \"description\": \"authdescription9674\",\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\": \"tokenname2079\",\r\n \"value\": \"tokenvalue7528\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope6309\",\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\": \"clientid2297\",\r\n \"clientSecret\": \"authclientsecret7354\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername3598\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd3594\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid1449?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkMTQ0OT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjg3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c80aab4-9553-4222-891e-da34e110f90e" + "e711661d-f5f1-4bfa-acd5-400235010e25" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:15 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZBg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAciw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "139be0e2-1b3e-4fac-a96c-9f1699c33cd5" + "af8ecc59-aeec-41db-ae3c-39f6a1e9ad85" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11991" ], "x-ms-correlation-request-id": [ - "990c5829-96bf-458d-86a4-7fd46c05a301" + "30f2e138-737c-43bb-9685-d35a522bdfc6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040715Z:990c5829-96bf-458d-86a4-7fd46c05a301" + "WESTUS2:20190411T021625Z:30f2e138-737c-43bb-9685-d35a522bdfc6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:25 GMT" + ], "Content-Length": [ - "1264" + "1263" ], "Content-Type": [ "application/json; charset=utf-8" @@ -466,59 +466,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid1449\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid1449\",\r\n \"properties\": {\r\n \"displayName\": \"authName4492\",\r\n \"description\": \"authdescription5670\",\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\": \"tokenname2148\",\r\n \"value\": \"tokenvalue4322\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope4141\",\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\": \"clientid1334\",\r\n \"clientSecret\": \"authclientsecret8519\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername6694\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd4862\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid6876\",\r\n \"properties\": {\r\n \"displayName\": \"authName823\",\r\n \"description\": \"authdescription9674\",\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\": \"tokenname2079\",\r\n \"value\": \"tokenvalue7528\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope6309\",\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\": \"clientid2297\",\r\n \"clientSecret\": \"authclientsecret7354\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername3598\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd3594\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid1449?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkMTQ0OT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjg3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de07796d-e228-4c98-b90d-6dcd7eae4386" + "ef6e7e33-1f90-40ac-ad2f-8195799269d6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:16 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fc4d83ac-18f3-4b77-82fe-5321ae6d4bb5" + "7cbf64ff-b3ff-4080-b228-741fb269bbb3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11990" ], "x-ms-correlation-request-id": [ - "82bf110d-6239-4b09-bce1-9f9aea21a297" + "a76e0703-5a34-4a85-9ce1-d6374ee52c48" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040716Z:82bf110d-6239-4b09-bce1-9f9aea21a297" + "WESTUS2:20190411T021626Z:a76e0703-5a34-4a85-9ce1-d6374ee52c48" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:26 GMT" + ], "Content-Length": [ "101" ], @@ -533,25 +533,25 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid1449?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkMTQ0OT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjg3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"resourceOwnerPassword\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c24a5a50-9685-44b4-b939-7f33fef18a41" + "91e2e8a1-4fb4-43e4-9ea2-518613225de0" ], "If-Match": [ - "\"AAAAAAAAZBc=\"" + "\"AAAAAAAAcis=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,33 +564,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:15 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f5169166-7b81-43f9-81ae-dbeb8ff851f8" + "c0c1bc4b-92ba-4a43-af12-abf897619685" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1195" ], "x-ms-correlation-request-id": [ - "d88c2d3d-fc22-41c8-8f45-0375909789b9" + "ce36321f-6222-41c7-9c7e-7a05371cdb54" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040715Z:d88c2d3d-fc22-41c8-8f45-0375909789b9" + "WESTUS2:20190411T021625Z:ce36321f-6222-41c7-9c7e-7a05371cdb54" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:25 GMT" + ], "Expires": [ "-1" ] @@ -599,121 +599,121 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid1449?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkMTQ0OT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjg3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ba7234b-0fb0-4117-a290-e3dabdfc85e9" + "a52e2e8d-74e7-4a80-b9b5-512c042f629a" ], "If-Match": [ - "\"AAAAAAAAZBg=\"" + "\"AAAAAAAAciw=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:16 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7645b66f-c51d-418e-9b14-0e6a3e32c11d" + "2a3bb7b5-7b45-4a34-8936-7457e9119c52" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "b4d4049c-353f-4316-9d62-96e67f07174e" + "16e3eb2d-12a8-43c8-993e-c59957a8a1d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040716Z:b4d4049c-353f-4316-9d62-96e67f07174e" + "WESTUS2:20190411T021626Z:16e3eb2d-12a8-43c8-993e-c59957a8a1d5" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:16:26 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid1449?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkMTQ0OT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6876?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjg3Nj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9b36c08-7afe-4ec8-b0f5-b4cfc678ce81" + "68d68e0b-2a4b-4f77-ac6e-d55dc01a7bb1" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:16 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2d936bfe-248d-4782-996f-e719b94d8b27" + "32bbe087-ca64-474a-b24d-775686584f42" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14997" ], "x-ms-correlation-request-id": [ - "bb116ef8-a8d2-48a8-bd1e-e1a965a54779" + "384d8e1e-6d83-421e-a999-214356c5e902" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040716Z:bb116ef8-a8d2-48a8-bd1e-e1a965a54779" + "WESTUS2:20190411T021626Z:384d8e1e-6d83-421e-a999-214356c5e902" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:26 GMT" + ], "Expires": [ "-1" ] @@ -724,16 +724,16 @@ ], "Names": { "CreateListUpdateDelete": [ - "authsid1449", - "authName4492", - "oauth2scope4141", - "clientid1334", - "authdescription5670", - "authclientsecret8519", - "authresourceownerpwd4862", - "authresourceownerusername6694", - "tokenname2148", - "tokenvalue4322" + "authsid6876", + "authName823", + "oauth2scope6309", + "clientid2297", + "authdescription9674", + "authclientsecret7354", + "authresourceownerpwd3594", + "authresourceownerusername3598", + "tokenname2079", + "tokenvalue7528" ] }, "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 59142a3a7806..e8b92b0c1cc2 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "64b13cd5-7524-4bc0-acc3-1ba8f25fcd62" + "0f503ef4-bca2-46cf-8991-80e4cfc26c5e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:47 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "60fb3836-aa1c-4643-ad68-d22b35e424d7", - "8b2ca7d2-f61f-453b-9771-ff874f6b6cd2" + "3f17722b-d988-4b81-8780-bdd0d61f839f", + "15153419-556f-4fef-aed8-a18a25716935" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "a0c48663-ee7b-4713-9bc6-b96e1e974525" + "bb973d3d-8d3e-4170-aac7-30ba12106906" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041248Z:a0c48663-ee7b-4713-9bc6-b96e1e974525" + "WESTUS2:20190411T020425Z:bb973d3d-8d3e-4170-aac7-30ba12106906" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:25 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62a78d04-ee68-43ac-92d9-24f60da13e3d" + "1405c567-cdda-4af3-8826-03a76402ffc7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:47 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a662ce68-687d-444b-861e-aa9a14db9355" + "0941eab0-41d7-45e5-9e36-afee2b08fc4c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "347d1166-6718-4916-9b4e-d032211acf1c" + "88150745-258b-4384-8e13-433ef045058d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041248Z:347d1166-6718-4916-9b4e-d032211acf1c" + "WESTUS2:20190411T020426Z:88150745-258b-4384-8e13-433ef045058d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:25 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6362?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ2MzYyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQyNzA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description4641\",\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://backendname6351/\",\r\n \"protocol\": \"http\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description9758\",\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://backendname5060/\",\r\n \"protocol\": \"http\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "71678da7-95ab-4ed3-83ac-3754f1c1db5b" + "9fbbaf01-fe3b-429f-a08e-6538a50b1b33" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,36 +168,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:48 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZSM=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcCU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91589f1a-b51d-4190-a8f9-370aaaebe653" + "3242bd13-17dc-4953-8662-239c25cc6757" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "3ad158c9-6ed0-4c09-8440-c19086f67b4e" + "86060c3f-c9ae-4327-8dde-266b09e7dd40" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041249Z:3ad158c9-6ed0-4c09-8440-c19086f67b4e" + "WESTUS2:20190411T020427Z:86060c3f-c9ae-4327-8dde-266b09e7dd40" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:27 GMT" + ], "Content-Length": [ "849" ], @@ -208,62 +208,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6362\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid6362\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description4641\",\r\n \"url\": \"https://backendname6351/\",\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/backendid2704\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid2704\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description9758\",\r\n \"url\": \"https://backendname5060/\",\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}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6362?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ2MzYyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQyNzA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8558a5d3-82af-4922-944f-2b9c59eb5ec8" + "0592583e-9809-475f-ba93-44b3791584f1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:48 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZSM=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcCU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ad0230d3-2f68-4227-9de2-6669827e56ae" + "0b3eaed3-bc40-4cf5-b09a-6f3819025658" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "2c24b0b2-a165-4c13-9a71-48d20ab79743" + "4527e3b3-77ec-45a7-b892-dac947784e1b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041249Z:2c24b0b2-a165-4c13-9a71-48d20ab79743" + "WESTUS2:20190411T020427Z:4527e3b3-77ec-45a7-b892-dac947784e1b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:27 GMT" + ], "Content-Length": [ "849" ], @@ -274,62 +274,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6362\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid6362\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description4641\",\r\n \"url\": \"https://backendname6351/\",\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/backendid2704\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid2704\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description9758\",\r\n \"url\": \"https://backendname5060/\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6362?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ2MzYyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQyNzA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba000c6d-eee2-45c4-920d-5356e44b6b80" + "a82a7fd4-c84b-4d24-ace4-32f92344840e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:48 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZSU=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcCc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f543a450-e1d2-451f-b0c8-96343b952a7b" + "2dbb82bc-6c75-44bc-914f-50dc82870089" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "ac8e3dcc-eb49-46af-9c62-969b53bf7a3d" + "2090df9f-6300-49fb-991e-73585ae330cb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041249Z:ac8e3dcc-eb49-46af-9c62-969b53bf7a3d" + "WESTUS2:20190411T020427Z:2090df9f-6300-49fb-991e-73585ae330cb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:27 GMT" + ], "Content-Length": [ "856" ], @@ -340,59 +340,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6362\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid6362\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"patchedDescription3605\",\r\n \"url\": \"https://backendname6351/\",\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/backendid2704\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid2704\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"patchedDescription1865\",\r\n \"url\": \"https://backendname5060/\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6362?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ2MzYyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQyNzA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01ec09d4-2b97-48b8-94df-1abd3ed97071" + "6b0facfe-1242-419f-8aa8-0c15cafc19f2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "74252b14-09bd-4057-a8eb-1da8d9f3562f" + "f19b1740-8b4f-4564-80b3-f3c8584a2cdf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "b4817ce4-e426-48aa-8de7-e4f2a08089f8" + "cf13088b-04ac-4fe3-a43c-4c090791ae31" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041250Z:b4817ce4-e426-48aa-8de7-e4f2a08089f8" + "WESTUS2:20190411T020428Z:cf13088b-04ac-4fe3-a43c-4c090791ae31" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:28 GMT" + ], "Content-Length": [ "83" ], @@ -407,55 +407,55 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "886662ce-12cb-4e71-8e1a-afa90298aca1" + "654592e7-ef5a-42aa-a143-d70e2840bedc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "061266c7-6b6f-4696-9cd5-b61d0ecf6f5c" + "07e88e8c-ab7a-4474-abd9-91fb2bc8d97c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "55cb28b4-c6ef-4ebf-91ed-40fa350e4e1f" + "4e902cc3-5c16-4eef-8185-c6fb1445733d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041249Z:55cb28b4-c6ef-4ebf-91ed-40fa350e4e1f" + "WESTUS2:20190411T020427Z:4e902cc3-5c16-4eef-8185-c6fb1445733d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:27 GMT" + ], "Content-Length": [ "1010" ], @@ -466,62 +466,62 @@ "-1" ] }, - "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/backendid6362\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid6362\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description4641\",\r\n \"url\": \"https://backendname6351/\",\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}", + "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/backendid2704\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid2704\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description9758\",\r\n \"url\": \"https://backendname5060/\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6362?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ2MzYyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQyNzA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05ffac20-db53-47e8-8801-682ec693d0e3" + "9d25b1a6-007f-4965-8eb9-9dcd2f5401e7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:48 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZSM=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcCU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "94fd3606-6a0e-4b40-9a8f-6610d7493e7f" + "241570e3-1fd0-48f4-93cb-558e906f899d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "cf6aeddb-9257-4f19-8fee-4e0e949eadc6" + "c90630c2-b6c4-4e2d-8f59-97910161900b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041249Z:cf6aeddb-9257-4f19-8fee-4e0e949eadc6" + "WESTUS2:20190411T020427Z:c90630c2-b6c4-4e2d-8f59-97910161900b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:27 GMT" + ], "Content-Length": [ "0" ], @@ -533,58 +533,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6362?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ2MzYyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQyNzA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7986811d-70b0-4cf3-acb3-bcd893d16fc1" + "0f2d9b07-efdb-4b62-977c-229ec12b66d9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:48 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZSU=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcCc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e33901e-30e6-4e5d-80d6-37a45a570783" + "5c041ea0-3786-48e6-ab96-2ab3493740bd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "6217e9c8-60ce-4a55-82db-c8e6f4de962a" + "519b441a-095a-4eea-aff8-b5530165aba1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041249Z:6217e9c8-60ce-4a55-82db-c8e6f4de962a" + "WESTUS2:20190411T020427Z:519b441a-095a-4eea-aff8-b5530165aba1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:27 GMT" + ], "Content-Length": [ "0" ], @@ -596,25 +596,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6362?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ2MzYyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQyNzA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription3605\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription1865\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "88a4795b-a262-4aa1-8ede-67d943fd8b06" + "00d6b463-7a14-4033-929a-bbfffff5ee42" ], "If-Match": [ - "\"AAAAAAAAZSM=\"" + "\"AAAAAAAAcCU=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,33 +627,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f86d418-d53c-423e-8393-1282f8e3fc83" + "946594d9-7282-4c9d-a68c-c2e6f1ecba3c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "a580e26c-db7b-4a11-b3b3-c9915e63c8a0" + "d779db2f-95e3-4427-86e4-e79d2eda95fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041249Z:a580e26c-db7b-4a11-b3b3-c9915e63c8a0" + "WESTUS2:20190411T020427Z:d779db2f-95e3-4427-86e4-e79d2eda95fe" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:27 GMT" + ], "Expires": [ "-1" ] @@ -662,121 +662,121 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6362?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ2MzYyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQyNzA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad6702f8-d856-4902-8711-1295cf5b7ad2" + "3b53def1-0191-42b2-915e-c9393e298278" ], "If-Match": [ - "\"AAAAAAAAZSU=\"" + "\"AAAAAAAAcCc=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "77de3789-25fa-48d0-9408-912cd35c2e3d" + "5cb134a8-0b56-453b-8486-2dcee6dc7a78" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "3d622685-32a7-45f9-a3b4-e7cad7cb4fc8" + "a7bc31d3-e8be-48a1-b0d7-920bb72b427f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041250Z:3d622685-32a7-45f9-a3b4-e7cad7cb4fc8" + "WESTUS2:20190411T020428Z:a7bc31d3-e8be-48a1-b0d7-920bb72b427f" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:04:28 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6362?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ2MzYyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid2704?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQyNzA0P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b133bbbf-b16a-48b2-87e5-9edc7fa8d078" + "7aedc529-af69-4fdb-9872-0cdad5e46913" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7026c292-c250-49e3-acbf-cd71ee3440cb" + "5667342d-691d-4c8b-b5d8-06ab14d8ef36" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "35af987c-38e0-48fe-8ab3-30ae508f11e5" + "7609cd43-c45a-4fc8-be8a-e9e08dc38a86" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041251Z:35af987c-38e0-48fe-8ab3-30ae508f11e5" + "WESTUS2:20190411T020428Z:7609cd43-c45a-4fc8-be8a-e9e08dc38a86" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:28 GMT" + ], "Expires": [ "-1" ] @@ -787,10 +787,10 @@ ], "Names": { "CreateListUpdateDelete": [ - "backendid6362", - "backendName6351", - "description4641", - "patchedDescription3605" + "backendid2704", + "backendName5060", + "description9758", + "patchedDescription1865" ] }, "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 8d0fdfca9ca9..f119c804a5fb 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a35ccbd8-dff3-4d88-a535-2363db0aadcf" + "26cbe36f-3541-48d8-8464-9623ad80cfb5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:51 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e7f6ceb9-7a61-413f-b7f6-955b52b10be1", - "84db6922-daca-4712-bc37-b44b8643a36a" + "2355caf0-0d1d-4b39-95ce-92facd205aec", + "2b60490a-641d-4a9c-a398-599e66967a03" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "77762b73-62aa-45ad-a258-02392464b376" + "39a4b22d-59e2-4bc7-a120-87eed782244d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041252Z:77762b73-62aa-45ad-a258-02392464b376" + "WESTUS2:20190411T020429Z:39a4b22d-59e2-4bc7-a120-87eed782244d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:29 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c30183e-5501-48ef-859d-12904b4cf35f" + "10b2f25a-b6dd-4730-ad75-e88cfdb7e806" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:51 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b4fe79ae-f0b0-4fbd-a56e-8b4318f978b3" + "792c621a-b480-419a-8b1a-1c73f9f3002d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "68b2794f-a38a-4824-b517-ffd910d849d2" + "69fdff4b-30a0-415e-a1db-66dd19ee79f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041252Z:68b2794f-a38a-4824-b517-ffd910d849d2" + "WESTUS2:20190411T020430Z:69fdff4b-30a0-415e-a1db-66dd19ee79f4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:29 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId1181?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDExODE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId8019?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDgwMTk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "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": { "x-ms-client-request-id": [ - "56e31d93-03da-4daf-9436-715813f8ec56" + "b0df6a10-2c59-4a8d-ad12-218e38e0764d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,36 +168,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:52 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZSw=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcC0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1e834506-1076-4fa5-b6ae-fdba1dd82249" + "e61d31ce-d74c-4824-a2f1-42eadb8509b3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "c682689a-180c-48ff-94fb-4738b117e52d" + "7db4c185-13a8-44e8-b412-6f705d7312c4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041253Z:c682689a-180c-48ff-94fb-4738b117e52d" + "WESTUS2:20190411T020431Z:7db4c185-13a8-44e8-b412-6f705d7312c4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:30 GMT" + ], "Content-Length": [ "456" ], @@ -208,26 +208,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId1181\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId1181\",\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/certificateId8019\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId8019\",\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}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend2307?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQyMzA3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ4NzUzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description1834\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"clientCertificatethumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"maxPartitionResolutionRetries\": 5,\r\n \"managementEndpoints\": [\r\n \"https://backendname6238/\"\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://backendname6238/\",\r\n \"protocol\": \"http\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description8641\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"clientCertificatethumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"maxPartitionResolutionRetries\": 5,\r\n \"managementEndpoints\": [\r\n \"https://backendname7751/\"\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://backendname7751/\",\r\n \"protocol\": \"http\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "241fb4e9-9c32-4113-a826-ca0974879b3c" + "91f6a5f8-4cbb-4a03-83b3-736eef8e12f4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -240,36 +240,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:52 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZS8=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcDA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0933d6d-7628-4e3c-a8e3-859d73b357e6" + "b0cd916e-3f46-4fe1-b845-634e1ce99774" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "c2d21137-be69-424b-b022-4dca0dc3f638" + "dd61a11b-43f6-41e3-986c-68e45cd78962" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041253Z:c2d21137-be69-424b-b022-4dca0dc3f638" + "WESTUS2:20190411T020431Z:dd61a11b-43f6-41e3-986c-68e45cd78962" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:31 GMT" + ], "Content-Length": [ "872" ], @@ -280,59 +280,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend2307\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"sfbackend2307\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description1834\",\r\n \"url\": \"https://backendname6238/\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://backendname6238/\"\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/sfbackend8753\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"sfbackend8753\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description8641\",\r\n \"url\": \"https://backendname7751/\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://backendname7751/\"\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}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12429f4c-8b65-4cda-80f7-6deabc55b147" + "f0a6e9ca-f810-40f5-9a8d-08dbd8edca04" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2c211b7b-90c1-4214-82e1-8c6ce8311264" + "47dd777a-95ac-4017-bc46-72da847237b2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "2dc25d2e-2714-465f-8c3e-37eaeb1cbf94" + "516d4d25-ba2e-43ad-b50b-0cd66d89c990" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041253Z:2dc25d2e-2714-465f-8c3e-37eaeb1cbf94" + "WESTUS2:20190411T020431Z:516d4d25-ba2e-43ad-b50b-0cd66d89c990" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:31 GMT" + ], "Content-Length": [ "1001" ], @@ -343,26 +343,26 @@ "-1" ] }, - "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/sfbackend2307\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"sfbackend2307\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description1834\",\r\n \"url\": \"https://backendname6238/\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://backendname6238/\"\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}", + "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/sfbackend8753\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"sfbackend8753\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description8641\",\r\n \"url\": \"https://backendname7751/\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://backendname7751/\"\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend2307/reconnect?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQyMzA3L3JlY29ubmVjdD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753/reconnect?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ4NzUzL3JlY29ubmVjdD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"properties\": {\r\n \"after\": \"PT5M\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b8f9f6b2-3d28-46b7-abb3-b9e06aa68991" + "7aa873d7-3a45-46ad-838e-757cc479ccc9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,63 +375,63 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bbec8f3b-bae7-4011-94f6-4d83346fa73e" + "31b0eb3d-67fd-4929-91ec-9bbd33833a02" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "e746674b-fc42-4342-97f2-df2dfbdecab4" + "f43c3163-7f24-4123-ba13-dc5c308f169d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041253Z:e746674b-fc42-4342-97f2-df2dfbdecab4" + "WESTUS2:20190411T020432Z:f43c3163-7f24-4123-ba13-dc5c308f169d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:04:31 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend2307?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQyMzA3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ4NzUzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription4037\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription6324\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d14e028d-6567-4603-9116-02cefa9626b1" + "b7ce1249-86bf-4ec9-a049-c33f6d4ac8b6" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,33 +444,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:53 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "24a2058d-c772-4d72-b116-b8de91d57ccd" + "13d31d69-c092-4ec1-b2b1-dce5a97cd8d6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "a5250d21-9968-4369-9a31-b5cf43039659" + "7b81e462-d882-4c47-adf4-8bb5927cee02" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041254Z:a5250d21-9968-4369-9a31-b5cf43039659" + "WESTUS2:20190411T020432Z:7b81e462-d882-4c47-adf4-8bb5927cee02" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:31 GMT" + ], "Expires": [ "-1" ] @@ -479,58 +479,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend2307?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQyMzA3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ4NzUzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3d50c51-85bb-4bff-94de-cf12cde24950" + "aee2be55-7609-4895-ae75-a830487c2480" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:53 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZTQ=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcDU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8e81920b-4769-4074-8165-ddb2d5cc9503" + "ba6a407e-2ee4-4560-9721-ac7b3997075f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-correlation-request-id": [ - "0632b557-054c-4577-8e13-5d3319619d99" + "a7579697-c498-49fa-952d-eac94d343148" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041254Z:0632b557-054c-4577-8e13-5d3319619d99" + "WESTUS2:20190411T020432Z:a7579697-c498-49fa-952d-eac94d343148" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:31 GMT" + ], "Content-Length": [ "879" ], @@ -541,59 +541,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend2307\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"sfbackend2307\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"patchedDescription4037\",\r\n \"url\": \"https://backendname6238/\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://backendname6238/\"\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/sfbackend8753\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"sfbackend8753\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"patchedDescription6324\",\r\n \"url\": \"https://backendname7751/\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://backendname7751/\"\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend2307?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQyMzA3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ4NzUzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b51a8278-02f1-405f-878c-da0a4e5669e6" + "130da1f0-a475-4675-b529-4bec4c052bef" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6e3c0eed-80dc-4edc-80c8-f0a0afd32e2a" + "7fdaa05c-a081-49fa-b422-495f50b7eecd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11995" ], "x-ms-correlation-request-id": [ - "7a60f3aa-2929-46e5-affd-893878c89ad5" + "d1807672-4ce5-47a9-b43a-8f293c281a5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041255Z:7a60f3aa-2929-46e5-affd-893878c89ad5" + "WESTUS2:20190411T020432Z:d1807672-4ce5-47a9-b43a-8f293c281a5e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:32 GMT" + ], "Content-Length": [ "83" ], @@ -608,58 +608,58 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend2307?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQyMzA3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ4NzUzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09cb613d-f976-4346-ba9b-2f658aa51ddf" + "de7fcfb5-cd44-437c-8191-ed390c44630e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:53 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZTQ=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcDU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "97355a70-47c9-4f7f-9658-e37ac1b10d91" + "b2e46b6b-cf7f-46c6-b808-32d431584a15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11996" ], "x-ms-correlation-request-id": [ - "983b864c-2569-404b-b2e0-00f4be017e5b" + "e3428c9d-9965-4f0e-8543-738135f83d1f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041254Z:983b864c-2569-404b-b2e0-00f4be017e5b" + "WESTUS2:20190411T020432Z:e3428c9d-9965-4f0e-8543-738135f83d1f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:31 GMT" + ], "Content-Length": [ "0" ], @@ -671,121 +671,121 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend2307?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQyMzA3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ4NzUzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "702e3055-4811-420d-bb46-f003579aeb4b" + "f3d7442a-6e47-4aaf-bc3d-d7d4c6e161a1" ], "If-Match": [ - "\"AAAAAAAAZTQ=\"" + "\"AAAAAAAAcDU=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2687a301-af07-4eec-bb97-91a759da485f" + "2f86ffaa-eb8d-4ed1-8baa-97466a99dcb2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "64931546-1655-4f47-8308-45bf877a7f2f" + "539a10b3-1d7c-4e16-9bc9-e7298e1c48cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041255Z:64931546-1655-4f47-8308-45bf877a7f2f" + "WESTUS2:20190411T020432Z:539a10b3-1d7c-4e16-9bc9-e7298e1c48cc" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:04:32 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend2307?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQyMzA3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend8753?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ4NzUzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2944355-9699-4e35-a71f-06e03b27e8c1" + "8beb7ff6-3b84-4b59-845a-247095b124e3" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bc98f743-3bba-44d5-a1e1-9447207b5350" + "c82abe7c-5924-4a24-aaf9-26a9c3fb125f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14998" ], "x-ms-correlation-request-id": [ - "a3375569-7772-4197-ad52-3659d34c5153" + "d41ccf4d-1dcc-418a-8bfb-d5969dc8a288" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041255Z:a3375569-7772-4197-ad52-3659d34c5153" + "WESTUS2:20190411T020433Z:d41ccf4d-1dcc-418a-8bfb-d5969dc8a288" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:32 GMT" + ], "Expires": [ "-1" ] @@ -794,63 +794,63 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId1181?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDExODE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId8019?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDgwMTk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fcd7b38-4278-4d73-9551-13470c6bb780" + "1ba87414-a862-4c1a-a1d8-cf728d12612f" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:55 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8d4540a-3476-44a2-bd96-12272fc32cfc" + "eb6a2d5f-f3f6-4583-a24e-2d7a523e2fd5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14997" ], "x-ms-correlation-request-id": [ - "503c5c35-88c4-4c72-b7d2-996730616078" + "91669ac1-4361-421a-817f-63ad1347a222" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041255Z:503c5c35-88c4-4c72-b7d2-996730616078" + "WESTUS2:20190411T020433Z:91669ac1-4361-421a-817f-63ad1347a222" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:04:32 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -859,11 +859,11 @@ ], "Names": { "ServiceFabricCreateUpdateDelete": [ - "sfbackend2307", - "certificateId1181", - "backendName6238", - "description1834", - "patchedDescription4037" + "sfbackend8753", + "certificateId8019", + "backendName7751", + "description8641", + "patchedDescription6324" ] }, "Variables": { diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.CacheTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.CacheTests/CreateListUpdateDelete.json new file mode 100644 index 000000000000..9c3975603098 --- /dev/null +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.CacheTests/CreateListUpdateDelete.json @@ -0,0 +1,734 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "65453192-a554-4545-8c5b-8d1bff251210" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "289" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAFzct8=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "620ce007-8a26-425a-a877-c1663c069da1", + "f16927f5-ca35-484e-babb-cdcf0a8b3356" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "d9c73ede-df23-4521-b507-4aef757625e8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T202950Z:d9c73ede-df23-4521-b507-4aef757625e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 20:29:50 GMT" + ], + "Content-Length": [ + "2039" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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\": \"AAAAAAFzct8=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "39c10793-ee13-45b8-ad76-4a3c6a8c3f50" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAFzct8=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "91332f2d-12d4-4fc3-956c-a7081e176f02" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "d55fe01b-7fad-4104-a34e-2c250128bd60" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T202951Z:d55fe01b-7fad-4104-a34e-2c250128bd60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 20:29:51 GMT" + ], + "Content-Length": [ + "2039" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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\": \"AAAAAAFzct8=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jYWNoZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ad1bc77-2cab-4086-b694-f3e722956010" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "83e55953-66f2-4cb4-9ebe-ac9177a0019d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "b348e363-6138-4fc5-bba3-5dd9bd4dc840" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T202951Z:b348e363-6138-4fc5-bba3-5dd9bd4dc840" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 20:29:51 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jYWNoZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1983474-7c07-4a2e-9357-1ca695d7cb99" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "15128568-868a-4511-a643-1bdedda238b2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "353f20de-3b9c-451f-9a0e-d67859ab09e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T202952Z:353f20de-3b9c-451f-9a0e-d67859ab09e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 20:29:52 GMT" + ], + "Content-Length": [ + "432" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches/CentralUS\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"CentralUS\",\r\n \"properties\": {\r\n \"description\": \"azsmnet3167\",\r\n \"connectionString\": \"{{5cafa3bfb59744156c37296e}}\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jYWNoZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2d106cc-7898-4729-b75d-4386a1e87dd3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "37165e57-4d17-492a-a5a6-b8c28ade5ee8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "32b516ae-94ef-4650-b604-0fc86e7cbce3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T202953Z:32b516ae-94ef-4650-b604-0fc86e7cbce3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 20:29:53 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches/CentralUS?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jYWNoZXMvQ2VudHJhbFVTP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"azsmnet3167\",\r\n \"connectionString\": \"azsmnet6777\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48f84c59-f407-47ef-9d1a-23b624f0c4f4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAesE=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "74b6b62f-b1a1-458d-af19-61ede0cfd55c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "13d9a0f2-0153-48af-9769-8312708e771e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T202952Z:13d9a0f2-0153-48af-9769-8312708e771e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 20:29:52 GMT" + ], + "Content-Length": [ + "371" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches/CentralUS\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"CentralUS\",\r\n \"properties\": {\r\n \"description\": \"azsmnet3167\",\r\n \"connectionString\": \"{{5cafa3bfb59744156c37296e}}\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches/CentralUS?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jYWNoZXMvQ2VudHJhbFVTP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "acd07a7c-d5de-4526-9bec-c6971be5dce0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAesE=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7ae4ed7b-14b7-44c6-862e-164634e99b69" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "46f1e06d-ad72-416c-bbc1-f3d6ec0bd487" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T202952Z:46f1e06d-ad72-416c-bbc1-f3d6ec0bd487" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 20:29:52 GMT" + ], + "Content-Length": [ + "371" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches/CentralUS\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"CentralUS\",\r\n \"properties\": {\r\n \"description\": \"azsmnet3167\",\r\n \"connectionString\": \"{{5cafa3bfb59744156c37296e}}\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches/CentralUS?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jYWNoZXMvQ2VudHJhbFVTP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6e5b13a-e1c0-4621-8f4b-5294adfed9e0" + ], + "If-Match": [ + "\"AAAAAAAAesE=\"" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "12fd7898-d3b7-409d-abcd-ade1ec715afb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "7442a79f-a3a2-4082-a0b5-c4edbc61cf79" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T202953Z:7442a79f-a3a2-4082-a0b5-c4edbc61cf79" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 20:29:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/caches/CentralUS?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jYWNoZXMvQ2VudHJhbFVTP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1649da10-90b8-4141-82c9-4741c7dbc15e" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4c393f8e-de87-4297-8838-7447e15af3ae" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "d39a78bf-5e94-4f70-a647-e1beee629e41" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T202953Z:d39a78bf-5e94-4f70-a647-e1beee629e41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 20:29:53 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7dda0726-3402-4e96-b59a-5e7529bf1d70" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7ba54ac8-99fb-4325-ad90-262cac2a5ba4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "908de9d8-077e-45fa-ae0d-2f04e74dfc92" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T202953Z:908de9d8-077e-45fa-ae0d-2f04e74dfc92" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 20:29:53 GMT" + ], + "Content-Length": [ + "530" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "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/5cafa3bfb59744156c37296e\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5cafa3bfb59744156c37296e\",\r\n \"properties\": {\r\n \"displayName\": \"cache-CentralUS-connection-5cafa3bfb59744156c37296f\",\r\n \"value\": \"azsmnet6777\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5cafa3bfb59744156c37296e?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzLzVjYWZhM2JmYjU5NzQ0MTU2YzM3Mjk2ZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49ed57ba-179a-4a06-bae7-6b654e1e59bc" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "89987174-1366-45a6-a9e0-d18d99ed7299" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "a8a3e641-d17b-4493-bd9c-f32bc19167c2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T202953Z:a8a3e641-d17b-4493-bd9c-f32bc19167c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 20:29:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "CreateListUpdateDelete": [ + "azsmnet6777", + "azsmnet3167" + ] + }, + "Variables": { + "SubscriptionId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", + "TestCertificate": "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", + "TestCertificatePassword": "Password", + "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", + "ServiceName": "sdktestservice", + "Location": "CentralUS", + "ResourceGroup": "Api-Default-CentralUS" + } +} \ No newline at end of file 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 60288d7cec51..a89b3c93bf0c 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5268ec70-35c9-41c3-a6b9-f021a1f7de0f" + "168e8a24-7289-408c-9120-04ee94ab9b2b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:04 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "63602f08-5087-41cb-84f4-1f8eb63c8383", - "8c1cb28c-1329-4976-a69c-3a8e66e5275e" + "5daed8e4-d714-489e-ab43-4887906baadb", + "a033a62b-4bf6-45ff-9f1a-e55453a22448" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "ae2fb9ac-614a-42d0-9bdc-2ab9b528fc5a" + "f54b30c1-e9f4-4b85-8da3-7bcd0d889a61" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040905Z:ae2fb9ac-614a-42d0-9bdc-2ab9b528fc5a" + "WESTUS2:20190411T021606Z:f54b30c1-e9f4-4b85-8da3-7bcd0d889a61" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:06 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d608b3f-8137-4c44-80f1-ecfec579684c" + "9af91d29-42b6-410e-a190-d9b1df6e108d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:05 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f41ca966-aecc-40a5-b15f-ce92d3f4d025" + "dd51ed69-db82-4270-b351-d8766aa9daf4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-correlation-request-id": [ - "737b8dac-64a4-47d5-9384-aa3465ea1637" + "dc9536c4-8320-4946-adf2-9983f4f6bf6c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040905Z:737b8dac-64a4-47d5-9384-aa3465ea1637" + "WESTUS2:20190411T021606Z:dc9536c4-8320-4946-adf2-9983f4f6bf6c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:06 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e60bbd63-112d-4889-a6fd-26538c0cb3a8" + "904128b7-8f2e-4fee-a8f8-262aab183c5d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "52b1ba6c-362a-4c6e-8f51-6de81ab47056" + "c3cb86f0-78f1-41e2-8485-11fd73b04033" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-correlation-request-id": [ - "f7bfa2bc-86f2-46b0-ae38-feda558294b1" + "9f23fbf6-4b5f-4f96-a22e-41372d85fceb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040906Z:f7bfa2bc-86f2-46b0-ae38-feda558294b1" + "WESTUS2:20190411T021606Z:9f23fbf6-4b5f-4f96-a22e-41372d85fceb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:06 GMT" + ], "Content-Length": [ "19" ], @@ -203,55 +203,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3676a0da-70fa-4910-bf5b-78954929053e" + "fc40fe2c-5e7c-4fa6-91a6-daff4fd88d1f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "985edf9d-944a-42ca-a38d-19e35defee64" + "d503173f-bee8-446d-bd9c-e4b07abf8f8d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11992" ], "x-ms-correlation-request-id": [ - "5012d383-f2bf-491e-b23c-3fc1e4b9e7c1" + "55a2ce15-0ec3-44de-b374-079db79a76f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040908Z:5012d383-f2bf-491e-b23c-3fc1e4b9e7c1" + "WESTUS2:20190411T021608Z:55a2ce15-0ec3-44de-b374-079db79a76f0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:08 GMT" + ], "Content-Length": [ "521" ], @@ -262,59 +262,59 @@ "-1" ] }, - "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/certificateId9379\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId9379\",\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}", + "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/certificateId3934\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId3934\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c3e0af4-d454-474c-882e-99adbfcdc4ac" + "b53ddc9a-6c84-4ba2-a0a7-318446c0176f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:08 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b64036eb-8fb9-403f-9232-8af32556ab38" + "a6a5353e-33d0-435b-a008-599a68f72999" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11991" ], "x-ms-correlation-request-id": [ - "b0f53c61-cc0c-4247-af09-f1f83974da7f" + "1ae9fd4c-dcc1-4110-b1a6-cb6f6d0ab79e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040909Z:b0f53c61-cc0c-4247-af09-f1f83974da7f" + "WESTUS2:20190411T021609Z:1ae9fd4c-dcc1-4110-b1a6-cb6f6d0ab79e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:09 GMT" + ], "Content-Length": [ "19" ], @@ -329,22 +329,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId9379?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDkzNzk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3934?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDM5MzQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "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": { "x-ms-client-request-id": [ - "2250a6b3-7a01-43f8-aa7d-8c40bfaa5e47" + "e5cb6ae3-7228-4593-9a83-c97c47ec2932" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -357,36 +357,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:06 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZDU=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAciQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "986c13dc-c779-4b04-95d4-33893acb86f1" + "69efe177-8a40-4360-b6d0-e868cd3bbc03" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "eaeca6e0-4e23-4dbd-a258-988e5548ada8" + "282d8bdc-9dea-4589-9b23-0e411f94a18a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040907Z:eaeca6e0-4e23-4dbd-a258-988e5548ada8" + "WESTUS2:20190411T021608Z:282d8bdc-9dea-4589-9b23-0e411f94a18a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:07 GMT" + ], "Content-Length": [ "456" ], @@ -397,62 +397,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId9379\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId9379\",\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/certificateId3934\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId3934\",\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}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId9379?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDkzNzk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3934?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDM5MzQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "905a7d59-2fa9-4c1a-acea-8a5bb11e9281" + "2c39504f-426e-441b-8641-88c49d53e954" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:06 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZDU=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAciQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9248cc3e-90f0-44a5-ae4f-7e5ba9529dda" + "9847d9b7-1f9c-424c-8c22-dc8cad88df7b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-correlation-request-id": [ - "4144b3ea-0ddc-473a-bc7d-259079822675" + "b97f4bf3-92ea-43a3-a0b3-331a8297df14" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040907Z:4144b3ea-0ddc-473a-bc7d-259079822675" + "WESTUS2:20190411T021608Z:b97f4bf3-92ea-43a3-a0b3-331a8297df14" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:08 GMT" + ], "Content-Length": [ "456" ], @@ -463,125 +463,125 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId9379\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId9379\",\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/certificateId3934\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId3934\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId9379?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDkzNzk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3934?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDM5MzQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "872390aa-931f-4a7c-97c6-d7b2fc79ff61" + "2cf892a1-b791-4fb9-8a0e-8dbd5197a6d9" ], "If-Match": [ - "\"AAAAAAAAZDU=\"" + "\"AAAAAAAAciQ=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:08 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4eb6658f-9ffc-4107-9097-bf47a548ee7c" + "56973363-3bb4-4105-9734-ff4680407cfe" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "249b3b40-a2cb-41b5-81bd-a47dceacc8d2" + "9ddeeb11-6973-42a4-9ca3-d91e69999a11" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040909Z:249b3b40-a2cb-41b5-81bd-a47dceacc8d2" + "WESTUS2:20190411T021609Z:9ddeeb11-6973-42a4-9ca3-d91e69999a11" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:16:08 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId9379?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDkzNzk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3934?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDM5MzQ/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db19f78d-f5c8-4562-89e9-4913168b8059" + "8d0af926-1b9d-4e59-91e6-d92ecbeb24b1" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:08 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b612e8d-a15b-41d2-a04d-de8ab9d258d1" + "f8641ce8-4f94-4673-be88-99c519c2c63b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "041aa5d5-7393-4603-9fc5-8dfaf5bd16b2" + "fe3b7fca-70a7-4e67-9a60-f7e5385012df" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040909Z:041aa5d5-7393-4603-9fc5-8dfaf5bd16b2" + "WESTUS2:20190411T021609Z:fe3b7fca-70a7-4e67-9a60-f7e5385012df" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:09 GMT" + ], "Expires": [ "-1" ] @@ -592,7 +592,7 @@ ], "Names": { "CreateListUpdateDelete": [ - "certificateId9379" + "certificateId3934" ] }, "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 8f27e857c1e9..eba8c0e04c86 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c109d605-390c-4072-badb-1ae696f67196" + "4740b36f-a9e6-4124-bd0f-995bcd6a1890" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:15 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f7316d03-e2b9-4e2e-b58b-c15220d0177a", - "49eeb651-9cdb-4ce1-b45a-c6784d39e585" + "2b54f678-82c9-498d-886c-5fafc3167d0a", + "f30ea952-3260-47a2-b601-128cba99e0f4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "ef274cf9-4495-44eb-8c65-ed8c525d02cf" + "9ea0115c-e977-4af5-b953-4f9b85d1b40b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041016Z:ef274cf9-4495-44eb-8c65-ed8c525d02cf" + "WESTUS2:20190411T020843Z:9ea0115c-e977-4af5-b953-4f9b85d1b40b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:43 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb07d248-7942-46cb-9a4d-b89c141e36b1" + "6390e388-6c10-4663-aa49-3e4f4a1bc407" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:15 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a704ef9-9eb5-4b68-8ee3-7bfb3a7dd141" + "f5ab8f78-1c4e-4bd7-81ed-3d50373eafbe" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11991" ], "x-ms-correlation-request-id": [ - "ee5d1092-4419-42ae-8243-2081bf155e12" + "de3c8dac-edca-4beb-b75d-b078088771d4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041016Z:ee5d1092-4419-42ae-8243-2081bf155e12" + "WESTUS2:20190411T020844Z:de3c8dac-edca-4beb-b75d-b078088771d4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:43 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,62 +136,62 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9kZWxlZ2F0aW9uP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "076ef559-34b1-4bbe-a6f2-c70be91cb55c" + "043a9bf1-3c70-45e9-9138-b6d1e39a80a3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:16 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAwKABEwAAAAAAAA==\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAAAyODQAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c9c6d9a4-862a-43a4-bbe2-0d2e35b7400b" + "ac74bf5c-858d-45fe-b5a4-0df01c7a6bd8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11990" ], "x-ms-correlation-request-id": [ - "a154f011-3eca-4f83-abc2-44574d98f7b8" + "37b66441-db97-4c2c-ab2e-023841d33924" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041016Z:a154f011-3eca-4f83-abc2-44574d98f7b8" + "WESTUS2:20190411T020844Z:37b66441-db97-4c2c-ab2e-023841d33924" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:43 GMT" + ], "Content-Length": [ "458" ], @@ -206,58 +206,58 @@ "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9kZWxlZ2F0aW9uP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2def3e78-3d00-4adb-a00a-1de280b65eac" + "ee077d5a-7108-4a1b-886c-917ccef9f53a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:17 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAAI85JQAAAAAAAA==\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAAFxMCQAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c771a213-0f77-4bc6-8c94-3196eb21818b" + "c46bbdd2-6e16-4eb8-9e69-329cf339007e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11988" ], "x-ms-correlation-request-id": [ - "9fed801a-256a-4351-8999-ab4ccfb0779e" + "e978b3ec-0f9a-4d02-91e5-86c303649093" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041018Z:9fed801a-256a-4351-8999-ab4ccfb0779e" + "WESTUS2:20190411T020844Z:e978b3ec-0f9a-4d02-91e5-86c303649093" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:44 GMT" + ], "Content-Length": [ "458" ], @@ -272,22 +272,22 @@ "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9kZWxlZ2F0aW9uP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"url\": \"https://delegationserver6161/\",\r\n \"validationKey\": \"Qs2UV3eooxYkgtu4Mr5WAijDOYuh4mpb4PE90XOrgwuaQd7lT3+bKA2dKtRMW//gebZGF9adOV9iOXeFatGieQ==\",\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://delegationserver1797/\",\r\n \"validationKey\": \"v5oLZswwf8MX3zP6/uaIqaibs5PmxGuzW8I22mUz14wNflzFEL0GYAZ5QN/lanrR7m82VGiKwfovWAsK+qVd5A==\",\r\n \"subscriptions\": {\r\n \"enabled\": true\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": true\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a12e00ae-602f-4187-bacb-8e3e252c242d" + "f5d0e219-7473-4071-8d3e-394435c10a28" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -300,36 +300,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:16 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAAIc5JwAAAAAAAA==\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAAERtCwAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fab6b64d-1424-4a67-94ff-4e7954c224d9" + "919275a3-70aa-490d-a56c-e860209e7645" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "0b6fbbef-81f2-4728-8c4e-9edd97b65199" + "7645c398-8068-4f8d-a812-d8c29dbf609f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041017Z:0b6fbbef-81f2-4728-8c4e-9edd97b65199" + "WESTUS2:20190411T020844Z:7645c398-8068-4f8d-a812-d8c29dbf609f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:44 GMT" + ], "Content-Length": [ "569" ], @@ -340,62 +340,62 @@ "-1" ] }, - "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://delegationserver6161/\",\r\n \"validationKey\": \"Qs2UV3eooxYkgtu4Mr5WAijDOYuh4mpb4PE90XOrgwuaQd7lT3+bKA2dKtRMW//gebZGF9adOV9iOXeFatGieQ==\",\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://delegationserver1797/\",\r\n \"validationKey\": \"v5oLZswwf8MX3zP6/uaIqaibs5PmxGuzW8I22mUz14wNflzFEL0GYAZ5QN/lanrR7m82VGiKwfovWAsK+qVd5A==\",\r\n \"subscriptions\": {\r\n \"enabled\": true\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": true\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9kZWxlZ2F0aW9uP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cc99d31-eb8c-4940-b9b6-8b1f8fe4e9dc" + "04d7bb07-623b-4a0d-8053-2f2e0bd3feee" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:17 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAAIc5JwAAAAAAAA==\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAAERtCwAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "41b52e96-e84b-426b-8cae-b562c9828830" + "7a5e4c3a-d8d4-440f-bf57-683ba52d5d26" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11989" ], "x-ms-correlation-request-id": [ - "4586447a-1798-4ed0-a5d5-0ff098383479" + "b4beb117-f00f-4505-8181-a2a3e6c6ebba" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041017Z:4586447a-1798-4ed0-a5d5-0ff098383479" + "WESTUS2:20190411T020844Z:b4beb117-f00f-4505-8181-a2a3e6c6ebba" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:44 GMT" + ], "Content-Length": [ "0" ], @@ -407,25 +407,25 @@ "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9kZWxlZ2F0aW9uP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"subscriptions\": {\r\n \"enabled\": false\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f850d5ae-7a09-4408-8fa0-af0fe737b7fa" + "811b50d6-20d3-48f3-a5ee-20bf42c1ce8c" ], "If-Match": [ - "\"AAAAAAAAAIc5JwAAAAAAAA==\"" + "\"AAAAAAAAAERtCwAAAAAAAA==\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,33 +438,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:17 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2c5be4ad-a7da-46ed-96f3-1ddd248dc3df" + "876a73f4-2409-4d6d-a2d3-4bdd83b826af" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-correlation-request-id": [ - "0f0efcb3-1d01-48cb-85d3-bd2d8f7eb721" + "3fb3e802-c88e-4658-aaef-e033cb4721be" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041017Z:0f0efcb3-1d01-48cb-85d3-bd2d8f7eb721" + "WESTUS2:20190411T020844Z:3fb3e802-c88e-4658-aaef-e033cb4721be" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:44 GMT" + ], "Expires": [ "-1" ] @@ -473,25 +473,25 @@ "StatusCode": 204 }, { - "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=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9kZWxlZ2F0aW9uP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"subscriptions\": {\r\n \"enabled\": false\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6d8ad407-db4d-4bec-909a-51a566e77da4" + "fb9702f7-d28f-4cd7-b7cd-dde76cd8c6bd" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -504,33 +504,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:17 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "33185b4a-bd2c-4008-97bc-97d1d6809f62" + "ce9284a6-9ebc-4d79-9475-90bbcf88b7e9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1192" ], "x-ms-correlation-request-id": [ - "81aee406-1efd-4755-85b0-762a828a8964" + "9de2921f-ce84-473f-83b0-bac33838fec5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041018Z:81aee406-1efd-4755-85b0-762a828a8964" + "WESTUS2:20190411T020845Z:9de2921f-ce84-473f-83b0-bac33838fec5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:44 GMT" + ], "Expires": [ "-1" ] @@ -541,7 +541,7 @@ ], "Names": { "CreateUpdateReset": [ - "delegationServer6161" + "delegationServer1797" ] }, "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 06705490a933..7ea74384aac8 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a59508b8-91f6-4b65-b14e-33ac2bc9263f" + "5a02f621-fdae-4c5e-a949-e382cd7d9b28" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:31 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6594f17f-77c1-4c01-a7d4-432ad5ac68d7", - "225ac80f-f401-41c5-a683-82278167d570" + "5ed09ec5-6d5d-431b-adca-03c83b2c218d", + "276fd7ec-0434-4a02-9452-2d49916ebc69" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "7f4801db-c998-4965-94f3-98d51d290c62" + "449dc886-0600-48f5-b2ba-2a137744a4f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040931Z:7f4801db-c998-4965-94f3-98d51d290c62" + "WESTUS2:20190411T020442Z:449dc886-0600-48f5-b2ba-2a137744a4f1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:41 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b330894e-13d8-4616-90ce-b9599d93e07d" + "d46a1cc4-1b59-4220-a22c-56694ccb1309" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:31 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ba57e997-f74b-4413-b05b-f7e8c363705c" + "abf68459-8591-44d7-a032-34809d97473f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "86325f0d-66f7-4278-9bcf-cbb297b9cebc" + "44a139e7-e3f8-40f6-a0b3-a85e90dfda36" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040931Z:86325f0d-66f7-4278-9bcf-cbb297b9cebc" + "WESTUS2:20190411T020442Z:44a139e7-e3f8-40f6-a0b3-a85e90dfda36" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:41 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f549ee9-de0f-49e5-bbfd-635c65c8ac41" + "bcd8ab5f-d7ab-47bc-a3bb-a08262493ef3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "238b261a-b4c5-45c2-8dbe-a81015b7f749" + "097f717d-e77a-4c8c-ae9b-5d05a539bbb0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "eef87a0b-c483-4ab8-bb4c-d3b2a0a7d2a8" + "21fe4481-d542-4ef6-820b-857bf3d6cd10" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040931Z:eef87a0b-c483-4ab8-bb4c-d3b2a0a7d2a8" + "WESTUS2:20190411T020442Z:21fe4481-d542-4ef6-820b-857bf3d6cd10" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:41 GMT" + ], "Content-Length": [ "19" ], @@ -203,66 +203,66 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzMjgzOD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"8265566f-dafe-46a1-ba11-55c9ef4bbf14\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "59c7a9a4-8deb-4756-974f-190e2f1f29dd" + "05d18b9a-9fee-495b-b433-af0b7e044360" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "49" + "167" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:32 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZFs=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcEg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a83329f6-3622-4b10-b8e2-b7b4771f4b55" + "72ac59cb-e727-4489-81f0-c180c74aef8b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "a0bc1739-15a6-4664-9034-bf5f891d077e" + "0531a5be-7e7d-4187-991f-ebb86804f469" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040932Z:a0bc1739-15a6-4664-9034-bf5f891d077e" + "WESTUS2:20190411T020443Z:0531a5be-7e7d-4187-991f-ebb86804f469" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:42 GMT" + ], "Content-Length": [ - "331" + "520" ], "Content-Type": [ "application/json; charset=utf-8" @@ -271,70 +271,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\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/loggers/appInsights2838\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"appInsights2838\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": null,\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5caea0bab597440f487b0da4}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights9103?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzOTEwMz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"b8185576-f908-426c-9c01-00d01d6d4528\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cb94e625-ad85-400e-9102-96852a7375ca" + "a5af08b5-6d3a-45c4-8368-98589a5830b0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "167" + "217" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:33 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZGA=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcEo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f4b53de0-46e9-46e4-9ca9-037301cfccca" + "b8c51479-a58e-4fe6-abda-de0a4cdd7662" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "1e246ea9-6502-4ff4-98a8-7331d3f44ece" + "5adff989-7ba5-46be-91e5-778ef56f3469" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040933Z:1e246ea9-6502-4ff4-98a8-7331d3f44ece" + "WESTUS2:20190411T020443Z:5adff989-7ba5-46be-91e5-778ef56f3469" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:42 GMT" + ], "Content-Length": [ - "520" + "660" ], "Content-Type": [ "application/json; charset=utf-8" @@ -343,127 +343,73 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights9103\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"appInsights9103\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": null,\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5ca2e07cb5974412ac07db7c}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": null,\r\n \"enableHttpCorrelationHeaders\": true,\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838\",\r\n \"sampling\": null,\r\n \"frontend\": null,\r\n \"backend\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights/loggers/appInsights9103?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzL2xvZ2dlcnMvYXBwSW5zaWdodHM5MTAzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "", + "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n },\r\n \"enableHttpCorrelationHeaders\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "90451a80-9edf-4e23-8695-3dfce31ead2e" + "5e898d97-54b4-474b-ab06-6cc201a23444" + ], + "If-Match": [ + "\"AAAAAAAAcEo=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1005" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:33 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZGA=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcE0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "22936a01-3d3d-489c-bd00-d767d032d24f" + "474b1fab-0d7e-49b0-ba27-426f533cdcd7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "da136c9a-d273-466d-90f7-36c441eb7b3d" + "1c7b85a1-5ee4-41b7-9df5-b541cf0c5b20" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040933Z:da136c9a-d273-466d-90f7-36c441eb7b3d" + "WESTUS2:20190411T020443Z:1c7b85a1-5ee4-41b7-9df5-b541cf0c5b20" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "564" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights/loggers/appInsights9103\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics/loggers\",\r\n \"name\": \"appInsights9103\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": null,\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5ca2e07cb5974412ac07db7c}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights/loggers?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzL2xvZ2dlcnM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1d5be9a1-9c6c-4791-b76a-b29d87374cae" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 02 Apr 2019 04:09:33 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "82f70939-de28-4bed-858d-8e3c1567dac7" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "9aaaf591-81fe-43ed-aa2d-856a3d415bb8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T040933Z:9aaaf591-81fe-43ed-aa2d-856a3d415bb8" - ], - "X-Content-Type-Options": [ - "nosniff" + "Thu, 11 Apr 2019 02:04:43 GMT" ], "Content-Length": [ - "645" + "1313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -472,62 +418,62 @@ "-1" ] }, - "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/applicationinsights/loggers/appInsights9103\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics/loggers\",\r\n \"name\": \"appInsights9103\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": null,\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5ca2e07cb5974412ac07db7c}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": 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/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"enableHttpCorrelationHeaders\": true,\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-type\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 512\r\n }\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f69e922f-a1da-4e41-a756-a8ff97bc0f72" + "dd43f24d-1a8c-46e9-b9c6-f52083610e19" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:33 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZGI=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcEo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ede1478-c949-4a77-a17f-7a5249066112" + "11d057a0-f83d-417b-b239-dd9799bf7100" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "b94fef90-719d-4095-8e7b-33dcfa735049" + "c579c3cb-2f93-4366-802b-8316b5586ecb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040933Z:b94fef90-719d-4095-8e7b-33dcfa735049" + "WESTUS2:20190411T020443Z:c579c3cb-2f93-4366-802b-8316b5586ecb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:43 GMT" + ], "Content-Length": [ "0" ], @@ -539,55 +485,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb1b06c6-b8a4-4f3a-aa75-4eff68f9befe" + "dd370d66-53e7-474a-a39c-47bbd3080979" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e4b91f26-c154-4499-8c54-88e6eadfed26" + "55084f66-9845-49f3-a39a-1bc3e7fd5047" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "fb53c90f-b87c-4d0e-a64e-67d151f99197" + "d51fd7d0-85f2-455a-b61e-7925369a9612" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040934Z:fb53c90f-b87c-4d0e-a64e-67d151f99197" + "WESTUS2:20190411T020444Z:d51fd7d0-85f2-455a-b61e-7925369a9612" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:43 GMT" + ], "Content-Length": [ "0" ], @@ -599,121 +545,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c077b1d-39ec-48a2-9de6-217b7bc2d150" + "27963f78-b96f-44d0-a7c6-7d6d407706e0" ], "If-Match": [ - "\"AAAAAAAAZGI=\"" + "\"AAAAAAAAcE0=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c345c96-cfd5-4cf8-a1b4-8794052f0e4d" + "957aebbd-8c7d-46b4-8436-6e918d7b746c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "eada04be-30e6-43b5-b01c-751ac26309ac" + "2ba4c2fb-c2d3-40ea-91bb-530557a7615f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040934Z:eada04be-30e6-43b5-b01c-751ac26309ac" + "WESTUS2:20190411T020444Z:2ba4c2fb-c2d3-40ea-91bb-530557a7615f" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:04:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/applicationinsights?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9hcHBsaWNhdGlvbmluc2lnaHRzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ccdff3f-c0d9-402a-9a79-c3a2e47ae2ed" + "111c8142-9d2d-4d89-bd00-ab8f8f041505" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "005d3025-c4c5-434d-b65f-3ad464df5566" + "f362b963-307c-45b0-ac7d-64e515620b25" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "56ed438a-25ca-4000-9a21-ab674795a382" + "6a05b347-7a7e-4edb-a46a-88e55483e643" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040935Z:56ed438a-25ca-4000-9a21-ab674795a382" + "WESTUS2:20190411T020445Z:6a05b347-7a7e-4edb-a46a-88e55483e643" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:44 GMT" + ], "Expires": [ "-1" ] @@ -722,58 +668,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights9103?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzOTEwMz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzMjgzOD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75f6d6fb-e593-4d8b-80a1-82c0547a47d9" + "3deb1c66-3d05-4cdd-bf14-21ea532e3df5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:34 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZGA=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcEg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1bb5cb65-fecc-4c3b-9478-740bd800add1" + "4c4507e4-ede1-4272-bd24-ba7a04cc2a83" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "3301c29f-9fcf-4573-b98a-a6d1389e73c8" + "d98ac5f4-22b1-4bc3-a0d6-9f27cf04d2dd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040934Z:3301c29f-9fcf-4573-b98a-a6d1389e73c8" + "WESTUS2:20190411T020444Z:d98ac5f4-22b1-4bc3-a0d6-9f27cf04d2dd" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:43 GMT" + ], "Content-Length": [ "0" ], @@ -785,55 +731,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights9103?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzOTEwMz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzMjgzOD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68eab6b0-b161-4feb-bd78-4135569143c5" + "c43d637a-3cd5-4168-99f9-ad6ff1ba6e21" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6e1c9c97-3117-47a3-a122-c1170dd4eb3e" + "5be34107-b47c-4415-b6c7-dc0862bdca5e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "effff561-1fc2-40e1-9190-7f734cbbd4f5" + "309aaebc-d71a-4d96-9d7d-ca0d501acf30" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040935Z:effff561-1fc2-40e1-9190-7f734cbbd4f5" + "WESTUS2:20190411T020445Z:309aaebc-d71a-4d96-9d7d-ca0d501acf30" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:44 GMT" + ], "Content-Length": [ "0" ], @@ -845,121 +791,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights9103?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzOTEwMz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzMjgzOD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18312fb7-0c47-4c0e-9392-d94b0f4319a8" + "de0a997d-2360-473e-8206-976f85ae527d" ], "If-Match": [ - "\"AAAAAAAAZGA=\"" + "\"AAAAAAAAcEg=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "118e00be-81e8-4ed1-b28b-02cfab637a8f" + "c4fe0c3a-dae7-4d56-ab68-937ea81ce5f7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "6b7b113b-490b-46fc-855d-881794907fd1" + "baa4c913-60d2-41bf-a221-d63f988087d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040935Z:6b7b113b-490b-46fc-855d-881794907fd1" + "WESTUS2:20190411T020445Z:baa4c913-60d2-41bf-a221-d63f988087d6" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:04:44 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights9103?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzOTEwMz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2838?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzMjgzOD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5392f61d-07e4-4840-94c1-2836c7f9e9c7" + "8192e703-a2a7-4a8d-97b1-ccdbf7faf815" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1d4e416d-9d05-4f93-b3eb-48d4d05f541f" + "2265deb1-7903-4c72-9d42-d87912bfadf9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "bacabcee-f589-48c3-a87e-0b9e7031ca36" + "79028820-6455-4fce-99a4-ad79436d81ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040935Z:bacabcee-f589-48c3-a87e-0b9e7031ca36" + "WESTUS2:20190411T020445Z:79028820-6455-4fce-99a4-ad79436d81ab" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:44 GMT" + ], "Expires": [ "-1" ] @@ -970,10 +916,10 @@ ], "Names": { "CreateListUpdateDelete": [ - "appInsights9103" + "appInsights2838" ], "appInsights": [ - "b8185576-f908-426c-9c01-00d01d6d4528" + "8265566f-dafe-46a1-ba11-55c9ef4bbf14" ] }, "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 e709b1f60a89..d06c2c8b6ab2 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "85b4fd03-44a1-415f-8a7a-e56e10df07b7" + "7a45b720-54b7-4297-85b7-52cac3be6a3a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:55 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ff1ae56-1516-4890-9f95-08ff5c65216f", - "eb62aea4-9cb1-4d8b-990d-09db53b732aa" + "76e393c8-b1cc-4df9-b3d6-0e862c6bd1f2", + "007599a7-d97f-48aa-ae8b-89556bf4acf3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "6f84886d-29f7-4fee-9f8d-ac3bb432bd42" + "46fa7e73-43f3-4f00-836e-d69cc40948a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040655Z:6f84886d-29f7-4fee-9f8d-ac3bb432bd42" + "WESTUS2:20190411T020942Z:46fa7e73-43f3-4f00-836e-d69cc40948a1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:42 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ebb48a2-43b8-4606-abf0-a7c920388e4e" + "b89580f0-f889-4fbf-a6b7-a26c4331dfc8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:55 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a166b7ee-10c1-4540-9218-328d7cf7d1df" + "0b9c4214-c686-444d-94c5-9dbe6d2c38d6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "744339a3-6415-4fb7-9837-224b61094169" + "4f56c135-e12a-4711-8726-c226d715c7c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040656Z:744339a3-6415-4fb7-9837-224b61094169" + "WESTUS2:20190411T020942Z:4f56c135-e12a-4711-8726-c226d715c7c8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:42 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW1wbGF0ZXM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW1wbGF0ZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a0c9f75-dd49-4dca-b7cd-a95b6d46cf46" + "8271bf63-d032-4d5b-ab1b-74a06dcaa626" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:55 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59002168-8cbd-494c-b528-c85fdf6381fc" + "4d68028d-95f4-4588-b590-5d28e70d10bf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "617f4004-57c1-441e-ab4a-2fd1c52ccabf" + "1b6c258b-3879-4f74-8bce-aa071f22f20b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040656Z:617f4004-57c1-441e-ab4a-2fd1c52ccabf" + "WESTUS2:20190411T020942Z:1b6c258b-3879-4f74-8bce-aa071f22f20b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:42 GMT" + ], "Content-Length": [ "43363" ], @@ -203,22 +203,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW1wbGF0ZXMvQXBwbGljYXRpb25BcHByb3ZlZE5vdGlmaWNhdGlvbk1lc3NhZ2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW1wbGF0ZXMvQXBwbGljYXRpb25BcHByb3ZlZE5vdGlmaWNhdGlvbk1lc3NhZ2U/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"subject\": \"New Subject\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "59d67400-251b-4e08-8ba2-3b4dab7432b1" + "451cf811-7f04-44bb-8b90-c00b207aa46e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,36 +231,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:56 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY+I=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcTc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "901828ec-07f2-4c9d-a17a-9fa8253ca964" + "2b32ca0b-5725-4f90-99d6-df151fc3cd9f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "bb92fe78-1a1a-420a-b3a0-3c16d5f39812" + "58414459-3410-4b44-9e87-f7730901922b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040657Z:bb92fe78-1a1a-420a-b3a0-3c16d5f39812" + "WESTUS2:20190411T020943Z:58414459-3410-4b44-9e87-f7730901922b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:43 GMT" + ], "Content-Length": [ "2078" ], @@ -275,58 +275,58 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW1wbGF0ZXMvQXBwbGljYXRpb25BcHByb3ZlZE5vdGlmaWNhdGlvbk1lc3NhZ2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW1wbGF0ZXMvQXBwbGljYXRpb25BcHByb3ZlZE5vdGlmaWNhdGlvbk1lc3NhZ2U/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a0f7801-fa2a-43cc-9381-a50b9b6eca88" + "18fc6020-0192-4f2b-bc19-effed9b1c049" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:56 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY+I=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcTc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5c28abe8-0710-435b-afea-52d8889cb9ac" + "20625215-8cf6-427f-9309-7eff8f92f2e0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "7c6beb56-7223-4154-b5a0-42f376516204" + "d7214ad9-8f67-4fa7-868a-97c6e1b5f152" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040657Z:7c6beb56-7223-4154-b5a0-42f376516204" + "WESTUS2:20190411T020943Z:d7214ad9-8f67-4fa7-868a-97c6e1b5f152" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:43 GMT" + ], "Content-Length": [ "2078" ], @@ -341,58 +341,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW1wbGF0ZXMvQXBwbGljYXRpb25BcHByb3ZlZE5vdGlmaWNhdGlvbk1lc3NhZ2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW1wbGF0ZXMvQXBwbGljYXRpb25BcHByb3ZlZE5vdGlmaWNhdGlvbk1lc3NhZ2U/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44d2af07-f60d-436b-b84a-3c8d049e5af9" + "50af06b3-9013-473e-bb50-9b8eaf972b4d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:57 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ "\"AAAAAAAAAAA=\"" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2b517423-7f35-419d-b4a2-edf08ce38b9e" + "4f538863-14bd-4914-8086-5fcce9d0f69c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "37af39c3-954b-4de3-9ced-ae2448f377cd" + "fd50dd38-9b3f-4c00-a37a-cb4a2253c38c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040658Z:37af39c3-954b-4de3-9ced-ae2448f377cd" + "WESTUS2:20190411T020944Z:fd50dd38-9b3f-4c00-a37a-cb4a2253c38c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:44 GMT" + ], "Content-Length": [ "2131" ], @@ -407,121 +407,121 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW1wbGF0ZXMvQXBwbGljYXRpb25BcHByb3ZlZE5vdGlmaWNhdGlvbk1lc3NhZ2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW1wbGF0ZXMvQXBwbGljYXRpb25BcHByb3ZlZE5vdGlmaWNhdGlvbk1lc3NhZ2U/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06ec6ef8-9ad2-4674-a74c-377cc2e32df4" + "a50ea517-0cb1-462a-9f04-a6a176d58204" ], "If-Match": [ - "\"AAAAAAAAY+I=\"" + "\"AAAAAAAAcTc=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:57 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7105a02c-8f7f-41e7-8faa-49d57bcea6a7" + "c80a7173-1a1f-42d5-aa88-952242d2cf8c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "f5ca5ea0-be83-4e46-94e2-952b25d3eb17" + "01555104-9118-420c-a0a0-270bae1ee45f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040658Z:f5ca5ea0-be83-4e46-94e2-952b25d3eb17" + "WESTUS2:20190411T020944Z:01555104-9118-420c-a0a0-270bae1ee45f" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:09:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW1wbGF0ZXMvQXBwbGljYXRpb25BcHByb3ZlZE5vdGlmaWNhdGlvbk1lc3NhZ2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW1wbGF0ZXMvQXBwbGljYXRpb25BcHByb3ZlZE5vdGlmaWNhdGlvbk1lc3NhZ2U/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f48061dd-91c7-4f56-b27b-ba36bd6c63d0" + "bb47f0ac-c6c7-46cc-99f1-750a5f0e543a" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:57 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4049c866-447d-409b-b9ed-c5a05dd633ae" + "46497eaf-437d-4f1f-9aa3-5bb52d9c6dfd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "08ea63f2-f2bd-4c50-a09b-ae2c5fb6271b" + "0f011f31-0cb9-48e4-9597-758d2943d23e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040658Z:08ea63f2-f2bd-4c50-a09b-ae2c5fb6271b" + "WESTUS2:20190411T020944Z:0f011f31-0cb9-48e4-9597-758d2943d23e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:44 GMT" + ], "Expires": [ "-1" ] 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 b4212dd5a9d3..826eaa910d94 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "afe8be36-f0d5-4f21-988f-467eab02d699" + "796a4548-be89-4ae8-94a4-f383ec6c31aa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:24 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b30260b3-21f1-499b-be4d-5746f06835f4", - "8994de80-d295-4940-a4a5-82362e748bf1" + "a9968311-8fa5-4ff8-a078-5237067a3cc5", + "fba224a9-a636-48f9-9363-738b51dbe1bd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "ab49cea2-7e29-4b7c-b8f9-e922c9477f72" + "0e4c4db4-3279-4012-884e-3d7272a58326" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041225Z:ab49cea2-7e29-4b7c-b8f9-e922c9477f72" + "WESTUS2:20190411T020654Z:0e4c4db4-3279-4012-884e-3d7272a58326" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:06:53 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4c8fb75-79e9-48e9-95a6-0de890554991" + "05d0c420-e6d0-402f-a2c3-7f99ba0615b7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:25 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "47931bc2-52ca-485c-8c30-ceabc87f9b3b" + "e02cb860-d143-43d6-9168-4abf82afb519" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "0a2ddf11-58dc-447e-8d1e-612f2ea38575" + "27e77fa6-4e46-40e3-ac05-3b6984550f90" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041225Z:0a2ddf11-58dc-447e-8d1e-612f2ea38575" + "WESTUS2:20190411T020654Z:27e77fa6-4e46-40e3-ac05-3b6984550f90" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:06:54 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b15f5cd-6e6a-41d2-b8e3-804cad7fabe4" + "d184f5db-7a6b-463c-87ce-9c50af2650db" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:25 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4dd2929-e49e-432b-84d0-263cca58a2c2" + "f6fc5d0f-70fa-44d2-9f4a-2d02d54359e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "729866cc-188b-4ea3-9ea3-9158b82e2139" + "5b94de84-c68c-465c-9e31-b260c1b4c790" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041225Z:729866cc-188b-4ea3-9ea3-9158b82e2139" + "WESTUS2:20190411T020655Z:5b94de84-c68c-465c-9e31-b260c1b4c790" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:06:54 GMT" + ], "Content-Length": [ "1796" ], @@ -203,55 +203,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups?$top=1&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e65fe47a-8ed7-4bd7-9bf8-f33bb3f8b110" + "4ab66d8d-f3ae-4723-83b7-ae80548b6426" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:25 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "730aa415-c9e6-40bc-bfcf-f817e724e24c" + "1a1c7981-e4ed-41b6-b4cb-9c2d00b20d3f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-correlation-request-id": [ - "5ea35403-ea42-49bb-9521-2447534f5849" + "704450fa-184b-46ff-ab6e-eba9d7b6a6ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041226Z:5ea35403-ea42-49bb-9521-2447534f5849" + "WESTUS2:20190411T020655Z:704450fa-184b-46ff-ab6e-eba9d7b6a6ad" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:06:54 GMT" + ], "Content-Length": [ "881" ], @@ -262,26 +262,26 @@ "-1" ] }, - "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}", + "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=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5341?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDUzNDE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId487?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup8217\",\r\n \"description\": \"Group created from Sdk client\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup8083\",\r\n \"description\": \"Group created from Sdk client\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "73e8ce9a-5695-43f2-8b3d-a7108fbcd03e" + "b833875f-8578-4183-bab1-d8ba0c98ab2b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,38 +294,38 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:25 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZQM=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcJY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55b100c9-df4e-4aa6-89d7-37099b23d038" + "c7b095e4-58ce-41a9-b679-f6993b279e5e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "4cd3bfdd-2cea-4d04-9cce-1fb6e01dc3ad" + "43c0bb07-c0ab-428e-957e-e7e9336e5d20" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041226Z:4cd3bfdd-2cea-4d04-9cce-1fb6e01dc3ad" + "WESTUS2:20190411T020656Z:43c0bb07-c0ab-428e-957e-e7e9336e5d20" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:06:55 GMT" + ], "Content-Length": [ - "449" + "447" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,62 +334,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5341\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"sdkGroupId5341\",\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup8217\",\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/sdkGroupId487\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"sdkGroupId487\",\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup8083\",\r\n \"description\": \"Group created from Sdk client\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5341?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDUzNDE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId487?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc59f770-1a6c-40b5-a43b-6304545578d6" + "0c1664ff-a483-44e6-8c29-36dcbe4d3009" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:25 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZQM=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcJY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "63b2cffe-7ee8-4f58-bcee-99af7cf4524b" + "999e50e6-6cd0-4c6a-80c3-1da0fa10909d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11996" ], "x-ms-correlation-request-id": [ - "5e83ab03-bbb5-4d31-853e-78a774721061" + "f0856c7c-f9cd-43d5-9d67-231ca79655aa" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041226Z:5e83ab03-bbb5-4d31-853e-78a774721061" + "WESTUS2:20190411T020656Z:f0856c7c-f9cd-43d5-9d67-231ca79655aa" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:06:55 GMT" + ], "Content-Length": [ "0" ], @@ -401,58 +401,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5341?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDUzNDE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId487?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08855ef0-73aa-4f4b-8cff-4241bb31d8a0" + "46264a5d-56b4-415d-a086-16266ff8e03a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:26 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZQU=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcJg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0dedc9c1-5b77-4e56-9f3a-1440228944e5" + "815958da-1ea5-46d2-b0f7-3834bec928c7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11994" ], "x-ms-correlation-request-id": [ - "6c6cfbaf-7fb6-42d7-ba46-4db40ef26e70" + "adef2513-f09a-4870-8518-008dd9f60b5b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041226Z:6c6cfbaf-7fb6-42d7-ba46-4db40ef26e70" + "WESTUS2:20190411T020656Z:adef2513-f09a-4870-8518-008dd9f60b5b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:06:55 GMT" + ], "Content-Length": [ "0" ], @@ -464,25 +464,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5341?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDUzNDE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId487?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Updating the description of the Sdk\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "832f62b1-6738-4a71-9fce-4795035cf461" + "b613e4f2-13cf-4b3f-8a63-b674763cbb5a" ], "If-Match": [ - "\"AAAAAAAAZQM=\"" + "\"AAAAAAAAcJY=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,33 +495,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:26 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "46e40722-0f1e-43aa-aebe-f0425b9b9334" + "b07e86f7-1476-4b7e-a1c5-6ab70e80acf4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "cecf7013-ae10-4c0c-b1c2-628a7ea1a30c" + "84080f1d-373c-44cb-ad26-349de82745d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041226Z:cecf7013-ae10-4c0c-b1c2-628a7ea1a30c" + "WESTUS2:20190411T020656Z:84080f1d-373c-44cb-ad26-349de82745d1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:06:55 GMT" + ], "Expires": [ "-1" ] @@ -530,60 +530,60 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5341?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDUzNDE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId487?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c50aa2f1-d88a-4b87-9b83-7992d86c1c31" + "1774b6b3-ffb7-4153-8ec3-3d85e4224f59" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:26 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZQU=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcJg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2cad238f-bb4d-4d4a-a3e0-718f84b954da" + "d32e3a69-4762-4d57-9573-c696a159c9c5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11995" ], "x-ms-correlation-request-id": [ - "4eb7302d-feaf-447c-883b-683b76e5dd69" + "3f87b97d-e37c-4768-9ccf-b01e13f6de77" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041226Z:4eb7302d-feaf-447c-883b-683b76e5dd69" + "WESTUS2:20190411T020656Z:3f87b97d-e37c-4768-9ccf-b01e13f6de77" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:06:55 GMT" + ], "Content-Length": [ - "455" + "453" ], "Content-Type": [ "application/json; charset=utf-8" @@ -592,59 +592,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5341\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"sdkGroupId5341\",\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup8217\",\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/sdkGroupId487\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"sdkGroupId487\",\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup8083\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5341?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDUzNDE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId487?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f33d1364-984a-48c1-aecb-d4c5f2e6f43c" + "c006ee46-d92f-4f97-b82c-694ca131a8fb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:26 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "34146c36-dd06-4a88-9a02-344a21a07185" + "18f2fe3d-8520-449f-9684-0ac5756ffa10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11993" ], "x-ms-correlation-request-id": [ - "b2c8ec22-7b43-4458-ba07-1b483218d01f" + "e5df0b6a-fdfe-4387-85a4-45ec4018437d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041227Z:b2c8ec22-7b43-4458-ba07-1b483218d01f" + "WESTUS2:20190411T020656Z:e5df0b6a-fdfe-4387-85a4-45ec4018437d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:06:55 GMT" + ], "Content-Length": [ "81" ], @@ -659,121 +659,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5341?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDUzNDE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId487?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26bc0980-a5f4-4e72-8407-e64af154beb9" + "236e53d5-171f-411d-85e1-977304daf363" ], "If-Match": [ - "\"AAAAAAAAZQU=\"" + "\"AAAAAAAAcJg=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:26 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3664ba46-0dd7-4855-885c-a76a1c80b582" + "9e8834f7-97f7-4fa7-b0da-8180da4aa2c8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "8dbc0180-2833-42de-8629-896e898e2120" + "d7743fd1-74fd-4818-b33d-e83a691947a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041227Z:8dbc0180-2833-42de-8629-896e898e2120" + "WESTUS2:20190411T020656Z:d7743fd1-74fd-4818-b33d-e83a691947a8" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:06:55 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5341?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDUzNDE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId487?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10fda638-dc70-498e-b65a-2ee1166b08d2" + "d5197f2d-4582-4254-83b6-8e3697770aae" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:27 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d3e2cf24-1cba-4460-938a-acc563cbcaac" + "a58ccafa-b548-4e80-8e94-64bea6c0ac75" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "2d74585c-2bba-4057-a6b9-545ce7200ce7" + "6555b309-d52b-4c60-8e1f-d54a0a7f1325" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041227Z:2d74585c-2bba-4057-a6b9-545ce7200ce7" + "WESTUS2:20190411T020657Z:6555b309-d52b-4c60-8e1f-d54a0a7f1325" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:06:56 GMT" + ], "Expires": [ "-1" ] @@ -784,8 +784,8 @@ ], "Names": { "CreateListUpdateDelete": [ - "sdkGroupId5341", - "sdkGroup8217" + "sdkGroupId487", + "sdkGroup8083" ] }, "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 18ff1e533237..3dd11f0b7db1 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "26e707a5-befb-4a6c-9e7c-0237e45b54dc" + "f2f49b20-5595-4d57-845c-bbfc1c6859c2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:07 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3c63c724-78e9-47a5-9151-71dc00f34791", - "d66cd69c-c34c-4652-95be-670e8818e1c2" + "ae58f6bd-da34-433c-be48-6b746d96fb45", + "8133a951-2318-44c2-a712-5eeceeb71807" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "3c08e7e6-4cd9-4395-8c8c-a91cc98e7a62" + "723b35f1-2f82-4ec9-88e7-4d0346ad23d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040708Z:3c08e7e6-4cd9-4395-8c8c-a91cc98e7a62" + "WESTUS2:20190411T020452Z:723b35f1-2f82-4ec9-88e7-4d0346ad23d6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:52 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c36eb514-1188-46bb-a1c8-c84315d1e014" + "1c0b998e-49d7-459c-bde0-55790523eb5d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:07 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3c21ab55-c264-4f2c-aaf9-7f8bbc6401f8" + "77103ceb-10db-476d-9b01-1c4da5785495" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "5f697278-3895-4c4c-82a5-ceb36a9ec950" + "6ebe1ac8-6411-47bf-a8cf-aa8f55160ac8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040708Z:5f697278-3895-4c4c-82a5-ceb36a9ec950" + "WESTUS2:20190411T020453Z:6ebe1ac8-6411-47bf-a8cf-aa8f55160ac8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:52 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId6677?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDY2Nzc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDI2NTM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup1364\",\r\n \"description\": \"Group created from Sdk client\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup9018\",\r\n \"description\": \"Group created from Sdk client\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "85110378-cf08-4fef-8fea-5ce7f51cfb6a" + "43d751ea-4417-4592-a34d-d5699d0e034c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,36 +168,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:08 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZAI=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcFk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89e9e3f2-ca71-438e-b86e-a67ae4d66ef9" + "1dc56ec7-6339-4996-bd50-f05d1effd2bb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "aeb9f1d9-ae7e-45ea-bd3e-fb03395431f0" + "88130fd5-125c-48bd-915f-7f05d01dce99" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040709Z:aeb9f1d9-ae7e-45ea-bd3e-fb03395431f0" + "WESTUS2:20190411T020454Z:88130fd5-125c-48bd-915f-7f05d01dce99" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:53 GMT" + ], "Content-Length": [ "449" ], @@ -208,59 +208,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId6677\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"sdkGroupId6677\",\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup1364\",\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/sdkGroupId2653\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"sdkGroupId2653\",\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup9018\",\r\n \"description\": \"Group created from Sdk client\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId6677/users?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDY2NzcvdXNlcnM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653/users?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDI2NTMvdXNlcnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d68a56c8-283d-40a0-b4a9-cc7797991660" + "d8ee57e1-bf84-44ca-92eb-5c7ded2cdc5d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:08 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "48142a1b-b380-4831-ae5a-dc7dc2738245" + "85010c44-b419-4c45-b3d7-5f1dbbbc7f91" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "802463c8-974f-4ddd-b211-f0d79ec4ebf8" + "e61e76fb-7d18-4590-8cff-6c45001a7deb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040709Z:802463c8-974f-4ddd-b211-f0d79ec4ebf8" + "WESTUS2:20190411T020454Z:e61e76fb-7d18-4590-8cff-6c45001a7deb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:53 GMT" + ], "Content-Length": [ "19" ], @@ -275,57 +275,57 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId6677/users?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDY2NzcvdXNlcnM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653/users?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDI2NTMvdXNlcnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "322ac478-ebc5-4348-8aa1-c306adc0c0eb" + "59abaec5-c359-4dab-80a8-5973a4abec0e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72517189-5f3c-420e-9883-db161d0c9323" + "ab75c97a-67d2-41ad-a4da-ff4982e18782" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "89d0b48e-ef27-4b4f-8fa9-43c99a2fbcf8" + "37f8825e-c888-4d59-aa4b-1c8e379762ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040710Z:89d0b48e-ef27-4b4f-8fa9-43c99a2fbcf8" + "WESTUS2:20190411T020455Z:37f8825e-c888-4d59-aa4b-1c8e379762ff" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:54 GMT" + ], "Content-Length": [ - "753" + "756" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,26 +334,26 @@ "-1" ] }, - "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/sdkGroupId6677/users/sdkUserId113\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"sdkUserId113\",\r\n \"properties\": {\r\n \"firstName\": \"sdkFirst1139\",\r\n \"lastName\": \"sdkLast4702\",\r\n \"email\": \"sdkFirst.Last7033@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-02T04:07:09.65Z\",\r\n \"note\": \"dummy note\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"sdkFirst.Last7033@contoso.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\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/sdkGroupId2653/users/sdkUserId4410\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"sdkUserId4410\",\r\n \"properties\": {\r\n \"firstName\": \"sdkFirst4361\",\r\n \"lastName\": \"sdkLast7487\",\r\n \"email\": \"sdkFirst.Last1175@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-11T02:04:54.437Z\",\r\n \"note\": \"dummy note\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"sdkFirst.Last1175@contoso.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/sdkUserId113?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy9zZGtVc2VySWQxMTM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/sdkUserId4410?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy9zZGtVc2VySWQ0NDEwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"active\",\r\n \"note\": \"dummy note\",\r\n \"email\": \"sdkFirst.Last7033@contoso.com\",\r\n \"firstName\": \"sdkFirst1139\",\r\n \"lastName\": \"sdkLast4702\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"active\",\r\n \"note\": \"dummy note\",\r\n \"email\": \"sdkFirst.Last1175@contoso.com\",\r\n \"firstName\": \"sdkFirst4361\",\r\n \"lastName\": \"sdkLast7487\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e854bbd6-9a19-4b04-b321-c477b270d3d6" + "0e4c0b57-4fbf-4d05-b439-96188987814d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -366,38 +366,38 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:09 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZAcAAAAAAABkCQ==\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcF4AAAAAAABwYA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55cde7ec-118d-4fbe-9261-625bce51273a" + "4d2fea5b-9fde-4266-a497-3a43171f081a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "766632af-84d2-4668-a3ed-8a5a6b8b46ef" + "ff9d89ef-4e11-4012-9b75-d533e41900fa" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040709Z:766632af-84d2-4668-a3ed-8a5a6b8b46ef" + "WESTUS2:20190411T020454Z:ff9d89ef-4e11-4012-9b75-d533e41900fa" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:54 GMT" + ], "Content-Length": [ - "1098" + "1101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -406,64 +406,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/sdkUserId113\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"sdkUserId113\",\r\n \"properties\": {\r\n \"firstName\": \"sdkFirst1139\",\r\n \"lastName\": \"sdkLast4702\",\r\n \"email\": \"sdkFirst.Last7033@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-02T04:07:09.65Z\",\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.Last7033@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/sdkUserId4410\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"sdkUserId4410\",\r\n \"properties\": {\r\n \"firstName\": \"sdkFirst4361\",\r\n \"lastName\": \"sdkLast7487\",\r\n \"email\": \"sdkFirst.Last1175@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-11T02:04:54.437Z\",\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.Last1175@contoso.com\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId6677/users/sdkUserId113?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDY2NzcvdXNlcnMvc2RrVXNlcklkMTEzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653/users/sdkUserId4410?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDI2NTMvdXNlcnMvc2RrVXNlcklkNDQxMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc46ba46-fa9e-49e9-afb8-e6f191ccd5d6" + "10218b9d-63fc-4857-964b-f5f7bbc0d3fd" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:09 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZA0=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcGU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0a2999d8-6119-4342-8179-ac2c2dc2e414" + "bbfb0949-2702-4df1-89de-e0bceb252018" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "3efa160c-1a10-444d-97d7-d0f55f959a10" + "79f27744-4167-4091-94bf-96c36c04466e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040710Z:3efa160c-1a10-444d-97d7-d0f55f959a10" + "WESTUS2:20190411T020455Z:79f27744-4167-4091-94bf-96c36c04466e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:54 GMT" + ], "Content-Length": [ - "570" + "573" ], "Content-Type": [ "application/json; charset=utf-8" @@ -472,59 +472,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId6677/users/sdkUserId113\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"sdkUserId113\",\r\n \"properties\": {\r\n \"firstName\": \"sdkFirst1139\",\r\n \"lastName\": \"sdkLast4702\",\r\n \"email\": \"sdkFirst.Last7033@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-02T04:07:09.65Z\",\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/sdkGroupId2653/users/sdkUserId4410\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"sdkUserId4410\",\r\n \"properties\": {\r\n \"firstName\": \"sdkFirst4361\",\r\n \"lastName\": \"sdkLast7487\",\r\n \"email\": \"sdkFirst.Last1175@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-11T02:04:54.437Z\",\r\n \"note\": \"dummy note\",\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId6677/users/sdkUserId113?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDY2NzcvdXNlcnMvc2RrVXNlcklkMTEzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653/users/sdkUserId4410?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDI2NTMvdXNlcnMvc2RrVXNlcklkNDQxMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f12be169-08c5-4d3b-91ad-da1cd55091e7" + "7b5b9350-8660-4ada-99cd-3b9c8af4b094" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:10 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "27b9ea5c-68d5-4e7d-ad57-57710a9651ea" + "4fc0c48f-d7fa-4420-bd04-423a0fde39b7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "40475f51-667e-4ccc-911d-f999beff18f7" + "cdcf57e0-8802-444f-8c09-032f2d00f7c4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040710Z:40475f51-667e-4ccc-911d-f999beff18f7" + "WESTUS2:20190411T020455Z:cdcf57e0-8802-444f-8c09-032f2d00f7c4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:54 GMT" + ], "Content-Length": [ "0" ], @@ -536,55 +536,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId6677/users/sdkUserId113?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDY2NzcvdXNlcnMvc2RrVXNlcklkMTEzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653/users/sdkUserId4410?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDI2NTMvdXNlcnMvc2RrVXNlcklkNDQxMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0620ca36-2c4d-483d-b57d-d212ad0b1667" + "6e7784fd-a612-473c-8ff1-821c436238d0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:11 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3a9b1ad9-71f0-49f6-aff2-c4422bcc30af" + "58cb201a-afaf-457b-a8aa-9d01483f2bcd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "02ea8047-97d0-49f7-b275-d682a794b9d3" + "05ba59ac-e639-4eb7-b689-391e2bfaefce" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040712Z:02ea8047-97d0-49f7-b275-d682a794b9d3" + "WESTUS2:20190411T020455Z:05ba59ac-e639-4eb7-b689-391e2bfaefce" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:55 GMT" + ], "Content-Length": [ "0" ], @@ -596,186 +596,186 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId6677/users/sdkUserId113?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDY2NzcvdXNlcnMvc2RrVXNlcklkMTEzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653/users/sdkUserId4410?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDI2NTMvdXNlcnMvc2RrVXNlcklkNDQxMD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7567afc-55c3-4a79-8241-3489b6bd397c" + "3eabbd2c-f8e3-450c-a2b0-08ba25b139bb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:11 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ac3f8448-c536-46f3-a13e-4b52f168278d" + "bee33657-f896-4faf-9ccf-44e6f278e386" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "3accdfea-9d00-4178-a7d8-c5e50cccc5ad" + "38288cf1-6ee8-432f-80c2-b62a19d35af7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040712Z:3accdfea-9d00-4178-a7d8-c5e50cccc5ad" + "WESTUS2:20190411T020455Z:38288cf1-6ee8-432f-80c2-b62a19d35af7" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:04:55 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/sdkUserId113?deleteSubscriptions=true&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy9zZGtVc2VySWQxMTM/ZGVsZXRlU3Vic2NyaXB0aW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/sdkUserId4410?deleteSubscriptions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy9zZGtVc2VySWQ0NDEwP2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c19fa729-769f-446f-ab02-d301a21d3214" + "4de6ac31-427d-42ec-b5bf-fcb308540aff" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:12 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b41af782-6cfe-4789-bacd-689654a05767" + "597d3be9-6817-4f40-a308-dc91d0d3a1e8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "8409e59c-f394-4343-b443-bb0451928d36" + "32d0be74-e9ac-484a-9b74-c1cf4ec5d409" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040712Z:8409e59c-f394-4343-b443-bb0451928d36" + "WESTUS2:20190411T020456Z:32d0be74-e9ac-484a-9b74-c1cf4ec5d409" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:04:55 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId6677?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDY2Nzc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2653?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDI2NTM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f008ead7-ba8c-4a1a-9bb9-ba1b1f33d340" + "b0b89aa0-ab71-4528-8c8b-971f7486bd4d" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:12 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8ca9a667-b6f1-4323-9acb-2507072ec232" + "2ab011a7-b224-4641-ae28-46746b915455" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "b1a9600b-5abf-4808-8a9b-e1cee5b3e4d8" + "94bf23b5-e3db-4671-a82e-8f87a6840d4a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040713Z:b1a9600b-5abf-4808-8a9b-e1cee5b3e4d8" + "WESTUS2:20190411T020456Z:94bf23b5-e3db-4671-a82e-8f87a6840d4a" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:04:56 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -784,12 +784,12 @@ ], "Names": { "CreateListUpdateDelete": [ - "sdkUserId113", - "sdkGroupId6677", - "sdkGroup1364", - "sdkFirst1139", - "sdkLast4702", - "sdkFirst.Last7033" + "sdkUserId4410", + "sdkGroupId2653", + "sdkGroup9018", + "sdkFirst4361", + "sdkLast7487", + "sdkFirst.Last1175" ] }, "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 73e4f72567fb..ebdd51b4e5f0 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2f09c6d0-a9a9-4b9d-b4bb-9ba1a1eb9b3d" + "2beffbef-8a19-48cb-95b5-8fb264ad401a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:26 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b0cc7209-bc84-451f-b8ee-ce42a4571fed", - "2d3ef270-aad0-4915-9b14-9929ad149088" + "bc233ea4-47bc-4f33-add5-c898c24d49aa", + "21cab13a-b1d5-4905-8119-c192aca65565" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "802c5a5a-edc7-46dc-8939-f47e3bdf3a98" + "0e1296d8-ca96-4405-8c24-862534f39279" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040927Z:802c5a5a-edc7-46dc-8939-f47e3bdf3a98" + "WESTUS2:20190411T020938Z:0e1296d8-ca96-4405-8c24-862534f39279" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:38 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6bf426a7-57dc-4e87-8d4c-50b4af157514" + "c1bc97ac-4ec0-4346-843f-a97350eb30e5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:26 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "35b7d060-13ff-45d5-918f-549895b66312" + "40abada9-8dc1-490a-bba7-65df4c7d301b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "94b39931-520b-4cf5-802c-c1504fd0bc0f" + "3c9685a6-cc16-4c64-a449-d4f666c0890a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040927Z:94b39931-520b-4cf5-802c-c1504fd0bc0f" + "WESTUS2:20190411T020938Z:3c9685a6-cc16-4c64-a449-d4f666c0890a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:38 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "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", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/facebook?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycy9mYWNlYm9vaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"clientId\": \"clientId5181\",\r\n \"clientSecret\": \"clientSecret4134\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"clientId\": \"clientId7017\",\r\n \"clientSecret\": \"clientSecret7334\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "14f8b852-c7a9-4e8b-8274-f5df740779a7" + "4b68142a-e844-4787-9553-de292b190b26" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,36 +168,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:27 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZFk=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcTU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c8107a4f-44c5-4ee6-b3b6-05addd99565d" + "b8617fe6-d337-4f4d-a7ea-3a919868d5b1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "8713e95f-4078-44eb-9c3e-817d25100b81" + "b738cba3-942c-4b1c-ac4e-f6995bee2785" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040928Z:8713e95f-4078-44eb-9c3e-817d25100b81" + "WESTUS2:20190411T020940Z:b738cba3-942c-4b1c-ac4e-f6995bee2785" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:39 GMT" + ], "Content-Length": [ "398" ], @@ -208,59 +208,59 @@ "-1" ] }, - "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\": \"clientId5181\",\r\n \"clientSecret\": \"clientSecret4134\",\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\": \"clientId7017\",\r\n \"clientSecret\": \"clientSecret7334\",\r\n \"type\": \"facebook\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a635557b-fb75-4372-bae8-4093528c4426" + "15ef5b05-262f-4f26-87e2-bdc3d9de5474" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:27 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f3ba331-067d-468b-b86e-53c5759c09f5" + "fa093a5f-cbec-4b0b-9fc6-6a01d07ea622" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "c4c9aea8-f8cc-48a3-9e41-79d2c461340b" + "db61a351-e56e-4415-bc30-63990f978820" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040928Z:c4c9aea8-f8cc-48a3-9e41-79d2c461340b" + "WESTUS2:20190411T020940Z:db61a351-e56e-4415-bc30-63990f978820" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:39 GMT" + ], "Content-Length": [ "463" ], @@ -271,62 +271,62 @@ "-1" ] }, - "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\": \"clientId5181\",\r\n \"clientSecret\": \"clientSecret4134\",\r\n \"type\": \"facebook\"\r\n }\r\n }\r\n ]\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\": \"clientId7017\",\r\n \"clientSecret\": \"clientSecret7334\",\r\n \"type\": \"facebook\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "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", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/facebook?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycy9mYWNlYm9vaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b17a4414-7b48-4325-a6b0-0a2965b80b4e" + "b5a32760-1111-4619-8dda-7364b029b062" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:27 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZFk=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcTU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c109d31b-ecad-4947-b875-f0af77fae3e4" + "4e5816b2-5fd3-405f-81b3-f69f84545145" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "8bc87fd2-aefe-4f5b-abf5-61a7dd6d8a16" + "d5024a2f-36da-4364-a704-8005d68c45ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040928Z:8bc87fd2-aefe-4f5b-abf5-61a7dd6d8a16" + "WESTUS2:20190411T020940Z:d5024a2f-36da-4364-a704-8005d68c45ac" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:39 GMT" + ], "Content-Length": [ "0" ], @@ -338,58 +338,58 @@ "StatusCode": 200 }, { - "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", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/facebook?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycy9mYWNlYm9vaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "956415f9-9299-4104-8e4e-e07005844a3d" + "c0d56f77-6e1d-4408-9265-be8b8602a19a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:28 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZFo=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcTY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bbbca6f1-a521-469c-b7e9-6227026cbd53" + "e92e35b4-f17a-4028-9425-fdb5e31c1484" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "eb13e75e-7781-4a1d-8e7d-a12d183e2d2d" + "756edc98-7b73-4ba2-927f-ab81500c6535" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040928Z:eb13e75e-7781-4a1d-8e7d-a12d183e2d2d" + "WESTUS2:20190411T020940Z:756edc98-7b73-4ba2-927f-ab81500c6535" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:40 GMT" + ], "Content-Length": [ "0" ], @@ -401,25 +401,25 @@ "StatusCode": 200 }, { - "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", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/facebook?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycy9mYWNlYm9vaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"clientSecret6930\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"clientSecret6397\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ad577f3b-18c6-4b1f-80e0-efed28839147" + "b4246e31-3520-4a76-aee8-f66977f6a5d7" ], "If-Match": [ - "\"AAAAAAAAZFk=\"" + "\"AAAAAAAAcTU=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -432,33 +432,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:27 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03f1ffbc-2dca-413a-b7f9-c66e8c94f364" + "16bc7169-c5ea-49f7-99bd-9fe711bf1aaa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "b1b47377-0ed3-4207-ac8c-d6553cf629b3" + "6b6ef19b-a3ee-47f5-9125-aab38268874c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040928Z:b1b47377-0ed3-4207-ac8c-d6553cf629b3" + "WESTUS2:20190411T020940Z:6b6ef19b-a3ee-47f5-9125-aab38268874c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:39 GMT" + ], "Expires": [ "-1" ] @@ -467,58 +467,58 @@ "StatusCode": 204 }, { - "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", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/facebook?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycy9mYWNlYm9vaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4bb4ebdd-d6d5-44b2-8876-b7d478800a2d" + "77abadff-d48b-4afc-9f2e-df4ecc14dd33" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:27 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZFo=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcTY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9304cd17-439c-4ae7-ac2d-1b9b0a7f469f" + "849f89b4-2abc-4f25-ad3e-d787d8b7fa36" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "e23172e6-7c4c-4340-b868-4760edf7093f" + "1203b5c9-2f1d-4234-8eda-077ee710fb58" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040928Z:e23172e6-7c4c-4340-b868-4760edf7093f" + "WESTUS2:20190411T020940Z:1203b5c9-2f1d-4234-8eda-077ee710fb58" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:39 GMT" + ], "Content-Length": [ "398" ], @@ -529,59 +529,59 @@ "-1" ] }, - "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\": \"clientId5181\",\r\n \"clientSecret\": \"clientSecret6930\",\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\": \"clientId7017\",\r\n \"clientSecret\": \"clientSecret6397\",\r\n \"type\": \"facebook\"\r\n }\r\n}", "StatusCode": 200 }, { - "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", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/facebook?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycy9mYWNlYm9vaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2cf35bf-bafe-4644-9ca5-fa77afb5d0b7" + "a0ba0b27-53d9-46ea-bd75-75cfa3d2513a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8099b4b2-555f-4a3b-a273-3d8f10f51a04" + "08f83e43-8df5-40c0-b9fb-5cd54d27083f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "4d731d84-7985-4996-814b-23e9cd6a4042" + "f2321231-b806-48fe-a133-173255e0d1e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040929Z:4d731d84-7985-4996-814b-23e9cd6a4042" + "WESTUS2:20190411T020941Z:f2321231-b806-48fe-a133-173255e0d1e8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:40 GMT" + ], "Content-Length": [ "92" ], @@ -596,121 +596,121 @@ "StatusCode": 404 }, { - "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", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/facebook?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycy9mYWNlYm9vaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a58140c1-41c8-40ce-be6f-48567c09d8d6" + "1b723260-1629-4f87-9f0f-85c9f4c2c873" ], "If-Match": [ - "\"AAAAAAAAZFo=\"" + "\"AAAAAAAAcTY=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:28 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c06e71fb-d8c0-476e-9fb1-de9dba1e1c26" + "b5c92455-6449-418f-8dad-21b873552a28" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "8e033ced-491c-4137-aff1-8238cb44aadd" + "d47c8724-b54d-4a64-a7a3-dba32f7447bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040929Z:8e033ced-491c-4137-aff1-8238cb44aadd" + "WESTUS2:20190411T020941Z:d47c8724-b54d-4a64-a7a3-dba32f7447bc" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:09:40 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "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", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/facebook?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycy9mYWNlYm9vaz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f9ab75a-c5b8-4acd-b296-78e20f9a6720" + "6a4af49f-511a-4458-838c-6b4f3aa6881f" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "52eb5929-b5c1-472d-93d9-8d16727615c8" + "7dba7601-b0f6-4710-8846-c19e5c0552bc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "e76f706e-8fd1-438c-bbb5-eefac03a92c3" + "b077ba6f-5e0b-4d3a-8ec4-87e3228aac06" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040930Z:e76f706e-8fd1-438c-bbb5-eefac03a92c3" + "WESTUS2:20190411T020941Z:b077ba6f-5e0b-4d3a-8ec4-87e3228aac06" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:40 GMT" + ], "Expires": [ "-1" ] @@ -721,9 +721,9 @@ ], "Names": { "CreateListUpdateDelete": [ - "clientId5181", - "clientSecret4134", - "clientSecret6930" + "clientId7017", + "clientSecret7334", + "clientSecret6397" ] }, "Variables": { diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.IssueTests/CreateUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.IssueTests/CreateUpdateDelete.json index 8439cf0998fb..eb3ee9295219 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.IssueTests/CreateUpdateDelete.json +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.IssueTests/CreateUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9669d837-6103-4f02-bdee-4f3097dd37ff" + "e6e325e1-fbfc-4e23-b717-30c2b563d943" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:40 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ffe3f74d-1a9e-406d-834d-4423d6770866", - "3c4af385-3084-482b-9ca9-940e5b7fe511" + "aaf04233-4f5a-4a44-8142-5c04436f8702", + "84e47f34-7be3-447f-a9cf-828389f75211" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "f8f92159-6945-4819-b625-48c048f6f711" + "d01df760-93b8-4c46-8fc9-0d752ee735fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041240Z:f8f92159-6945-4819-b625-48c048f6f711" + "WESTUS2:20190411T020416Z:d01df760-93b8-4c46-8fc9-0d752ee735fb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:16 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8121490-80db-4b3c-aa46-54bad3cc1175" + "890b91a1-c659-4aa7-90c5-b6e6639cc30c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:40 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "032e7043-b194-43d1-a24d-cc1b53a63887" + "b9f2e366-4332-4a9c-b056-4811e9090e93" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "d8eea6f4-66b5-45de-84cc-2ba0f7dafab3" + "4465a9ee-a0ab-4098-b989-5eb4e103b23f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041241Z:d8eea6f4-66b5-45de-84cc-2ba0f7dafab3" + "WESTUS2:20190411T020416Z:4465a9ee-a0ab-4098-b989-5eb4e103b23f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:16 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2018-01-01&expandApiVersionSet=false", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEmZXhwYW5kQXBpVmVyc2lvblNldD1mYWxzZQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60f0b80f-7bcb-486f-863f-c2d1c5f88dd9" + "4b0cc49c-13de-4737-a31e-04fa2150e8aa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:40 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf5ceab0-2e8d-4f55-8211-12768215d105" + "86126222-afed-47b9-b863-90a0dbb2ae51" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "46ebb7a0-f522-4849-a1db-2e8932a20296" + "582f951c-409e-4479-9c9d-1382432fb6be" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041241Z:46ebb7a0-f522-4849-a1db-2e8932a20296" + "WESTUS2:20190411T020417Z:582f951c-409e-4479-9c9d-1382432fb6be" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:16 GMT" + ], "Content-Length": [ "676" ], @@ -203,55 +203,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8284d6b4-d132-4896-8c95-bf4b07d93e3c" + "e62813d7-a69c-473b-b56c-27cec83dfc56" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:40 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "73d6d97a-959b-4094-a94b-e5ce96e5643e" + "b2ba0199-69f0-487e-b6a6-241bbe133562" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-correlation-request-id": [ - "522b79d3-0c44-4830-8b80-608cee33307d" + "f8530e57-d38b-40dc-8a32-d46109ce09b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041241Z:522b79d3-0c44-4830-8b80-608cee33307d" + "WESTUS2:20190411T020417Z:f8530e57-d38b-40dc-8a32-d46109ce09b2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:16 GMT" + ], "Content-Length": [ "667" ], @@ -266,55 +266,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75edba3a-816e-4729-b7ba-2140a5eec2b5" + "b4e50ce5-651c-4f13-99be-30d52b850d81" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:40 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1b2a178d-192a-4cfe-bb50-fb47de2bd035" + "4405a494-98a9-4dcb-8845-347e8bc42ccd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-correlation-request-id": [ - "499e3282-7e26-48d0-86ba-2468337ec3f8" + "d3550ef1-9112-4778-be13-d72df551096b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041241Z:499e3282-7e26-48d0-86ba-2468337ec3f8" + "WESTUS2:20190411T020417Z:d3550ef1-9112-4778-be13-d72df551096b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:17 GMT" + ], "Content-Length": [ "19" ], @@ -329,66 +329,66 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"createdDate\": \"2019-04-02T04:12:41.3932901Z\",\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"title\": \"title9046\",\r\n \"description\": \"description3263\",\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"createdDate\": \"2019-04-11T02:04:17.495031Z\",\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"title\": \"title2214\",\r\n \"description\": \"description9766\",\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "47314dfe-1078-4de8-86cf-b81fdd330bf3" + "0a620899-8da8-46a6-8217-0227ad252ff4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "494" + "493" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:41 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZR4=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcBw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1d8a28cf-9cba-4e8f-98e0-db3cfdbf782a" + "3fbae2e8-5f1d-4a1b-9e55-388642a67fae" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "215640cc-ced1-439b-aae8-04c008f2fca6" + "da7211cb-706c-4d9e-ba51-52d611e36977" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041241Z:215640cc-ced1-439b-aae8-04c008f2fca6" + "WESTUS2:20190411T020418Z:da7211cb-706c-4d9e-ba51-52d611e36977" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:18 GMT" + ], "Content-Length": [ - "670" + "669" ], "Content-Type": [ "application/json; charset=utf-8" @@ -397,62 +397,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues\",\r\n \"name\": \"newIssue8888\",\r\n \"properties\": {\r\n \"title\": \"title9046\",\r\n \"description\": \"description3263\",\r\n \"createdDate\": \"2019-04-02T04:12:41.3932901Z\",\r\n \"state\": \"proposed\",\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"comments\": [],\r\n \"attachments\": []\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/issues/newIssue2091\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues\",\r\n \"name\": \"newIssue2091\",\r\n \"properties\": {\r\n \"title\": \"title2214\",\r\n \"description\": \"description9766\",\r\n \"createdDate\": \"2019-04-11T02:04:17.495031Z\",\r\n \"state\": \"proposed\",\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"comments\": [],\r\n \"attachments\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dffe017f-89a3-4472-98ed-bb7a4fd12e39" + "46b8760f-887f-47ba-856d-2e0c107cb7c7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:41 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZR4=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcBw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1dce124c-dcb6-4067-b863-10b71f2e9633" + "07f7d809-195d-427f-b5f2-8316f125275e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-correlation-request-id": [ - "e76177aa-c95f-49cb-9178-87ec5df37115" + "e825b2e5-282e-4cc3-9619-89ce28077397" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041242Z:e76177aa-c95f-49cb-9178-87ec5df37115" + "WESTUS2:20190411T020418Z:e825b2e5-282e-4cc3-9619-89ce28077397" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:18 GMT" + ], "Content-Length": [ "793" ], @@ -463,62 +463,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues\",\r\n \"name\": \"newIssue8888\",\r\n \"properties\": {\r\n \"title\": \"title9046\",\r\n \"description\": \"description3263\",\r\n \"createdDate\": \"2019-04-02T04:12:41.393Z\",\r\n \"state\": \"proposed\",\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\"\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/issues/newIssue2091\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues\",\r\n \"name\": \"newIssue2091\",\r\n \"properties\": {\r\n \"title\": \"title2214\",\r\n \"description\": \"description9766\",\r\n \"createdDate\": \"2019-04-11T02:04:17.497Z\",\r\n \"state\": \"proposed\",\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4104f28a-200a-4ddd-ba3a-ebf2fe8f7474" + "21c9be83-11e3-4a3c-9630-0838f38bb99e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:41 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZR8=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcB0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7bdd29ff-08d7-4999-bc22-d344c5f4ca32" + "6186c2d1-bfa8-4473-ac8c-9cafdddf1798" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-correlation-request-id": [ - "3c091587-982d-4344-b45d-1bee67f4a90c" + "42373b9f-b420-43bc-ac04-37e346940f59" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041242Z:3c091587-982d-4344-b45d-1bee67f4a90c" + "WESTUS2:20190411T020418Z:42373b9f-b420-43bc-ac04-37e346940f59" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:18 GMT" + ], "Content-Length": [ "807" ], @@ -529,59 +529,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues\",\r\n \"name\": \"newIssue8888\",\r\n \"properties\": {\r\n \"title\": \"updatedTitle9659\",\r\n \"description\": \"updateddescription8458\",\r\n \"createdDate\": \"2019-04-02T04:12:41.393Z\",\r\n \"state\": \"proposed\",\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\"\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/issues/newIssue2091\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues\",\r\n \"name\": \"newIssue2091\",\r\n \"properties\": {\r\n \"title\": \"updatedTitle5641\",\r\n \"description\": \"updateddescription6264\",\r\n \"createdDate\": \"2019-04-11T02:04:17.497Z\",\r\n \"state\": \"proposed\",\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40dd0abe-3245-4c21-8eb0-2f242da458bd" + "02ec8267-6f36-4ff5-8bc7-24cca95e630a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1987645f-740d-491d-851a-f9cde083e1f6" + "4c1f1dc0-54bb-4cdc-a8c7-1da32b6462f5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11986" ], "x-ms-correlation-request-id": [ - "25d34024-e3a0-4649-9ad8-c09e189bdf93" + "4b70bb5a-1baa-4160-a722-eb8be412887a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041245Z:25d34024-e3a0-4649-9ad8-c09e189bdf93" + "WESTUS2:20190411T020421Z:4b70bb5a-1baa-4160-a722-eb8be412887a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:21 GMT" + ], "Content-Length": [ "81" ], @@ -596,22 +596,25 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"updatedTitle9659\",\r\n \"description\": \"updateddescription8458\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"updatedTitle5641\",\r\n \"description\": \"updateddescription6264\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "82cb7a8f-6d80-4c01-ac69-dac68e654998" + "00dc02fe-4756-4c31-befb-6ab9f4312f4d" ], - "accept-language": [ + "If-Match": [ + "*" + ], + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -624,33 +627,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:41 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e205c730-a0b2-4e8e-b4e8-464c8ef8e53f" + "d0917c64-c611-4078-9eb4-c82d637fede8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "25e69e6d-bea3-4759-84f3-cc34edc12f0c" + "75786b05-a22c-4f8d-8fe3-386470fcb4e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041242Z:25e69e6d-bea3-4759-84f3-cc34edc12f0c" + "WESTUS2:20190411T020418Z:75786b05-a22c-4f8d-8fe3-386470fcb4e5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:18 GMT" + ], "Expires": [ "-1" ] @@ -659,55 +662,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888/comments?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODgvY29tbWVudHM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/comments?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvY29tbWVudHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8681c53d-bf9f-4222-aa2e-85b9b03837b8" + "715a4eb6-5773-4d0d-8e14-3c9a9dd070cc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:41 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2bd5814-1aec-4b93-ac10-deeb0aa77e54" + "f80279d7-3358-411d-b095-d3964382ca68" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11993" ], "x-ms-correlation-request-id": [ - "738a7d39-1584-4716-a83f-78d0b484572f" + "0516d962-146f-435a-8557-71a4929ebe96" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041242Z:738a7d39-1584-4716-a83f-78d0b484572f" + "WESTUS2:20190411T020419Z:0516d962-146f-435a-8557-71a4929ebe96" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:18 GMT" + ], "Content-Length": [ "19" ], @@ -722,22 +725,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888/comments/newComment675?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODgvY29tbWVudHMvbmV3Q29tbWVudDY3NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/comments/newComment8192?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvY29tbWVudHMvbmV3Q29tbWVudDgxOTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"text\": \"issuecommenttext8449\",\r\n \"createdDate\": \"2019-04-02T04:12:42.3949273Z\",\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"text\": \"issuecommenttext6995\",\r\n \"createdDate\": \"2019-04-11T02:04:19.0467367Z\",\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bd973380-682e-4c40-8e5d-10c220f2bcac" + "6a3bc514-44ba-4a3c-9f4b-f00fd9a5773b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -750,38 +753,38 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:42 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZR8=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcB0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2341ff7-e5da-4b92-bf96-0829b6c2d990" + "50f050ae-dc92-44bf-9fd9-42806647c88e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "7e4959c3-3cf5-4f16-8dcd-67b602bce732" + "7044dc38-af3e-4354-9739-c44f3767b4e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041242Z:7e4959c3-3cf5-4f16-8dcd-67b602bce732" + "WESTUS2:20190411T020419Z:7044dc38-af3e-4354-9739-c44f3767b4e0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:19 GMT" + ], "Content-Length": [ - "426" + "428" ], "Content-Type": [ "application/json; charset=utf-8" @@ -790,62 +793,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888/comments/newComment675\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues/comments\",\r\n \"name\": \"newComment675\",\r\n \"properties\": {\r\n \"text\": \"issuecommenttext8449\",\r\n \"createdDate\": \"2019-04-02T04:12:42.3949273Z\"\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/issues/newIssue2091/comments/newComment8192\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues/comments\",\r\n \"name\": \"newComment8192\",\r\n \"properties\": {\r\n \"text\": \"issuecommenttext6995\",\r\n \"createdDate\": \"2019-04-11T02:04:19.0467367Z\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888/comments/newComment675?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODgvY29tbWVudHMvbmV3Q29tbWVudDY3NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/comments/newComment8192?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvY29tbWVudHMvbmV3Q29tbWVudDgxOTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c581c4fd-7191-4681-87fe-21cee0bdb841" + "05f1d6da-86c4-4545-87de-d60214e28508" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:42 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZSA=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcB4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2bf691db-e1bd-4995-9200-19dcceedb2e6" + "5ff52de0-2bcf-43a5-8080-f5719a3daa12" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11992" ], "x-ms-correlation-request-id": [ - "f6229f30-d5fd-4f09-83cb-e2ca1a411fbc" + "4cf7f0ea-f19d-46fe-a4e9-475a58e965a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041242Z:f6229f30-d5fd-4f09-83cb-e2ca1a411fbc" + "WESTUS2:20190411T020419Z:4cf7f0ea-f19d-46fe-a4e9-475a58e965a6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:19 GMT" + ], "Content-Length": [ "0" ], @@ -857,121 +860,121 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888/comments/newComment675?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODgvY29tbWVudHMvbmV3Q29tbWVudDY3NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/comments/newComment8192?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvY29tbWVudHMvbmV3Q29tbWVudDgxOTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "027dd03a-efb5-4d98-b20d-8e137fae1291" + "fa38e784-1206-4c12-aac0-4fea7354e6b6" ], "If-Match": [ - "\"AAAAAAAAZSA=\"" + "\"AAAAAAAAcB4=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f7a3505-b0cd-45d5-8211-d6937c82d03b" + "d2b8b009-2a57-410a-8282-c10cb6dc5e44" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "14ce6b19-f18e-4940-8702-d2922128a164" + "cce0c1c1-a8fb-4be4-8f9c-5f544f0a3c80" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041243Z:14ce6b19-f18e-4940-8702-d2922128a164" + "WESTUS2:20190411T020419Z:cce0c1c1-a8fb-4be4-8f9c-5f544f0a3c80" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:04:19 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888/comments/newComment675?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODgvY29tbWVudHMvbmV3Q29tbWVudDY3NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/comments/newComment8192?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvY29tbWVudHMvbmV3Q29tbWVudDgxOTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a275063b-c770-4008-afe3-97cabf16bcfb" + "826afef5-45b1-4888-9a52-f1c4f1ab4a41" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "954c6a02-53a6-46ab-a4fc-94dae387e848" + "efef25a0-4198-4ef6-a78e-d414ee5b73af" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14995" ], "x-ms-correlation-request-id": [ - "29dfe445-43ef-466d-aa7a-3376ef98d34f" + "1f326f88-48cd-4e64-a178-88a3f9361444" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041246Z:29dfe445-43ef-466d-aa7a-3376ef98d34f" + "WESTUS2:20190411T020422Z:1f326f88-48cd-4e64-a178-88a3f9361444" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:21 GMT" + ], "Expires": [ "-1" ] @@ -980,55 +983,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888/comments/newComment675?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODgvY29tbWVudHMvbmV3Q29tbWVudDY3NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/comments/newComment8192?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvY29tbWVudHMvbmV3Q29tbWVudDgxOTI/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65874af1-1e5f-433e-a9eb-90f8e49eb00d" + "7ae0cbf6-8c34-4957-8f76-1bbd3667641b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "faccd9f1-f5d8-4236-a275-1dc577c94392" + "f051380e-255f-49a0-80a5-7e5d8fdafeb3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11991" ], "x-ms-correlation-request-id": [ - "14fa8ac3-991b-4475-aa51-662a97e6d0c9" + "c53aa3e7-4728-4388-99dc-5f4b48dab270" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041243Z:14fa8ac3-991b-4475-aa51-662a97e6d0c9" + "WESTUS2:20190411T020420Z:c53aa3e7-4728-4388-99dc-5f4b48dab270" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:19 GMT" + ], "Content-Length": [ "89" ], @@ -1043,55 +1046,55 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888/attachments?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODgvYXR0YWNobWVudHM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/attachments?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvYXR0YWNobWVudHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be0d2990-0a0b-4e3f-8d7c-b387fdaaeaa7" + "40b1688b-8738-4cd9-ac47-2831f5ca017d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "896d6bba-340c-4b7c-949c-e07b95eb6bea" + "aa782111-3207-4821-8fc3-a21219f662c0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11990" ], "x-ms-correlation-request-id": [ - "d116c6c9-f536-4b2a-b146-25b08b59840f" + "e24255ff-18bf-40b4-9167-2b23cebfa334" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041244Z:d116c6c9-f536-4b2a-b146-25b08b59840f" + "WESTUS2:20190411T020420Z:e24255ff-18bf-40b4-9167-2b23cebfa334" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:19 GMT" + ], "Content-Length": [ "19" ], @@ -1106,22 +1109,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888/attachments/newattachment6519?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODgvYXR0YWNobWVudHMvbmV3YXR0YWNobWVudDY1MTk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/attachments/newattachment8001?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvYXR0YWNobWVudHMvbmV3YXR0YWNobWVudDgwMDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"attachment4219\",\r\n \"contentFormat\": \"image/jpeg\",\r\n \"content\": \"/9j/4AAQSkZJRgABAQEAkACQAAD/4RCcRXhpZgAATU0AKgAAAAgABAE7AAIAAAAOAAAISodpAAQAAAABAAAIWJydAAEAAAAcAAAQeOocAAcAAAgMAAAAPgAAAAAc6gAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFNhbWlyIFNvbGFua2kAAAHqHAAHAAAIDAAACGoAAAAAHOoAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAYQBtAGkAcgAgAFMAbwBsAGEAbgBrAGkAAAD/4QpmaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49J++7vycgaWQ9J1c1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCc/Pg0KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyI+PHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj48cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0idXVpZDpmYWY1YmRkNS1iYTNkLTExZGEtYWQzMS1kMzNkNzUxODJmMWIiIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIvPjxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSJ1dWlkOmZhZjViZGQ1LWJhM2QtMTFkYS1hZDMxLWQzM2Q3NTE4MmYxYiIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIj48ZGM6Y3JlYXRvcj48cmRmOlNlcSB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPjxyZGY6bGk+U2FtaXIgU29sYW5raTwvcmRmOmxpPjwvcmRmOlNlcT4NCgkJCTwvZGM6Y3JlYXRvcj48L3JkZjpEZXNjcmlwdGlvbj48L3JkZjpSREY+PC94OnhtcG1ldGE+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDw/eHBhY2tldCBlbmQ9J3cnPz7/2wBDAAcFBQYFBAcGBQYIBwcIChELCgkJChUPEAwRGBUaGRgVGBcbHichGx0lHRcYIi4iJSgpKywrGiAvMy8qMicqKyr/2wBDAQcICAoJChQLCxQqHBgcKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKir/wAARCALdBZMDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD6RooooAKKqzTT/axDAI/ubyXz647Uf6f/ANO//j1AFqiqv+n/APTv/wCPUf6f/wBO/wD49QBaoqr/AKf/ANO//j1H+n/9O/8A49QBaoqr/p//AE7/APj1H+n/APTv/wCPUAWqKq/6f/07/wDj1H+n/wDTv/49QBaoqr/p/wD07/8Aj1H+n/8ATv8A+PUAWqKq/wCn/wDTv/49R/p//Tv/AOPUAWqKq/6f/wBO/wD49R/p/wD07/8Aj1AFqiqv+n/9O/8A49T7SaSZJPNChkcp8vTigCeiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAKv/MW/7Yf+zVaqr/zFv+2H/s1WqACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqrZf8vH/AF3arVVbL/l4/wCu7UAWqKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAq/8AMW/7Yf8As1Wqq/8AMW/7Yf8As1WqACsTxHr11o8unwafpy6hcX8zRJG1x5IGELZztPYVt1yPjU3o1jw0dKW3a7+2yeWLlmWM/uXzkqCeme1IO5oaR4iurrV30rWdKbTL7yTPEonE0csYIBIYAcgkZBFb1cd4ekur7xhezeITHDq9jB5MVrCpEQhY58xWJy+SAM4GMYxXOafpupeKtHk1WXQ7a6vbp5DFfvqjxy25DsFCKIzs246A84560+iDqz1SiuE1nSNTlOlXevaadetYLIR3llBIMrPxmZUOBJ3GOozxUOrLpupab4Pj0SaS30+TUdkZVmV0Xy5AyZPIPVfUdqdvzt+Nhefkeg0Vxd1pFj4Z8WaFJoMX2Q38729zBGx2zJ5bNuIz1UgfN155qPQdB07xbY3Wq+IYft11NdTRqJHb/RkRyqogB+XAXORzk0v6/r7x7f16/wCR3FFeYzvc33hXTrOe8mc23iQWcV1uzI0aSMFbd6gcZ9q2J9KsvDfj7QTo0JtV1ETw3SK5ImCx71ZgTywI69eaFrr/AFsn+oPTT+t3/kdtRXngsLTR9eafxfpcs8suoeZa60shdUy+Y0bB3RgcLjG00l3Bd+JPFesx3OiWurwWEqW8MV1ftCsIKBiwQIwJJJ+brwAOlC1X9eX+Y+p6JRWJ4TstT0/Qha6wV8yOVxEBOZisWcopcgFiBxnHatumIKq2X/Lx/wBd2q1VWy/5eP8Aru1IC1RRRQA2QssTtGm9wpKrnG4+me1Yh1rVRfizOjJ5zRmUD7YMbQcddvqa3ayH/wCRyi/68G/9DFb0eXXmjfTz/RnPX5rJxk1qu3V+aZpwPI9ujTxiKQjLIG3bT6Z71JXP6lYx6j4rht5y3kmyYyKrFd43jjI5xnH5U29trO4vfsdvpb37WkSRlXm2xxAjgcnk474J6VSoxdtd9fT72S60ldW209Xa+yR0VFcja3U8ugadZtM8YnvGt3kDksEBb5Q34AZrS1K0ttB0S8utKgWCYRbdyk+uM/UZzmnLD8suRvVuy++wo4nmjzpaJXf9f8MblFcvFpF5FNbTWenRW0qSK0lwLwu0i5+YN8vOa6isqlNQtZ3/AK8mzWlUlUvdW+/9UgooorI2CiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAKv8AzFv+2H/s1Wqq/wDMW/7Yf+zVaoAKo32kwahfafdzPIslhK0sQQgBiVK88dME9MVeooAzr3RLa91ix1MvLDdWe4K8TAeYjdUfIOV7+x6Gs1/BdoLq4ksdS1PT4bpzJNa2lwEjdj1I4JUnvtIro6KAMjUPD/22eOSDVtT08JEIvLtJwFZR6hlbn3GD71z/AIk0Kwt18K6RDGyWg1EgYkO/PlSNu3Zzu3c565rt6KAMXTvC9vY6oNRuL291K7RDHFLeyhvJU9QoUADOOTjJ9ahuPB9tJe3FxY6jqWm/am33EVlOESVu7YKnax7lcGugooAyH8MacdO0+xgR7e30+4S4hSJurKSfmJyTkkk9z61Pe6Nb3+radqMzyrNpzSNEqkbWLrtO7j09MVoUUAc+3hGCa5DXmqaneWyzeetnPcBogwO4fw7iAcEAsRwKk1DwrbXuqtqVre32m3kiBJpbKUL5yjpuDAg47HGfetyigCtp9lHp1jHaxPLIqZ+eaQu7EnJJY8kkmrNFFABVWy/5eP8Aru1Wqq2X/Lx/13agC1RRRQAVXNlGdTW+3N5qxGEDI24JB/PirFFNNrYTinuVzZRnU1vtzeasRhAyNuCQfz4qtcaLDPevcpcXNu0oAlWGTaJAOmeP1GK0aKpVJrZkOnCW68zMj0Cyj0o6fh2h3mRSWwyNnOQR0xUkGkrHHLHcXVzeRyJsKXDhhj8APzq/RVOrN7sSo01ay2My10OO1kixeXkkURzHDJNlF9O2SB2BJrTooqZTlN3kVCEYK0UFFFFQWFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAVsf8TbPbyP/AGarNGOc96KACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqnayxxNcCSRUPnMcM2KuUx4YnbLxIx9SoNADftMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FPSWOTPlur467TnFM+zQf88I/++BT0ijjz5aKmeu0YzQA6iiigAooooAKKrX2pWOlwCfU7y3s4i20SXEqxqT6ZJHPBqKw1zSdUkaPTNUsrx1GWW3uEkIHuATQBeooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAMDxOAb7w8CMj+1V/9Ey1D4ytrdbG0uoY0XU47yFbKRF/ebjIAyg9SCu7I6Yz6UvjC2jvJNBt5jIEk1RQTFK0bf6qXoykEfgarnTLfw34qsrv95PaXubUSXczTvaykZXa7ksFfBUjPXb60R/X9EOX6fqzb1TVvsMsFrbW7Xl9c58qBWC8D7zsx+6oyOeeSAATUFprF2upxWGtWEdnNcKxt5ILjzo5CoyV3FVIbHOCORnB4rN1O0nm8fw7NVudO8/TtkLQJE29lkJdf3iNzhlOBjp7VdHh6VtQsri/1+/vPssxliilS3VS21l/gjUnhjxmhbJifYG1vUbue5/sTSobuC2laF5Z7vyS7r94IAjZweMkryPTmpdU8QLpd7YW0lrJLJfK/lxxsN5ddvyAdDncecgAAk8VW1DTrzRvtmqaFdKqHdcXFjcDMMrYyxVusbHHXlc87epqve6lbS+JPCt3MpjW7hmMXmDBRnRCAfQ9vqaFsHX7y3Lruo6dNE+taVHb2Usix/abe783yixAXzFKLgEkDILYPtzVvU9Ya0u4rGxtWvb+ZS6wq4RUQHBd2P3Vzx0JJ6A81U8aMD4Tu7UczXgFtAo6tI5wuPp1+gJpLUi38fXy3Bw91Ywm3J/jEbOHA+hdSf94UbgSxa1e299Bba7pyWf2l/Lhnt7jzoi+MhGJVSpODjjB6ZzgUl94he38QNo1rYtdXbWyTxgSBQQWZSWJHyqNo55J3AAUzxcRJptpaRn/Sbi+txAo65WVXY/gqsT9KdAo/4WBetj5hpkAB9vNl/wAKFr+P5D2T+X52JbDWbp9VOm6vYJZXTRGaExT+dHKgIDYYqpyCRkEdxjNQ/wBualeSXDaLpMV3bW8rQtLNd+S0jqcMEXY2cEEZYryPTmk1Q48aaDjvHdA/98pUWoWF3oMd7quiXKiEb7m40+4GYnPVijdY2OCe657ck0r9WFr7GjqWrmye3tre1e6vrkExW6sFwB95mboqjIBPPJAAOahtNYu11OKw1qwjs5rhWNvJBcedHIVGSu4qpDY5wRyM4PFZFzHNqHjOzuIdTu9MW80sGDyo4iWIfcynzEbBwynAx0PpWkPD0rahZXF/r9/efZZjLFFKluqltrL/AARqTwx4zVW7/wBa2J9P60N2sFNc1K+8ybR9IiurKOVo/NlvPKeQqxVii7CCMggbmXOPTmt6uZ1G1uvC9peappFwHso991Pp04+X+85ifqhPJwdy5PQZpdSt9iDxJcavH4q0JbOxtZYxNIYjJeNGZD5LZDARnbjnByc+1btxe6jBZweXpguLyXh445x5URxyTIwBx9FJ9qz9YbzPEXhmUAhWuJevB5gc4qTUri7u/EMOj2t41ghtWuZJolUyP8wUKu4EAc5JwTyMYo8heZLZavdvqR07VbCO0u2iM0PlXHmxSqCA2GKqQQWXIK9+M1i6Bda63inWxNp1kEN1CJyL928oeSn3R5Xzcc87eTj3o+zQWXxI0qBLy7urj7FcvKbidpNoJjxgfdXOD0ArT0QEeJ/Eme9zCR9PIT/Chd/63Av6Xqf9pNfDyfK+yXb233s79oB3dOOvSmxaur6xqFjJH5a2MUUrSls7g+7tjjG39apeGfku9dhY/vF1N3K+gZEZT+INQ6TPDd+OPESRssixw20UncZxJkfrS15V3svyDq/X9SxY6zquorb3dto8f9nXBVkle8xN5Z6OY9mMY5xvzjtnityuYkiu/CEVubS5+1aR50cAtJx+8tw7hF8tx95QWHysCcdG4xXT1WnQNQooopAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBXubG3vJLd7mPe1tL50R3EbXwVzx14Y9fWi+sLbUrN7W9j8yFyCV3FTkEEEEYIIIByKsUUAVdQ0yz1W2EF/As0YYOuSQyMOjKw5U+4INQWOgadp1x9ogikecAqJrieSeRQeoDSMSB7A1o0UAY8vhXR5rmWaS3kPnOXkh+0yiGRicktFu2HJ5ORzUGsWsF54m0m2uoUmgkt7lWjdcqR+77Vv0UB1uZll4d0ywuluYYZJJkBEclxcSTmMHqF3sdv4YqxqGl2WqwrFfwLKqNuRslWjb1VhgqfcEGrdFAGdYaDp2m3BuLeKR7grt864neeQL/dDSMSB7A4q0tnAt+96qYuJIliZ8nlVJIGOnVj+dT0UAQS2NvNe293LHuntgwifcRtDABuOh6DrWc/hTR5LmSZ7aRhI5keE3MvkuxOSTFu2Hnn7tbFFAFXUNMs9VtRb38CyxqwZeSCjDoysOVPuCDUFjoGnadcfaIIpHnAKia4nknkUHqA0jEgewNaNFABWOPCmji4Mv2aQgv5hha5kMO7Oc+UW2deenWtiigCpqOmWmq26w30ZdUcOjI7IyMOjKykFTyeQe9QXPh/Try2t4biKQ/ZhiGVbiRZU9cSBg/PfnnvWlRQBnWugabZXEM9tbbZoQ4WQuzMd+3cWJOWJ2ry2TxTptEsZ9UTUHjkW6UKC8czxhwpyodVID4zxuBq/RQBm32gadqN2Lq4ilS4C7DLb3EkDMvZWKMCw9jmpLTRdOsWma0tEi86NY5AudrKucDHT+I/XPNXqKOlgMi08L6TZTxywwSsYTmJZrmWVIj6ojsVU/QCteiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAopGZUQu5CqoySTgAVz/AIa8XW/iSz1G7SA21tZXDRrJI3+sQKGEmMDAIOcc8UAdDRXIjxvcpbQapdaHLBoVw6ql6Z1LqrEBZGixwpJHOScHpXTahf2+madPfXb7IIELu3sPT3oeiuw3dixRWR4W14+JfDlvqrWrWhmZwYWfcU2uV5OB6elU/Fvi5PCjae0tk9zFdSssro+DCijcz4wd2Bk446UPR6hudHRWVr2upo3he61qKMXccEIlVFk2iQHGMNg+vpUeseI4dJgtFFtNd318dtrZwYLyHGTycAKO7HgUAbNFcq3i3UtNaOTxP4efTbKRghu4btbhYiTgeYAAVHvyKk8T+I9Y0CG5vLbQYr3T7eLzHuDfiNvf5Nh/nRsG501FY+iajrN+znV9Fi06LYGjdL0T7ye2AoxUfiTX7vRpdOg07TV1C5v5mhSNrjyQMIWznaewoegLU3KKx7HVtQWyu7rxJpsOkQ267963gnBUAlicKMYxWZH4q12+hF5pXhOaewcbo5J7xIZZV/vLGQevUZIzQB1dFc1d+NLWLwVdeIbO3kmFr8slrKfKkRwwVkbg7SM+9dBPP5FlJcbd3lxl9ucZwM4oeiuxpXJaK5HVPHR07wbpOvLpb3H9otGDbRy/MgdCxwdvzEBemBn2rcudagj8MTa3Z4uoEtGuowGwJAFLAZ7ZxQ9L36CWrSXU0qK5rUfFdzbaHot7Y6Wt3cas8aR27XPlhC6F/v7TnGMdBUR8Xahps0X/AAlGgSaZayusYvIbpbiJGJwN+ACozgZxjmnZ3t8hX0udVRRRSGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAHE+NvEFompW+gX0k9tZTJ5t7PHbySb488QrsBwWwcnsue5rBtNbsL/RfHVppTyeZMJpoE+zyIPLECL3UAdMYPPtXqlULDRrbT59QliMkh1Cfz5lkIIB2hcDjphR1zSto13T/T+v8Ahx31T7M53xM8LfB64MRBifTYxF75ChQPxIrP1XxLp8niSDTdcluILLSxHJIgtJZPtVwBkcopGxOvPVsdhW5beBtOtpYV+138tjbyiWDT5Z90ETA5GBjcQDyASQPSulqm7y5v6/r/AIBKVoqJxnww1Wzv/C32a1kdpbeeZpA0TqAHmcrgkAHj06d8Va8TRpL4v8KxyKHR57lWVhkEGBuK2tG0iDQ9MWxtHkeJXdwZSC2XcuegHdjRe6RBfanp19M8iy6e7vEFI2sWQod3Hoe2KWhXV/M898RSP4e8J694Wu2Jt/srT6VIx+9DuG6LPqhP/fJHpXRKyxfE3Tjc8LNozJak9C4kBcD327fwFa3ifwtp/izSxZan5qKr70lgYK6HocEg8EEgjFT6toFhrVhFa3yP+4IaGaNykkTAYDKw5BoW9/62f+f9XE9dP66f5FTxtJBF4F1k3RXY1nIoz3YqQo+uSKzvFEcsPwjvI7nPnJpgWTPXcFGf1q3beCrSO8huNR1LVNXNu4eGO/ud6RuOjbVABI9TmtbWNLh1rR7rTbppEhuozG7RkBgD6ZBH6Uuj8/6/UafvJ9v+B/kWLX/jzh/65r/KuU8bi+Os+GRpTW63f22TyzcqzRj9y+chSD0z3rro0EcaovRQAM1Tv9Ig1C/0+7meRZNPlaWIIQAxKFfm46YJ6Yqnq7kx0jby/Q5XxYmu/wDCvtU/t57GYq0TsLCN1BhEil87ic8A/hXawyRywRyQMrROoZGXoQRxildFljaORQ6MCGVhkEHsa5geA7SHMVjrGtWNlniyt70rEo7gZBZR7AikM5jXE+0eGviBNa827XSbSOhZEj8wj8Rz9K9C1CaMeHrmYuPL+yu2/PGNhOaW20bT7PRhpVvaRpYiMx+RjIKnqDnrnJyT1rBX4fWAjFs+qaxLpy8DTpLwmHb2TpuK+xak1ePL5fpYadmn5sxghTwV4BV1wfttnkH/AK5NRq2fCtnrmhv8ul6lZXM+mt2ik8tjJD9OrL+IrtNR0W11IWAlLxrYXKXMKxYA3KCADx056DFM8Q6BZeJdHk07UQ4ichleIgPGw6MpwcH/ABpzfMnbq3+Ngjo15Jfg2ctN/wAgHwF/19W3/ohq2vH0sEfgPVluAG823aKNO7yNwgHvuIqTUPCVrf6NpunC9vbVdNZGt57eRVkBRCoJJUjofSm2Pg6zt76K8v73UNXuIG3QNqFx5ghPqqgBQffGacrSb83/AJExvGz7L/M2bBJItOto5+ZViVX/AN4AZqeiihu7uCVlYKKKKQwooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigClqmr2ejwxS37yKJpBFGIoXlZ3IJwFQE9Ae3aq1p4n0q8vks0mmhuZATHFdWstu0mOu3zFXd+GareJyBfeHiTgf2qv/omWovF8sF1ZW2nQMsmozXUL20akF0KyKzSewVQcn8O9C1++35f5g9Pu/wAzpKKytU1O5ivrfTdLijlvp1aQtMSI4YxgF2xyeSAFGM+owTUEGoapYatbWWtm0nS8LLBc2sbRASBS2xkZm6qCQQexGKNwNyiuej1DWtWmu30eSwtre1ne3C3ULyPKyHDHKuuwZ4HDcc+1S6vrV3p2qaXZQW0c8t8soCZIG9Qp+92UAsScE8cc8EDrY3KK5281HW9EC3mqNYXWn71Wf7NC8UlurEDfyzBwM8/d459qt6jql3/aaaXo8UMl2Y/OllnJ8u3jzgEgcsSQcKCOh5GOQDXorBOo6tpN3bLrhs7m1uZVhFzaxtEYnbhQyMzZBPGQ3UjjvTb3WdS/4Sp9F02CBmNolwJpg22LLurFsH5vurhRjOTzR6AdBRWJZahqdvriaXrX2WUzwtNb3NrG0attIDIyMzYI3Ag7jnnpioYdQ1vV2uZ9HfT7e2gnkgRLqF5HlZGKsSVZQgyDjhuOfagDoaKydS1O6ivLbTdNhikv7hDIxlJ8uCMYBdscnkgADGfUYJqGDUNUsNWtrLWzaTpeFlgubWNogJApbYyMzdVBIIPYjFAG5VWxv4tQjmeFXUQzvA28AZZDgke1Wqw/DhZbHUii7mGo3JC5xk+YeM0uvy/VD6fP/M3KZJNHEUEsiIZG2IGYDc3oPU8Gufvr7xHpmny6pdjTXt7dDLNZxJJvVBy22UtgkDn7gz0461U8WjU59R0CTT7uzSB79PKEtszkP5Uh3EiQZXHbAOe/an1Qun3nXUVjXeo39lHZ2Ci3vNWui20qrRRKq/ekIJYgAFRjJJJHTPEa6hq2mahaw621ncW15J5KT2sTRGKTBKhlZmyDgjII5wMc5oA3aK506xq154g1HSdNitozaGMm6nRmVFZAQNoI3sTngFcAc9s2tK1G+OqXOlawsBuYYlnjntlKpNGxI+6SSpBHIyeo5oWobGxRWCmoatrEkr6J9jtbOKRo1ubuJpTOynDFUVlwoIIyW5weMYJkGpahZ6vp1nqgtil5HInmwBgPOX5lHJ4DIGOOxU8mgDaorN1HUZoNU06ws1jaW6kZpN4J2QoMs3B65KqPdq0qACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA5vxfa297LoNveQR3EEmqKHilQMrDypeoPBqGfT7PwlrVrf6XaxWen3jra3sUEYRFYn91JgcD5vlPruGeldNLBDO0bTRJIYn3xl1B2NgjI9DgkZ96J7eG6geC6hjmicYaORQysPcHrQtPv/yB6/d/mctrdjaf8JrbXGqXF1bW91aC2ilhvJLdRKrlgjFGHLBjjP8AdNXYtE0S31i0Vry7mvY2M0ENxqk82CAQW2M5HQkZx3rcuLaC7t3guoY5oXGGjkQMrD0IPBqCw0rT9LRk0ywtbNWOWW3hWMH64AoWgPUw9Xt7O2hvtb0fVVsLqEMZ2SUNBK6jG2WPpnjbkYbtntUOp6sttrfhm+1GL7OssExmLdLcsqcsewBwCfet9tD0l9QF++l2TXgORcG3QyZ9d2M1Vv7eSXxTpUnks8KwXCyNtyozswCenODSDqVvF1zFc6DJpVvIst3qg+zwRo2SQ3DP/uquST7UnmxaT42ne9cRRalbQx28rnCmSMvmPPqQ4IHf5vStax0fTNMZ203TrSzaT75t4FjLfXA5qxcW0F3bvBdwxzwuMNHKgZW+oPBpgYXiiaK9S00a2kV7y5uoZNiHLRxxyK7SH0AC4z6kCpoAP+E+vjjn+zbfn/trNWhYaVp+lxsmmWFtZoxyy28Kxgn3wBVgQRC4acRIJmUI0m0bioJIGfQEnj3NC0/ryDo1/W9zE1T/AJHTQP8Arndf+grVTWIbSytb/XdE1RbK4i3PMEkDwTyLwVkTpuJG3K4b3PSuleCGSaOZ4kaWIERuVBZM9cHtmqp0PSTqH286XZG8zn7SbdPMz67sZpDOb1G2t5/FNhe6zJd2MV9YLChivJLcJMGLeWxRlySGOM/3TWlFomiW+sWiteXc17GxmghuNUnmwQCC2xnI6EjOO9blxbw3du8F1DHPC4w8cihlYe4PBqCw0rT9LRk0ywtbNWOWW3hWMH64AqhFuuRF7caf4Q167sjtmivbkh9u7YPNOWx3wMnHtXXUyOCKFWEMSRh2LsFUDcx5JPuanr8v8h9Pn/mcP4s07w/a+Db2eQnUrma0kNs9xctcPI2wneoYkDH3sqAAB2rU1jCWvhiV2CpHfQ7mY4AzE6j9WA/GtiDQtItvP+zaVZQ/aVKz+Xbovmg9Q2ByD71ZntLa5tGtbm3ilt2Xa0MiBkI9CDxins7+n4C/4P4nM+I7W0bxPpd7qNxcQWTQy2pngu5IBHIWQqGZGHB2sOTjIA64q0dC0KHULNJ768luDKJbeGfVZ5NzJ82QjSEHGM9K2o7CzisfsUVpAloFK/Z1jAjx6bemKjsNH0zSt39madaWe/732eBY931wBmhaA9SjpAH/AAkmvnHPnQ8/9sVqNv8Akoi/9gpv/RorbSGKOSSSONFeUgyMqgFyBgZPfjik8iH7T9o8pPO2bPN2jdtznGeuM84pW1X9dGgeqa/rdMwfB11FBoiaTPIEvtNJgnic4bgnD47qwwQferHiCL+0vD73GmOk1xasLm2aNgQ0kZztyPXBU/U1ev8AR9M1QodT060vCn3DcQLJt+mQcVS1i9lsLMafo1lM13NHstvKgPkw9tzPjaoXrjOT2Bod7abjW+uxX8OXEeuX134giJa3lVbazJ/55ryzfi5I/wCACuhqrplhFpel21jb/wCrt41jBPU4HU+561aqnbZEq+7CiiikMKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAKGsajcadao1nptxqM8j7EigKgA4JyzMQFXjr+lUfCmuXWv+FItUuLeOO4kaUeTGx2/LIygZP8Aujmt09DXI/DmVIPh5byzMEjjkuWdj0UCZyTR0Y+i/ruLea14l0Nbe+1uHS5LCSdIZorXzPMg3sFVtzHD4JGflWrup6vqcuvDRvD6Wv2iOAXFzcXYZkiUkhVCqQSxwT1GAKrQ29z4wntL+9U22iwyLcW1sf8AWXTDlJJP7q9wnU8E46UulkQfEzXopTiS5tLWaHP8SLvVsfQ/zo8n/Wn9MXdr+tS94b1q41SO8ttSgjt9R0+fyLlImJRjgMrrnnaQQcHkVp3F9aWkiJdXUMLurMiySBSwUZYjPUAcn0rnvDQ87xh4qvIjuge5ggVh0LxxAP8AkTioPE1lBf8Aj7wrFdxrLEBduUYZViEQjI784P4Ub28/8rh3OgGvaOdP+3jVbH7GG2/aftKeXn03ZxmrK3ds9mLtLiJrYpvEwcFCvru6Y965DTdE07/hZ+tH7JFtS0gkWPYNgd94ZwvTcQoGevX1qjpmgNrHhDWNIspIoFttbmNvFKm6LCShxGyj+AnPFG/9edg2/ryudxYarp+qI7aZf2t4qHDm3mWQKffBOKt1zfhvUBJqt9p17o8GmanbxxvMbYho54zuCsrAA44bhhkV0lMAooopAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFZ9voWm2uhyaPBbbLCRZEaHzGOQ5JbknPO49+9aFFAXOXX4ceGEUBLK4UKMADULjA/8iVrat4e0vW/JOpW3mPAT5UqSNHImeoDqQ2D6ZrSooArafp1ppVjHZ6dbpb28Y+WNBwPU+59+9JPptpc6ja300W65tA4gfcRsDgBuM4OQB1q1RQBVj061h1OfUI4sXVxGkcsm4/Mq52jGcDG49KpzeGNIuLG4s5bTMFxcm6kAlcEyk5Lhgcqc+hFa1FAGfpWh6doqSjTbfyzMwaWRnaR5COm52JY49zWhRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFUtU1ez0eGKW/eRRNIIoxFC8rO5BOAqAnoD27VWtPE+lXl8lmk00NzICY4rq1lt2kx12+Yq7vwzQBrUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUxpo0mSJpEWSQEohYZYDrgd8ZFPoAKKKKACiimRTRTx74JEkTJG5GBGQcEcehGKAH0UUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAGB4nIF94eJOB/aq/+iZai8XywXVlbadAyyajNdQvbRqQXQrIrNJ7BVByfw70eL7W3vZdBt7yCO4gk1RQ8UqBlYeVL1B4NQz6fZ+Etatb/S7WKz0+8dbW9igjCIrE/upMDgfN8p9dwz0oj+v6Icv0/Vmrqmp3MV9b6bpcUct9OrSFpiRHDGMAu2OTyQAoxn1GCagg1DVLDVray1s2k6XhZYLm1jaICQKW2MjM3VQSCD2IxWdrdjaf8JrbXGqXF1bW91aC2ilhvJLdRKrlgjFGHLBjjP8AdNXYtE0S31i0Vry7mvY2M0ENxqk82CAQW2M5HQkZx3oWyf8AX9dRPe39f10Ej1DWtWmu30eSwtre1ne3C3ULyPKyHDHKuuwZ4HDcc+1S6vrV3p2qaXZQW0c8t8soCZIG9Qp+92UAsScE8cc8Gpq9vZ20N9rej6qthdQhjOyShoJXUY2yx9M8bcjDds9qh1PVlttb8M32oxfZ1lgmMxbpbllTlj2AOAT70lt939fMb3+8t3mo63ogW81RrC60/eqz/ZoXikt1Ygb+WYOBnn7vHPtVvUdUu/7TTS9HihkuzH50ss5Pl28ecAkDliSDhQR0PIxzV8XXMVzoMmlW8iy3eqD7PBGjZJDcM/8AuquST7UnmxaT42ne9cRRalbQx28rnCmSMvmPPqQ4IHf5vSmIkOo6tpN3bLrhs7m1uZVhFzaxtEYnbhQyMzZBPGQ3UjjvTb3WdS/4Sp9F02CBmNolwJpg22LLurFsH5vurhRjOTzSeKJor1LTRraRXvLm6hk2IctHHHIrtIfQALjPqQKmgA/4T6+OOf7Nt+f+2s1C1/H8h7J/L8wstQ1O31xNL1r7LKZ4Wmt7m1jaNW2kBkZGZsEbgQdxzz0xUMOoa3q7XM+jvp9vbQTyQIl1C8jysjFWJKsoQZBxw3HPtT9U/wCR00D/AK53X/oK1U1iG0srW/13RNUWyuItzzBJA8E8i8FZE6biRtyuG9z0pX6sLX2NPUtTuory203TYYpL+4QyMZSfLgjGAXbHJ5IAAxn1GCahg1DVLDVray1s2k6XhZYLm1jaICQKW2MjM3VQSCD2IxWTqNtbz+KbC91mS7sYr6wWFDFeSW4SYMW8tijLkkMcZ/umtKLRNEt9YtFa8u5r2NjNBDcapPNggEFtjOR0JGcd6q3fz/r9f+AT6HQVhLqOq6vNP/Yf2S2tIZGiF1dxtL5zKcNtRWXCggjcW5IPGOTu1zvhC5it9LbR55FjvtPkeOaJzhiC5KvjurAg5+vcGl1GW7vVLvStKg+2RQ3WpTy+RDDbkokrknH3slRtG49cAHrVeebxPYW7Xkw029jjXfJaW8UkcmB12uXIY+gKrn2pniC4hSXSNZSRZbKxu2NxJGwZUVkeMucdlYjPoM+laWo61Y2GlteSXEbxsv7oIwYzMfuqgH3iTwAKTvZtD62M/VvEcltHo0ulQreJqkuyMHI3AxM6nP8ACMgEnBwM8Zom1DW9JubWTVmsLizuZ0gc20TxvAznCnLMwcbiAeF659qoWthLptt4MsrofvrdyrjOdrfZpMj8OlaHjL/kAxf9f9p/6UJVtJSt5krVfIztai1pvH2lfZL2wjVre58kS2buUH7rcGxKNxJxgjGPete71K/F7DpWnLby3/kia4nkVhFCucBtgOSWIOF3dAcnjmHVCI/G+hSOwVWguowScZYiMgfXCk/hWffWFk/jmSTUrq7t49QtYltZIL6W3R3QvuTKMAThgQD/ALWO9Stkv66lPa5q2eoaja6xHput/ZpGuI2e2ubVGjVyuNyMjMxBwcg5ORnpjmpZavresz30OnrZ2q2d3JA1xcRPIG2twqoGXPGCW3AZOAOuJ7TR9Fttch8u8uZ9QgRpY4p9SmnKKRtLbHcgdcZxUnhgAW2oYHXUrnPv+8NHX5fqhPb5/ow0/UNSv7e/s5BbW2qWUgjZ9jSQuCAyuF3A4IPTPBB5NZvgOLVV0VGuruzktfOuAI47Vlk3ec/O4yEYznjb6c1e0r/kc/EH+7a/+gNTfBjovh4Ql18yO7uUZc8giZ+MUC6HQUUUUDCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigCOWCGdo2miSQxPvjLqDsbBGR6HBIz70T28N1A8F1DHNE4w0cihlYe4PWpKKAI7i2gu7d4LqGOaFxho5EDKw9CDwagsNK0/S0ZNMsLWzVjllt4VjB+uAKt0UAUW0PSX1AX76XZNeA5FwbdDJn13YzVW/t5JfFOlSeSzwrBcLI23KjOzAJ6c4NbFFAFOx0fTNMZ203TrSzaT75t4FjLfXA5qxcW0F3bvBdwxzwuMNHKgZW+oPBqSigCpYaVp+lxsmmWFtZoxyy28Kxgn3wBVgQRC4acRIJmUI0m0bioJIGfQEnj3NPooAjeCGSaOZ4kaWIERuVBZM9cHtmqp0PSTqH286XZG8zn7SbdPMz67sZq9RQBHcW8N3bvBdQxzwuMPHIoZWHuDwagsNK0/S0ZNMsLWzVjllt4VjB+uAKt0UAFU7/R9N1XZ/aenWl5s+59ogWTb9Mg4q5RQAyKGKCFYYY0jiQbVRFAVR6ACqdtoWkWV2bqz0qyt7hs5mit0Vznr8wGav0UAMeGKWSN5Ikd4iWjZlBKEjGQe3BI/GkmghuYwlxEkqBgwWRQwyDkHB7ggGpKKAK97YWepW5g1G0gu4SQTHPGHXPrg8UTWFnc2X2O4tIJbXaF8h4wyYHQbTxirFFAFax02x0yExabZW9nGTkpbxLGCfoBU0UMUAYQxpGGYuwRQMseST7n1p9FAEaQQxzSTJEiyy48xwoDPjpk98VCmmWEeoPfx2Vul5Iu17hYlEjD0LYyRxVqigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAKNzc3f9oi2tBD/qvMJlz647Uf8AE2/6cv8Ax+j/AJmH/t1/9nq9QBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/S2VzcS3NxDdCLdDt5jzg5Ge9Xao2n/IY1D/ALZ/+g0AXqKKKACiiigCj/zMP/br/wCz1eqj/wAzD/26/wDs9XqACiuV8Zvc38+meHtPvJ7OfUZHkkntpTHJHDGuSQw5GWMY/E0aJ4rij+HEWua27K9nAUvcDLebGdjjHqWHA9xSvo2HVI6qiuY8P+Jdd1bUAmp+EbrSbGVC8F1LdRyE9wHjHKEj1z6VTuvHOpzardW/hjwrda1aWMxgurxbmOFQ4+8sYbmQjocY5p9bAdnRXOeIfFNzpdzbWGi6LPrOq3ERmW0WZYRHGCAWd24Xk4A7mo7PxvA/hvVNT1TT7jT7jRwwvrJirvGQob5SDhgQRg8UdGw62OnormfDfiTW9YvCmreFptKtpIvNt7oXsVwkg44Oz7pIOR171Sfxzqdxrd1b6J4VudS0+xuTbXV4l3Ejo6/e2xH5mAz7Z7U7a2FfS52dFUtS1nTNGjSTV9RtLBJDtRrqdYgx9AWIzWJ4p8VpaeCpdU8NXNrfTTyJbWksUiyRea7hASRkHBOce1SM6iiuT0TwZqGlalDqN14u1rUJ/wDl5guJVa3kyOdsePk55GD2qld/EHUjcXc2g+E7zVtJspHjuL9LlI8lOH8uNuZACCMjHIpuyDc7miuL1T4irb3Ojw6Jo9xrDazZtc2iwyBCSNuA2eFGGJLE8Y6GpLHxlq+p6FqEll4XkbW9OuRb3GlPfRrgkBtwlxtI2tnpzR/X42D+v1Oworzj4eeJvF+pafp8eo+GZJLKWSXzNWk1SNiBvb/lnjccH5fwz0rQvPH2pHVNV07QvCtzq1zplx5cpW5WKPZsVt29h947iNgyflznmgDt6K4+5+ICyaTpE2g6Rc6rqGrwGe2sVdYiqDG5nc8KASBnuasaJry+LIdT0PX9Gm0u9iiCXljLMHDRSAgFZExuBAIyMYNFnqGnU6iiuD8AaHp/hzxZ4t0zRrf7NZwzWpSPez4zDk8sSepPeunvfFPh/TbxrTUdd0y0uUxuhnvI0dcjIypOehp9rArmrRXO+M7uZdLtNNsZ5ILrVruO0jkhcq6ITukZSOQRGrc+uKreE2Or+E73RNbeS7ls5p9NuzLIS8qAkKWbrlo2U5znmlve39f1dBppf+v6szq6K4PwBoen+HPFni3TNGt/s1nDNalI97PjMOTyxJ6k96j8WeGNItPHXh3xBb2mzVLrVkimuPNc7lEL8bSdo+6Og7U+qXe34h0b7X/A9Aorn/E3ih9CktLLTtMm1fVb7d9nsoXEeVUDczO3CqMgZPcisdfiLPBp2oHV9Am07U9OaBriykuFceVLIEEiSKCGA57dsUlqD0O4orn9b8X2Wl2GqSWm29vNMaFJrUMUIaUqEG7B67h0zVy/8TaFpNz9n1XWtOsbjaG8q5u442we+GIOKANSiuO8U3V7rGv6V4b0jU5NPhvYJLy6vLVh5vkptAWNucFiw+b0FUtOm1DwZ4luNGutVvNasJdNkv7V7+UPOjxEB0L45BDAjjildJXfn+G/5Mdu39XO+qC4vbW0khjurmGF7h/LhWSQKZG67VB6n2FcPa/Ey7uYtN1BvC15Dod68UTai86DZJIQoxGfmZNxA38Z6gU/xVfyHxrolvrHhBLrT01CJLHVm1BRsmZc58oDdxg9ePlB9Kqzul52JurN+VzvKKw/FHiRvD1vapa6fLqeoX03kWlnE6oZG2ljlm4UAA5NZHhnxnrut69qWl6p4TOlS6fAJHJ1FJcu33FwFHDAN8wyBtxS3GdZHe2s15Naw3MMlzAFMsKyAvGD03L1Ge2anrhvBl4154y1x9T8JpoGsNDBJcOL4XJnQ7gv3RtXGzt1707UPH+pJ4j1TRNC8K3Or3enMhdkukij2MgbJZhw3JAUZJwTRsHc7eisbSvEUeteD49e061mlEtu0yW3G9mGcp6ZyCKtaFqFxq2hWl9e6fNps88YZ7Sf78R9DwP5D6Cnaza7AX6KK8+8cnX/AO2rT+wvN2faYc/awnk7+dvk/wAXmdc7vk6Zqb6oOjZ6DRVDQ/M/sO1877b5mz5vt+3zs99+35c/Tir9U9GC1CiiikAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFUbT/kMah/2z/wDQavVRtP8AkMah/wBs/wD0GgC9RRRQAUUUUAUf+Zh/7df/AGer1Uf+Zh/7df8A2er1AHC6v4KvvE/ja71G+1PVtGtrW3jtrGTTLtYmmBy0hYgE43bRg4+79KoW/gDU4NB8S+Go7q4ls7mWO80/UL2ZZHebhnEmOfvoCTjkMepr0mihaKy/rr+Y93dnMeH9V8X3uoCDxB4attMt40O+6S/Wbzm7bEAyozz8xrGtIfGXhK7vdO0fQLXWtPubyW5t7s3ywGDzGLFZFIJbBJ5XqK9Aoo63F0seb/EPwNJrutWetf2BB4i8q1+zTWDXzWjA7twdHBA7sCD7Vb8IaDPovhPVF07wZBod5M/FhcambuO5AUcl+ducsMfnXe0UbJrv/X9XDdps858IaDrlt4pjvV8Op4U01EkFzZRamLiO6ZsbSsSjbHgjORjriqviTQvEmqa7cHT/AAla2d+zkW/iO01XyCq5+VpI1G58AAFTkV6hRR28g7lC+0XTtXtoYtbsLPUfK5H2m3WQBsYJAYHFZPiPwhb6j4Nn0XQ47fSmVlmtfIiCRxyq4dTtUdCw54710tFDBaHJaFq/ja61GG11zwxaWMCf6++TUFkWTAP3IwNwycfePArGtrXxv4atrrQNG0Sz1Czlmme01OS9EQgWRy2JIyNzEFj93rXo1FD13BaHEaR4Ru9E8R+GhCvnWWmaRNaTXG4DMjMhHy5zzhj04rT8OaTe2HibxPd3cPlwX95FJbvvU71EKqTgHI5BHOK6SinfW/r+LuK39eiscH4SXxZ4dnh8PXfh2K40uOeXbq8d+gAjZmcExEbieQK3PDWmXmn6t4imu4fLjvdR8+A7gd6eVGueDxypGDzxXQUUlp+X5f5Dev8AXr/mcl4o0/XLXxHY+JPDVlDqc1vbSWk9hLOITLGzKwKOeAQyjr2qDR7PxGt5rHinVdJhTU57RILPSYbpThU3MFaXG3czN16AV2lFC0Vv61B6nnXhifxnF421G91PwZ9jtNXlhMsv9qwyfZhHHszgcvnHbFdhe+FvD+pXjXeo6Fpl3cvjdNPZxu7YGBliM9BWrRTA4rxN4SvfFfi+0M17qGlabp1qzQXWnXKxSvO7YIzyQAi+gzu69ar6J4b1jwVresvpf2/X7S8sluEe/vUMr3SEr5ZcgYDLt+Yggbetd7RSWm39f1+gPX+v6/pnnXhifxnF421G91PwZ9jtNXlhMsv9qwyfZhHHszgcvnHbFO8YT+MrzX7EaX4N+12ml363UVz/AGpDH9pARlxtblOX756e9eh0UdvIO5xOs2viZ7vRvFOl6RC+pW9tJBd6PLdqCVk2khZcbdyso56EVQm8N+IPEVj4i1XW7CCw1C/0z7DZafFcCQxBdzgvJwpYuR04AFei0Uf16XH/AF9x5lN4T8QTvo909kgn1C5STW085P3IS4WZOc4faAU4z1rutQ8M6Dq119p1XRNOvZ9oXzbm0SRsDoMsCcVp0U+lifM5LxRpGr2+raXr/hW1gurnT4pLeSwkkEInhfb8qt0UgqCM8VTs9I8Q63e6hrviGwh064bTZLGx06O4ExQNyzO4wpJIUDHAAruaKlq6afn+O/5lJ2d1/VjJ8KWVxpvg7R7G9j8q5trGGKVNwO1lQAjI4PI7VyXjWXxjfa1ZRaT4O+2WemahFeRXX9qQx/aAqHK7G5XliMnPTpzXodFVJty5vmSlaPKeX/EN9W1mz8LWo06S31a4nkmOn22oLFPEyxnlLjaVG3dz65A9ak8A3c+i6lqWjXvh+/g1+a1+3F73VUvJLwL8qh5QAE5OACMdTXbeIPC2ieKrVLfX9PjvI4ySm4lWQnrhlII/A1H4d8IaD4UikTw/psVn5v8ArGBZnb2LMSSPbNJdfP8Ar+txvp5f1/WxyGj3fjdfHdxql74G+z2+oR29tK39rwP9nVGbMnHLcPnAA6e9dJoOk3tl4w8UXtzDst7+W3a2fep8wLEFbgHIwfXFdLRR0sHW5yngvTNV0D4bW1jNaouqW8UpWB5AVLlmZQWUkYOR09a3NCm1S40K0l1+2htdRaMG4hhbciN6A5P8z9TV+im3dtgFFFFIAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqjaf8hjUP8Atn/6DV6qNp/yGNQ/7Z/+g0AXqKKKACiiigCj/wAzD/26/wDs9Xqo/wDMw/8Abr/7PV6gDF8Ua/J4f02KW0sv7QvLiYQ29r5vl+Y2Cx+bBxhVY9O1XtI1OHWdFs9Stv8AU3cKzKM9Awzj8K4fxNq2tyfEi2Tw94eOuro1oXmj+2R24jlm4U5fqQingf36w7a+1WD4U+KNGmsptOv9MnO+0jlErw2sriTCsvBwjOMj+7SWzf8AXb/gja1S/rv/AMA9StNb0rULyW1sNTs7m5h/1sMNwrvH9VByPxovdb0rTbmK31HU7O0nm/1UU9wqM/0BOT+Fc14XHw8W8sx4T/sY3ohPlfYyhn2Y534+bp13d/eub0ZvBL3mvt47Ol/23/aM4nGq7PMEQb915e/nbs2421XWwlqrnp19qNlpdqbnU7y3s4AQDLcSrGoP1JAqS3uoLu2S4tZ454HG5JY3DKw9QRwa8r+JDXH/AAm2kKT4d/s/+z2NuPEm/wCymTd82Mcb9u3G7tnFT+GdMiTwH4ni1bWtBh0y9cgyeH5y9vZ7kCtgH7vY46cnpU/Zb/rewdUj0Ww1rS9Ullj0zUrO8khOJUt51kKfUAnH40k+t6Va6hHYXOp2cN5Ljy7aS4RZHz6KTk1554LvNIsPGFnplrbeGb24mt5BHqfh/ajBVCkiaNc7d3HO4jI7Vla6/hzRNU1fUjN4Z8QJJdvNPZ3jLHqML5AZIn5LYIOFwPY1Wl0LWzPZqo6zq9noOjXOqalJ5dtbJvcgZJ9AB3JOAB6mqXiDT9b1eytv+Ed186FIDvkdrFLgupHCkOflxXN+M9N1iz+GLjVL5teurK6hu55UtlhMsSTK5GxeOFH6VL89ClrtqaeieK9f1TUoVvvBl5p2m3H+qvJLqN2HGR5kQ+ZM/jgmt661zSbG+jsr3VLK3upf9XBNcIjv9FJyaoab438M6vJaxabrljcT3X+qgjmBlPGeU+8OAeoFedWB8CtoGunxt/Zx137XdC8+27ftWd7bPLz82NmzGzinJ26CSuesXWp2Fi5S9vba3YRmUrLKqHYCAW5PQEjJ6cioW1/R10oam2rWI08nAuzcp5ROcY35x14615nYaGmt674FtPFVt9qeLQ5ZZIbgZDMDHt3g9cAjIPcVveEtE0p9Y8Y6M+m2j6ZHqMTJZPArQqTAhOEIwOeabW69fwdhX2+X4q5s+GvHuheJLS3MWo2MN5cM6rZfbEaX5WIHy5zyBnp0Na11r2kWMckl7qtlbpFL5MjS3CIEkwDsJJ4bBBx15FcD8M18GR6ZZQmLRIvEMNxPGUZIlulYSPwP4/u+narWh+FNE1zxV4uutZ06G+kXUfJQXKiRY1MMZJVTwGPqOeB6Ut9u1/y/zHtv3/z/AMju7vULOwszd313BbWwAJmmlCIAenzE4qH7cNS0eW58PXVndu0bfZpfM3wl8fLuKds4zjmvP9a0rQdC8R+F9J8TSrJ4etLCaO2bUmBhNwCu3zCQFzs3YyMVa8IT6FZ+MfEl34bltIPDsdtA08sLKtqs43FipHygBNuSOOlGj/H8O/8AXYNV+H9f15mz4O1rxBf6nrWm+KU01bvTZIVDacJPLYOm/wDjOT27CurrgfCviPRLj4ieKFt9Y0+U3k1qLYJdI3n4gAOzB+bB4OK1Na8P+Lr7V5bjR/G39l2bbdlp/ZMU2zAAPzscnJyfxp72+QI1/EOsf2Fosl6sH2mXekUMG/Z5sjsFVc4OMkjnBqDSNauPEHhL+0dOhit76SORFguHLJFOpKlHIAJAYYJABxXN+OtS1VvFOhaboWjnWp7MtqVxai5SAYUFIyWbj7zE4/2ai8C6xd6frHiOy8T2CaAS41VIJrtJEjik4kbzBxjepJ6Y3Ulqn/W39P7gelvl/X5febHg7WvEF/qetab4pTTVu9NkhUNpwk8tg6b/AOM5PbsKi1jWfFOk+MtNhZNHbQdQvFtYyBKbpSYyxJ5CdVPr2qj4V8R6JcfETxQtvrGnym8mtRbBLpG8/EAB2YPzYPBxTvHHiLRIdc8OwTaxp8c1pq6PcRvdIGhXypOXGcqORyfUU+sfl+lw6P0f6nbXl7a6favc39zDawJ9+WaQIq/UngVBFrWlz2C30OpWclozhFuEnUxliQAN2cZJIGPU1xPjC70K88W+GpvEU9rP4clgneKWZ1a0e4+XYWP3T8m/GeOtc7qFvpMx8ZSeDBb/ANkQabBPJ9iwIPtcTmQbNvy52qM49qS8/wCrf1+Q/Ty/H+vzPYLm6t7K2e4vJ47eCMZeWVwqqPcngVL16V5HrGsz6oZYp7t5tP8AE11brp0ZbKqsVykb7fZkw/uMmu11/QvFWoan52heMf7GtfLC/Zv7LiuPm5y25jnnjj2o1tcWly54n8T2/hmzgd7aa9u7uUQWlnbgGSeQ84GegHUntUOga/rF8bgeJPDcmg+UnmLI95HPG698sv3SOuD2rD8ZXK6B4q8Ja3rEm6wtTPbXN2UwsTyRgK5A6AlSPbNbl14k0XWdH1SDSNVs7+SOykdxazLLtG0jkqSBUyfLFy33/D+rjSu0tjTXXNJe8gtE1Oza5uEEkMIuELyoRkMq5yRjuKW+1rS9Mmih1LUrO0lmOIkuJ1jaT/dBPP4VxPhP4f8Ah6+8C+H7prMRX5itb036YNwZAFfHmMCdvGNvTHAxXH60Lmbxt4jTUW8ECQ3O1P8AhJ2kWYQ7Bs8s9AuO685zmrkuWXL6kx1Vz264uYLS3e4u5o4IYxl5JXCqo9STwKwND8Vw674s1Ow066srywtLaCSOe1kEmXcuGBYEjjaOPeuJuLe3stJ8B2HjC/sLzRlEwnuBNvtJZFT9xl2wGXGcZ4OKLG40+TUPHUngCGGJF0iIW5sYRGkkoEwLR7QA3PGR1IpP3bvtf8BrVLzt+Z6bb61pd3qEtja6lZz3cP8ArbeOdWkT6qDkfjTbvXtHsBKb7VbG2ELiOTzrlE2MRkKcngkc49K8T8O2Ul5caB/Z998PLOWG4hkSSxnkjv3AI3Id3LMwyCG65rtNL8MaNrnxL8YXOs6dBfvC9vHGtygdUDQgkhTxngc9eKbVvx/C3+Yk0dR4q8Y6X4V0OTULq5tnk8oyW9s1wqNc4x9zPXqOgNXtM8Q6NrJddJ1axvnjUNIttcpIUHqdpOK8uGl2mo/s4Lc3djBdXNnZTfZ5ZYVd4VEh+6xGV4UdPSu98MS+C2jll8Kf2GrmENcf2eIlYJ/thOQPrQ9G12G72X9dhui6tLq3jDUJLLxJpOpaOtughs7OVJJYZM/Mzlex+v4DHOzqGt6VpDRjVdTs7EycILm4SPf9NxGa4PQtV8H6d8ULwaLf6Ha2txpsKILSaFElm81/lG04LY28delZfjjVrS68aajaLYeD4prGGJJbnxOxLTBlLAQqOcDPUdzU30Xz/Njt7z+X5I9K1t9ak0jf4UbTmvWZSjX5cwlO5+TnPpVTwRrV94g8J2+oaslul40k0cq2wYR5SVk43En+HvWJ8OtXsNL+FOjXOr6haWcBDxrLPMI48+Y+FUuR2HA64FHwv1nS7nwcLSDUrWW4imupZIYp1aRENw5DFQcgEEEH3FN+62hLWKf9dTrI9b0qXU202LU7N75M7rVbhTKv1TOf0qxcXltaGIXdxDAZpBFF5rhfMc9FGep9hXj+iS+HvD2q6THZv4Z8RRzXiR293aFE1OJnY4ZwMmQDOCcqcdRXo3in/hGt+k/8JT5OftyfYPM3f8fHO37v9ePWn0XqHVnQVHcXMFpbSXF3NHBBEpeSWVgqoo6kk8AVJUdxbwXdtJb3cMc8EqlJIpVDK6nqCDwRSA5nSPiN4c1S7vYDq+m27W92baHffR5uRtUh0GeQSxAxnkVv3Oq6fZed9sv7a38iMSy+bMq+WhJAZsngEgjJ9K848NWngfTvE3iGx1i10G1vYtXzaRXUUKOqGOMp5e4dM5wF7n3rWvtA0zXfi9ONYtEvIrfSIXSCYboyxlkGWQ8MQM4z0yaFqo+a/S43pzeX+djsV1fTWtra5XULUwXTiO3lEy7ZmPRVOcMTg8D0qU3lsL4WRuIhdGMyiDeN5QHG7b1xk4zXnnivQ9N8H6RozWjG306PxLDeS7yBHbK24ELgAKgJHHbNPt9fsNd+MUjeH7yK9NvoEsfmwtujMnmoQAw4PUdPWjT8/wAI3/4AW/r52/4J3P8AbWlnVP7NGpWf2/Gfsvnr5v8A3xnP6Vdr5y020u9S0GCH7d4AsdQaQO1zeTyRanHOHySzNzv3fUenFfRi7tg343Y5x607aE31FooopDCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKo2n/IY1D/tn/6DV6qNp/yGNQ/7Z/8AoNAF6iiigAooooAo/wDMw/8Abr/7PV6qP/Mw/wDbr/7PV6gCGK0toJ5poLeKOW4YNNIiANIQMAsR1IHHNCWdrHdy3SW0K3EyhZZhGA7gdAW6kDJxn1oS9tZLySzjuYXuYlDyQLIC6KehK9QDiiG9tbm4ngt7mGWa3YLNGkgZoiRkBgOhxzzQBXstD0nTbmS407S7K0nl/wBZLBbojP8AUgZNF5oek6hdx3V/pdldXEX+rmmt0d0+jEZFXqyo/FXh6a++xQ69pkl1vKeQt5GZNw4I25zn2oAuX2nWWqWxt9Ts7e8gJyYriJZFz9CCKjstF0vTbSS107TbO0t5STJDBAqI5IwcqBg8cVdooAo6domlaRv/ALJ0yzsfM5f7NbrHu+u0DNNbQNHfUxqT6TYtfA5F0bZDKD/v4z+taFFABRRRQBn2mg6PYXr3ljpVjbXMmd88NsiO31YDJp1xoek3eoR391plnNeRY8u4kt0aRMejEZFXqKAIWs7Z7xLt7eJrmNCiTFAXVTjIDdQDgce1ENnbW8081vbxRS3DBpnRArSkDALEdTgAc1NRQBnnQNHOqjUzpNib8HIu/syeaDjGd+M9PercNrb28kz28EUTzv5krIgUyNgDcxHU4AGT6VDd6nZ2N3Z211NsmvpDFbrtJ3sFLEZAwOFJ5xVugCve2FnqVq1tqNpBdwN96KeMOp+oPFMTStPj0w6dHYWyWLKUNqsKiIqeo2Yxg+mKh1LxDoujzJFq+r2FhI67kS6uUiLD1AYjIpdN1/RtZkdNI1axv3jGXW1uUlKj1IUnFG4EFr4R8N2N1Hc2Ph/S7a4jOUlhso0dD6ggZFa9ZGk+JLPWdX1bTrWK5SbSpVinaWLarFhkbT3H5fkQa16OgdSFbS2S8e7W3iW5kQRvMEG9lBJClupAyePeo7nStPvZXkvLC2uJHhMDtLCrFoyclCSOVJ7dKtUUAZFr4R8N2N1Hc2Ph/S7a4jOUlhso0dD6ggZFF34S8OX93JdX3h/S7m4kOXmmso3dz7kjJrXooApyaRpsulrpsun2r2KqFW1aBTEAOg2Yxj8KdBplhbaebC2sbaGzKlDbRwqsZU9RtAxg1Jd3ltYWr3N/cQ20EYy8szhFX6k8Cksr601K1W5066hu7d/uywSB0b6EcUbhsRf2Rpvl2kf9nWmyyIa1XyFxbkDAKDHy/hirlFFADJoIrmB4biJJYnG145FDKw9CD1qpZaJpWmW8tvpumWdpDN/rI4LdI1f6gDBq9RQBHBBDa28cFtEkMMShI441CqigYAAHAA9KqaloOj6wyNq+lWN+yDCG6tkl2/TcDir9FG4FOTR9Mm0tdNm060ksFAVbVoFMQA6AJjHH0qS30+ys332lpBA/lrFuiiVTsXO1eB0GTgdsmrFFAGX/AMIxoH9oi/8A7D037aH8wXP2SPzA397djOfer0VnbQXE88FvFHNcEGaREAaUgYBYjk4HHNTUUeQEFtZWtlZraWdtDb2yghYYowqAHk4UcdzVax8P6NpjzPpukWNo042ytb2yRmQejYHP41oUUAYsXgvwvBMksPhvSI5I2DI6WEQKkcgg7eDV270XSr+8iu77TLO5uYf9VNNbq7x/RiMj8Ku0UAULjQdIu9PWxu9Ksp7RH8xbeW3Ro1bn5gpGM8nn3NN07w7omjzNNpOj2FjK67We1tUiZh1wSoHFaNFAGfbaBo9lfPe2ek2NvdyZ33EVsiyNnrlgMmrVzZWt4Yjd20M5hkEsXmxhvLcdGGehHqKmooAKKKKAM+90DR9RvI7vUNJsbu5jxsmntkd0xyMMRkVbFrbreNdiCIXLII2mCDeVByFLdcZJOPepaKAIrm1t722e2vII7iCQbXilQMrD0IPBqC00jTbAxGx0+1tjDGYozDAqbEJBKjA4BIBx7VcooAy7rwxoF9e/bL3Q9NubokHz5rSN3yOnzEZrUoooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKo2n/IY1D/tn/6DV6qNp/yGNQ/7Z/8AoNAF6iiigAooooAo/wDMw/8Abr/7PV6qP/Mw/wDbr/7PV6gDz74oXL+G1sfFOkMg1iBjapAVLfbInBJQgcnaRvHpg+tbPhWC10HwGl9aPLqzzQtfTz2yb5byVhuYqOMk9APYCrjeG/tHjNdev7oXC29v5Nla+Vhbct/rHzk7mbgZwMDjmjw14cPhoX1tbXfmadNOZrW1MePsu7lkDZ5XdyBgYyetEdmv69PnuN7p/wBf0tiDw54w/wCEivZbf/hHdf0ry49/m6nY+SjcgYB3HJ56V5VYxafqmg6xpMPgG81XVri9vEi1QWKLEGMrbT9oJyNv9MV7xWP4Z0H/AIRzSpLP7T9p8y6muN/l7MeZIX24yemcZ70rJv5fqhXaXz/RnNalceKNNvfC/h7Sb63NzcWEqXVxcpvUNGsYMuOrEZbAyAS3PSkm1Txf4V0HUk1ia31e6+0QW+l3zRLCszTEL88aH5QjH8RXU3mifa/FGm6x9o2fYYZovJ2Z3+Zt5znjG30Oc07xDoVt4k0OfTL1pI0lwyyxNteJ1IZXU9iCAabd9X8/v/yBJKy7HKx3Hi3wtr2kr4h1231uw1W6+yMq2S27W0jKWUqVPzLlcHPNNt7jxh4uvLy/0PXbXRdNtbuS2t7drFbhrny22s0jEjaCwONvar+leCtSTWLXUPFHie411rBmazhNqlukTEbdzBfvsATgnpk1FP4F1W21S6m8NeLLrRrG9mae4shaxzDe33jGzcpnrxnmjr/Xl/we4f1+f/AM34h+OX0LV7LRf7eg8PNNbG5m1BrFro/e2qiIARyQxJPYVJ4T8b6jrvg/XpdNmh13UNLytrcR27QreZTcpMZwQc5BA64461v+IfCt1qd3b6jomtz6NqlvEYBdLCsyyRkg7XRuG5GQe2TT9P0PXY/D93Y6x4plvryZiYb+Gzjt2gGBgBVyDyCeeucUvsv+uv8Al6D6r+v619TC8CazqN/q0sd/4vt9WYxFpdNm037Fc2rZH8OclRkgkj05qjrviDxBD4uure48S2/hm3hlC2UN5pm+3vl2g5a4JwpJJGAQRW9o3g3U4Nft9X8S+JZdbubNHS1AsorZYw4w2dnLcDucVFrfgrXNZubuA+MbmLRrwsJtPNjDIwVuqrKwyo9ODiq6p/1/X3iWzv8A1/XyM/4jeOG0HUrDSE1yHQPtMDXEmovZtdFQCAqJGAQSTnk8ACqWhfEyWXwZr159sg1ufSZI4re8S3a3W6MuAhZDgqQxIOOw4rqda8Hy3n2G40DWJ9F1Cxg+zRXKRrMGi4+R0bhvug/Wmx+E9Rv/AArqGjeLfED6ybz7lwlmls0IGCMBcgkMN2TS6P8Arr/l6B1X9f1qc3caV4nsvG3hSfxJ4ji1OOW9k22sVikKwP8AZ5M4cHcw6jmuj1rx1/Yury2H/CLeJdQ8vb/pNhp3mwtkA8NuGcZwfcGqdh4C1Jdb0zVtd8U3Or3Wmys0Qe3WKPYUZdoRTjd8wJc5J24rtqfYOvyOX8eaLpWo+EdWvL/TLO5uoNOnMM09uryRYRiNrEZGDzx3pfDXh+xs/B9s+hWlnpV9d6dGDeQWibg5jGGYYG/BOcHrW1rOn/2voV/p3m+T9stpIPM27tm5SucZGcZ6ZqJdNubfwummWF99muorRYIrzyQ+xgu0PsJwemcE0tk/l+odY/P9LGB4JuddTW/EGk+IdZ/th9PkgEVx9lSDh495G1Pr3J6VyFl4l8dahd6SsOrWkUesXN3ZQB7RWMQiZiZzjGWAVgE4HAznJrptB8EeJ9I8Sy6rd+Nvtq3UiPewf2TFH9oCLtUbgx24HoKt6d4E/s+XQX/tHzP7HubufHkY87z9/H3vl27+vOcdqHq0wWif9d/1t/wxyOofEm+tfCnh+K/1u30i81COY3OqtZGfb5T7PliUY3MeeeBg+1dD8NfGb+JW1Oxk1WLWv7PMZTUYrVrbzlcHhoz0YFT04IxU/wDwr6aDRdNh0vXZrDVNN84QahFArArK5ZkaNiQw6d+ozW34b0vXdMhnXxD4i/tx3YGJ/sKW3lDuMIec+9Ndb/1/XyE+liTR7fXIb/VG1q9t7m1luN1gkMe1oYsfdY45Ofr9ecDWrJ0fSLzTb/VJ7vV7jUI72486GGYfLarjGxeen5fTOSdal0Q+rPNfiLqNhH420Ky12wuNUshbTXEOnQQGY3VxlVUFOhwpY88Uz4exX2nePtZs59Ht9DtryzivU022l3rAdxTJwNoZgMkLxwK63xR4XfXns7zTtTm0nVbBmNtexRiTaGGGVkPDKcDj2FHhjwu+hSXd7qOpzavqt8V+03ssYj3Kowqqi8KoyeB3Johpv5/j/X4BLXby/r+u50FFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABVG0/5DGof9s//QavVRtP+QxqH/bP/wBBoAvUUUUAFFFFAFH/AJmH/t1/9nq9VH/mYf8At1/9nq9QAUVwOrN4q1j4iX2laF4nGjWtnZQT7Dp8Vx5jOzg8tgj7o71e8O+LLxbHWrfxUsf2/QZAlw9nGzCdGXcjqnJyR29aFqr/ANb2B72/rudhRXLaL4+sdZ1Q6dJpesaXdtG0sMWpWRhNwq9SnJzjI44rmbP4rXb+J9Til8K+KJbWOKAw2selgzQk7tzON2QG4xz/AAmgD0+iuf13xjZaDb2nnWeoXd5eJvh0+ytjLcMoA3EoOgGRnJq34f8AEVl4k09rmxE0TRSGKa3uYjHLA4AJV1PQ4IoA1aKydB8R2fiJb42MdxH9hu3tJfPj2ZdOpHqP84rWoAKK5V/Ep0zxb4gTWbwRaXYWFtdJlB+6DGQOeBubJUevtSyeJls/E+stf3qR6Pp+m29yTtBCs7S5bIGTkKoA59utA/6/L/M6miuX0Lx7p+t6ounvp2raXcSqzW66nZmAXKrySh5B45xwcVkeMviJa2um61p+k2Ws3txb28sMl7p1qzQ2kuw/ekyNpXIJIzilJ2QRV3Y7+is/w/LJN4Z0yWZ2kkeziZ3c5LEoMknua0KuS5W0RF80UwoorhNT1bxbaeN9GjupbO00m81F7ZLaFPMkmjEbsHd2+7naDtUfU1PVIro2d3RXG+P9b1LSm0y3stTh0O1vJHS41ee385bYgDYuD8o3HPLccUvgHVtW1FtTg1HU4dcs7WRFtdXhtxCtySDvUAfKdpwMrxz7ULUHodjRRXCeKfE2p6f4ieXT7ny9L0b7O2px+WreaJpMEZIyuxPn4I680dUg6Nnd0Vz3iTxrpfha6s7fUkunkvVc2620XmGRl2/IADksdwxgeuSKi0zx3pup6JqmoC1v7R9KjaS7sruDyriMBSw+UnHIHHNHS47O6Xc6aiuOs/idol9qdnbQW+pfZr11ih1FrQi1aU9IxJnls8cZGe9djTsTcKKyPENprt9axQeHdUt9LdmPm3Mtt57KuONikhc59a5fTPFuq6NoPik+JJotTm8PPtW7hiEQusoGVSo4VskA46Zqb7+RVtV5nf0V5ZceJ/EfhLW9IfxN4l02+OqTxxT6PHbLG9or8B0YEswU9261seJtX8Wad4k0tlls7PR59Wgs1jjTzJrlHBLMzNwg4xgDPvVWu0vO39feTfRvyv8A19x3dFcl8QNb1HRtPsf7Pu49MhurnybnVJbfzls12khivTlsLk8DPNVvAmr6ve6lqNne61b+I7C3RGi1aC2WFWkJO6P5SVbAAOV6Z5pLUb0O2oorzbWdf8QahNq+pad4lsPDmkaRctaIbq2WX7XKgG4MzH5Ru+Ubck80r2HY9JorjdK1nWvG/gHTNS8P31rpNzd5FzM9uZvK25VvLUkAncON3Y1J4L1LW21bW9D8Q3kOpS6W8Wy/ihEXmiRS21lHAYY7eoqrNNp9Cb6XOuorJ07xHZ6nr+qaRbx3C3GlmMTNJHhG3rkbT3/SsnxPY+L5Zri70XxHZ6VZ20XmJC1iJTMQMkSOx+UZHVR0qW7K/QpK7sdZRXDTeNtQfwPoN7bxWtvqutooU3TFYIPkLvI3OdoVSQM9xWl4LN/NFd3F74xtPE8TsojNpbxRpbkZ3DKMd2cjr0x71VtWuxN9E+509FZNn4js73xPqGhRR3C3WnxxySu8WI2DjI2t3/zjODXPeNrvVrK9SaDxvpvhy3EeYbW4tY5ZLph1++wPcDCgnmpvbUryO3orm4ZfEus+CbCW3kt9I1e5iRrhpoDIIcj5tqEj5umA3TvVLwlf6/b+KNU8O+IdRh1c2cENxHfR24gbDlhsdV4B+XIx2/Sra2Jvpc7GiivPtX13XNZ1fVodH12y8M6Po0iwXGp3MKStJMQCVAchVUbgMnnJqetij0GivNtT8T61p2laFNba/Y6sPPmlvLqyiQpdW8Q3OOMhWC5ztPUVeudb1vUPiE2m6bqQs9Nms7iC3cW6SYuEWNjLzyQPNA25xlTT62X9af0vUS1/r+vU7uivL7ew8fTeL7zQ/wDhYOPstpFc+d/YsHzb2ddu3tjZ1z3r09AQihm3MBycYyaOlw62FooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/yGNQ/wC2f/oNXqo2n/IY1D/tn/6DQBeooooAKKKKAKP/ADMP/br/AOz1eqj/AMzD/wBuv/s9XqAPO9T1i78NfFDUr3/hHdb1SC80+3ijk06zMqBlZyQzEgD7wqBtP8WW/hjxL4gtrR7TXdXnjeO0hZZJYIE2pgdjJs3HHrjvxXpdFK2lv63uPrf+trHj/hLTdRk+IWj6iLfxi9lHFcK8viSQN5bFB91B9wH1PXgDpXRanqd94S+IGp6k/h7V9WsdTtbdY5NLtxO0bx7wQy5GPvA5rvqKb1t5ErS/n/X6HmHxA0e+uPENh4hhTxOtm1h9nlj8PyiO6ibdvG5D94HOCB0Kitn4aWFvb2Go3UEfiZJbq4Xzj4kUCdyqABhjquMDJ9Pau2ooWl1/W9xvXV/10MnQdYu9XW+N7pFxphtrt4IxOf8AXovSReBwfy9zWtRRQB574h0m8v8A4oQ2v9nTTaXqFlALu58s+Uohlkk2M2MZJ2jHoTWBH4Z13V/DPiOwks7yC7thZ2tu7fuWultnJDRuf7y4w3Tca9hopWsrf1uN6u55F4S06G58Zac93F8RjPaM8kb66Q9ojbCDlsdwSAR1qVpte0rwzrvhC38L6hd3c73jRX6oPszxSlm3lxyXw2NgBJIAr1iih6qwJ2dzmp9Vm8L/AAzj1JrGS5lsNOjd7Ut5bHag3AkjjHOeM8dK19F1Nda0Kx1NImhW8t0nEb9VDKDg/nUGt+GdH8R/Zv7csI71bWTzIklJ2hsY5XOG+hyK1FVUUKgCqowABgAVbd22+pCXKkl0FrzHxl4nuX8W6OLfwn4luY9G1B5ZpoNNLpMvlsmY2B+blh1xxXp1FR1TK6WPOvGMt3qn/CP6rdeH9W1HQNjy3mkxwjz/ADCB5fmQ5+YDnK5wD1qz8ObC5ttQ1m5tdJvdE0G6aN7LTr4bXjfB8xhHk+WpOOK7yimtAeoE4BPp6CvKbXwV4s8RaZq14/iVtGg16aWSfTZtJSRwh+RVZnIYHYq8cYr1aila47tHkE+vX2mX/gS+1jRdUur63tby3mtLa1LzsyqqbwhxkHG7Poa2UtNU1rTfGWvTaRc2H9p6Z9ls7KZP9IcJHJ8zIM4JL4C9eK7S70O2vPEGnaxK8ouNPSVIlUjYwkADbhjPbjBFaVOXvLXz/FsI+61bpb8DI0XToG8K6RbX1nGTb28DCKaIfupFUYOCOGB/EGteiinJ3bZEVypI5H4g+ItX0PTraHQdK1C9nvHKPcWVobg2qDGW2dC3PygkDg56YOLZQQ+J/AOseGtJ0LXdHka3LC41m18o3EzHdvL5O5iwyT716RRU2umn1Lvqmuh43pGiNqMFpodl4O1TS7xrqGfWdW1Nd3mCNw7BJiSZNzKMYwOc4rY+IPiG5k1jTbG08L+Irv8AsrVYLuW4ttPLxSoqkkIwPJ+YDnAyDzXplFVd3X3/AJf5E2tf7vz/AMzzzxhcX2vaPoWpDQdXn0Xz3k1PSPK2XUigEIGj3fMu4ZK55yKX4f2UyeJtUv8AS9Dv/D+gXEKbLC+QRE3GTudIgTsG3A7Z49K9CooWjuhvVWCvH5tDXwz421S61LwhqviR7i6e50mWBfOt4TJyyspO2M7/AOIg8YI6c+wUVPW4+ljze5uNf8B/DjT7Ow0u61DVrqV2uHsrY3AtWkYu7bR97G7ABIBI61q+ANUtpYZdPtfD/iHTmUGee71mz8o3UhPzMWydzH07AccDFdnRTW7YnsZOnaxd3uv6pp9xpFxaW9kYxDeSH5LrcuTt47dO/wCHSuK8a+Ir+bxI+iXXhvxFc6DCqtcPplg0v25iAfL35AEYzzjJbkcDOfS6KXYfc848T26eJdG8P69/wil9c2mm3LmfRbq2CTmIqUyIicHBCkL3FT+CNOWXxbe63pnhqfw1pclmtv8AZriBbd55Q5O8xKcLgcZ75r0CiqWjv/XYl6q39b3Mmz1e7ufE+oaZLpFxBa2scbxX7n93cFhyq8dR9T744zzni/U9Ln1b+zNT8Bap4gkjTEVymmpLCNwyQsrEbe2TxjFdzRU2uUefG78Q+BvhXYQwaVdanqwPlLBbo1ybZWZmXdjlgi4XqASAMjrU/gDVoZJpbEaB4ktbuYG4u9S1iw8kXMnA5bccH0UcADA6V3VFVfVt9SeiQV5tei58Kazrtvqfha88RaDrNyLxPsVstyVkKqGSSInplQQen9PSaKnrco8u8J6HdpdaDHdaNcWdmz6pKYJIdqwJK48tWC8KSpI2/wCFbieG/wCwvEvhK30xLqazs0vUmncFzl1DbpGAxywPXqa7Wintt/X9XEczZ2lwvxR1W7aCUW0ml20aTFDsZhJKSoboSARx7iumooo6WDrcKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqjaf8hjUP+2f/AKDV6qNp/wAhjUP+2f8A6DQBeooooAKKKKAKP/Mw/wDbr/7PV6qP/Mw/9uv/ALPV6gDMstdtb7XtR0hEljutPEbSeYAA6uMqy4JyOCOccinWmt217ruoaVAkpl09YzNIQPLy4JCg5znAyeO4rnPEUkfh/wCIeja7Iwjtb6GTTbtz0BAMkRP4q4/Gjwlotvrvgm7m1u3Mq+I5pLy4iLFSY3P7tcggjCKlCu1f+r9PvWoPR/1t1/HQ3dAuNduBf/8ACRWVvaFLt0tPIk3eZAPus3JwT+H0Fa9cR8NNLs9FTxJp2mQ+TaW+tSJFHuLbR5UXGSST+Ned+MGg1GHWPEuj+F76byJZRH4gn1zyWhkRsfu4d3KgjAXGT9aTaVvRP8EOz19T3uisDXrDT9c8Dy2viC8a0s7iBDPcCYRbOhzuPA59eK27eNIbWKKJiyIgVWZtxIA4JPf61TVm0SndJklcxb/EDQ73xVDoNg891cStInnxRHyEeMZZS5wCQP7uevOK6euM1+KOH4meDUhRY1xfnaowMmNST+dJbj6HZ1V1PVLLRtNm1DVLlLa1gG6SVzwvOP58YqS7vLawtXub64itreMZeWZwiL9SeBTmWG6gG4RzRPhhkBlbuD/I0egepj+GfFth4rjvH02K6jWzmELG5h8suSoYMAecEEdQD7VuVx/gz/kZ/GX/AGFV/wDREddhR0T8l+QdX6sKK5LxFF/ZPjbQ/ECfLHOTpd4f9mQ5iJ+kgA/4HXO3t5e2/gXxZ4wsNwvNSl22siuFKWyMIkYE8Dje+f8AazSvpf8Ar+tbjtrb+v60Z6fRXj3hXw/runeJ9LvtK8GXGi28kudQuz4gS8W6iKnJZM8nJDAj8qyfEem2/ibWPEkV74d1rX9Ua7lt9M1C0ZvstsAAFQksFXa2d2QQTmm+39dP8xLX+v67Hu9FeeLpUHh/xl4D02JEhSCyvIwocld+xCwBYknnJqlJdQXl78UpLSZJoxZIhaNsjctqwIz7EEUS0Ta8/wAHYcE5NJ6bfieoUV55ofw7tZLPQdfh1G8XW41gnlvpZWcyx7QWh2bgqoQcDA4969DqpKzsRF3SaCiiipKCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/yGNQ/wC2f/oNXqo2n/IY1D/tn/6DQBeooooAKKKKAKP/ADMP/br/AOz1eqj/AMzD/wBuv/s9XqAM7XdA0zxLpbadrdqLq0dlYxl2TkHIOVII/OjU9B03WNBfRtRtRLp7oqNAHZBtUgqMqQRjA71o0UeQdbnK6H8M/CXhzVo9S0XSfs13ECEk+0yvgEYPDMR0PpSXPwv8GXmpXN9c6DbvcXQbzW3OAS3Uhc4U+4AOea6uigChqeiadrGiyaTqdstxYyKqNCzEZAII5Bz2HerkMUdvAkMKBI41Coo6KAMAU+igAri7v4Q+B769nu7rRPMnuJGlkf7XONzMck4D4HJrtKKAMu+8N6TqXh0aFfWazaaI0jEDO3Cpjb82c8YHOc1Je6Dpuo6A2iXdqH05olhMAZlGxcYGQQR0HetCih63v1BabHI6T8LfB2hatBqWlaP5F3bsWik+1TNtOCOjOQeCeorrqKZNNFbQST3EiRRRqXeR2CqigZJJPQD1ovoFtSvqml2es6bLYalD51tNjem4qeCCCCpBBBAOQadFp1nDpaabHbx/YkhECwMNy+WBjaQeoxxzU8UqTRJLC6yRuoZHQ5DA9CD3FOot0C/U5XS/hl4Q0XW4tW0vR1tr2Ji0cizy4UkEHCltvQntXn+pfD/UZdb1F9Q8A2utz3d3JMmqR6ybVVVj8uYhg8DGcDk5PPWvaqKQ7nJW3gSy1HwRpmieM0XWJbOMbpWdwQ/s4IbAHHuBzWlZeDtA06yvbOw0yK2t76EQXEcTMokQKVxweDhjyOTnrW3RVPVvzEtLeRFbW8VnaQ21uuyGFFjjXJOFAwBk+wqWiiluC00QUVS1LWdM0aNJNX1G0sEkO1Gup1iDH0BYjNWYJ4bq3jntpUmhlUPHJGwZXUjIII4IPrQBJRRRQAUVFLd28E8ME08UctwSsMbuA0hAyQo74Azx2qWgAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKo2n/IY1D/ALZ/+g1eqjaf8hjUP+2f/oNAF6iiigAooooAo/8AMw/9uv8A7PV6qP8AzMP/AG6/+z1eoA4D4g3TeC7uLxtYqjMqi0vrUvs+1Ic+WR/tK3/jpPpWr4YtIfDfhS41nWbpJbq7U6hqN4gLqcrnC4ySqrgADsPepb7w1PrXjKG/1k28uk2EJFnaAli8zDDySAjHC8KOepPFSeEdDv8Aw5a3WlzzxT6bDMTprB2MkcR58twRj5TwCCcj0xRHZ/18vv1B7r+v6stBvhzx/wCGfFl7LaeH9S+1zxR+Y6eRImFyBnLKB1Irxq2TwQ9pq423zeNPtt39mGn/AGjzt/mt5eNvyemfavoisHwfodz4f0Wa0vXieR7y4uAYiSNskjMByBzg80re98v1QXsvn+jMa513xTH/AGZ4f0e1sbjX/wCz47m/uL92WCH+E8JyxZg3A6YqCDxxrMMq2Gs2Nnb6la6pbWl95LM8Twzg7JIySCMtgc56H8NPxHoGvHxBFr/hC8sYr/7N9lnt9RRzDNHu3Kcp8wYEn65rNm8Ea1ceH9Wnur+zm8R6jPb3AlCMlvCYWVo0HVtoweepzTvrzP8ArXp8gt0X9adfmaN542SdY00RA8y62mlzC5Qgdcuy4PI2hsH26Vy998Vb8TXWoafP4ZGlWkjqbK61HZf3AQkFkXOFzg4UjJ49a24PA19a+JdBvIbq3NlZxI18jZ3zTpHIqyLxjkytnOOgrFuPhvrOnXU8eh6X4L1KzkleWOTWtPY3CbmLbSyA7gM4BPOKWq/H9F/m/mPR/wBev/AR0WueLdUh1LQ7Xw3p8N+dYtZZo/OcoI8BCrs3ZQGJIAJPAFQDxjrmg+H9ZufGemW0d1pzRrDLZsyW135mAoV5OmGOGJ6da2ZdBnfxPoeoxC2it9OtJoJIo8rguEChBjG0bT6dqn8V+H4/FHhu50qWQRebtZHaMOFdWDKSp4YZAyO4zTlotP61/wAhR6XOT8OfEDULjxLaaXrd34avV1AuIH0O+MzQsqltsik9wD8w4z9aq+Jtf8V+IPDevz+HrPSYtBgiubeSW+kkM86orLI0YXgchgN3XFXvDHhHXNM8QwXGpaH4IhtYt3+kaZYvHdA7SAQSMD39s1Dc+CfFiWWqaDper6db6BevPIjNE32pPNJYxZ+6EySN2CcGlNXXyZUHaV/Nf1+RtjxZovhLwTolz4gvfskM1rDHG3lPJlvLBxhQT0FZvjLxBpnib4N65qOiXP2q0a3ZBJ5bJkhhkYYA12OkWklholjZzFWkt7eOJyh4JVQDj24qh4y0a48Q+DdS0myeJLi7hMcbTEhAcjqQCf0p1ve5vO5FH3VG/Sx5n4Qh0Oy8caKvh7RdZ8KmQSfaF1QSxpqA8s4RAzMrEH5uo4HGa7yy8XSw6T4hm1yOKK60OaVZEhBAkj274mAJJ+ZSB165qlY+HfFuq6lpkvjK70dLXS5xcQwaVHKTLIFKqXaToBknAHNZuoLY+JvidbQaBfwXlo8CPrYt2DoBDJuhBYcbixII64BpvV273+XW/wDwAWiv2t/w3/BOvF14g/4QkXS2lrLr7WnmC2yUi80jOzls4HTr+IrT097uTTbZ9SiSG8aJTPHG25UfHzAHuM1FrMWoz6LdxaJcRW2oPERbzTLuVH7EjB/kfoal09LuPTbZNSljmvFiUTyRrtV3x8xA7DNG7f8AXf8Ar7g6IsV4bqlh4ZuvHPiV/EHgrX9fnF+AlxpkMroi+UnykrIoznJ6dxXuVYmgaNcaVqWu3Fw8TJqN99piCEkqvlouGyBzlT0zSS96/l+qK6fP/Mi13RNJvPB0kN1pdvNDa2TG2juoRIYcR4GN2cEADnrTfB7yxfDPRZLeMSyrpULJGW2h2EQwM9snvR4vtvFF5YrbeFDpAWZJI7o6l5uQCABs2d+Wzn2rG0vwv4on+Hd54Y8QXelwf6EtnZz6d5pIULtzJvxnoOmO9K7tN97fr/mgSS5V/XQp6R491n/hLLHTNZufDF5FfytCsejXrSz2zBSw8wHqPlxkY5q1rXi/xAfGdxoegLoVu1qI28vV55I5bwMucwhRjA5GeeRWZonw61u113Rr+9tvC9iumz7mXSbNo5Jk8tly0hGSckfL0754Fa/i3w54q166ns4v+Eau9Hm+5/aVrI09tlcHZtOCc5IPBpsS31F8ZanBpniLwhqOrulnDDNcyTlmyI/9GfIz354461u+HL/WNVhmv9TtI7G0mYGytmQ+esf96U5wCeu0DgdST0zbvwY90vhi2uZo7600lJIrs3Wd1wrQGLpg5JJycnp3NX/DOk6noQuNOuLmO60qIj+z5HdjPGn/ADyfIwQvZs5xwRT05n/X9f8ADhrZf13/AK/pm9RRRSAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKo2n/ACGNQ/7Z/wDoNXqo2n/IY1D/ALZ/+g0AXqKKKACiiigCj/zMP/br/wCz1eqj/wAzD/26/wDs9XqACiuU8R+JdWi12Hw94Tsba71WSA3Mst47LBbR5wC23kknIAHpWhpN/q9potxceNhptnJbEs89pM3kMmAd3z4K9xg+lHS4dbG3RXPaB498MeKLyS00LV4rq4jBJi2MjEDqQGA3D3Gaqz/E7wba3MVvca7BHLJI0QVkf5WVip3cfKMg8tgHr0oA6uiuJ8afE3RvCOoWlhPdxi7kmiaeN4ZG8u3Ync4KjBIx0yT7VtaJ4z8P+ItLudS0jUUms7QkTzOjxLHgbjneBxjnNG6uHWxuUVz+geO/DXii8ltdC1aG6uIgS0W1kYgdSAwG4e4yKqT/ABO8G2tzFb3GuwRyySNEFZH+VlYqd3HyjIPLYB69KAOrorifGnxN0bwjqFpYT3cYu5JomnjeGRvLt2J3OCowSMdMk+1b3hzxXovi2zluvD979rhhk8t28p0w2M4wwB6Ghaq6B6GxRRWJoetXGp61r9nOkSx6bdpBCUBBZTEj5bJ5OWPTHFHWwG3RWVr/AIm0fwtYrea/fx2cLNtUsCxY+gVQSfwFRQ+L9BufDUviC31KOXS4QTJOis2zHUFQNwPI4xmgDaqtY6ZY6ZG8em2VvZo7F2W3iWMMx6kgDk+9ZGmePPDGs64+j6XrEFzfICTEm7DY67WxtbHsTVfXfiT4S8N6k1hrOsxwXSgFokiklKZ9dinB9jQG51FFcD4l+Lnh7R9Jsrixv45pb3ypYVkt5cNAZdjv90YwA5weeOlS6l8Q9M1fwHr+p+DdT864062L+Z9nZfLYgleJFAPQ9jSeib7AtWl3O5ormtG8e+HNW1OPRrbWILjVBGC8Sg/MwXLANjaSOeAex9K1bvXdNsdYstKu7tIr2/Dm2hIOZNoy3OMD8etU1Z2EndXNCiiobySeGxnks4BcXCRlooS+wSNjhd3bJ70hk1FcRY+I/Fmn+KtO0zxdYaULfVjIttLpsshaFkXftkD9cgdRxUvirWPGekSXmoaZZ6H/AGNZR+Y4vLiRZ5wFydpA2r3AznpQ9NRpXdkdlRWBqV94hvNBsrjwtZWS3d0iyONUd1SBSucEINxOTjtUfg/XtT1iPUbbXLa1ivtNufs8sllIXglO0NlSeRjdgg9KdndrsTdWT7nR0UUUhhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABVG0/5DGof9s/8A0Gr1UbT/AJDGof8AbP8A9BoAvUUUUAFFFFAFH/mYf+3X/wBnq9VH/mYf+3X/ANnq9QB5/rurJ4K+I0uu6xDMNG1Kwjt3vIomkFvLGzEBwoJAIbr6ik8Ua1aeMfAjX+hW9zqWn2t/byzx/Z3X7VCjqzhFYAsMe3Y16DRQtF6f53H1v/W1jzb/AISDSPHHjDw63hNJbg6XcPLdXn2V4lt4vLZfKJYDliRwPSs6ysrWP4K+MJ0t4xLPLqLSvtGXKyOFJPtgY9K9aopNXTXdP8bf5Anqn2/S/wDmcJ4uma18EeH9SaKWaGwu7O6ufKQuyxr95sDk4zmq/inXLLx/8M9UbwZdyXvkyxCXy7Vi2FdXYCNwN/y87eh6V6HRTlq35u/5f5Ex0t5K39feeN+FdRtte8daP5/xD/te7sTI0VifD/2RseWQy7wAAAO3I4q1ZWVrH8FfGE6W8Ylnl1FpX2jLlZHCkn2wMeletUUpK6t5Nffb/Ia0af8AXX/M4TxdM1r4I8P6k0Us0Nhd2d1c+UhdljX7zYHJxnNbukeItF8c6Le/8I/qc0kOGt3uIEeGSJivVSygggHIOOtb1FU3dvzd/wAv8hJWtboc34d8G/8ACPag93/wkfiDVN8Rj8nU77zo1yQdwXaPm4xn0JrlbXx74a8JeNvFlr4g1L7JNNfxyIvkSPlfs8YzlVI6ivTqKWt7j0PKPH19N/buh+KLDXpdI0mTT2EWprpf2xYy5VhlGGU3LjnGeMVmRm1u/hb431K08UDxE14FM8y6cbMI6qB93oSRt5A7V7VRSsuVx9fxd/62Hf3lI4TXbO2sdW8BQ2cEcEcV6yRrGoAVfs78D24rzzWPEv2LWPFOgy6vpelWGp6hMt0NQsbia5jDAKWQouwggZUMeARzXv1cJ/wgOu2dzdR6F41uNP026nknktG0+KZg0hy+JG5HJ9OKNeZvvf8AT/IS0ivK34X/AMx/jExS/C+2udHZ9RtbV7O4V4f3jSRRyoxYY6napP51U8SeMtC8XfC/xO/h6++1i2smEuYXj2Eg4+8oz0PSuz0LRbXw9oVppOnhvs9rHsQucs3ckn1JJNaFOa5uZdwh7tn2OA1uytrBvAENlBHBHFqKKixqBtBgfI/Hv610WqavpNp4t0bT72yaXUbsTGzuBbhxDtUF/n6rken41u0U27u/nclKyt5WCqer6pbaJo13qd8WFvaRNLJsXJwBngetXKKl3toWtzynwr8QvDHiLxRbajq2rKdWmJt9O05LeYraK5xgvsw0jcZbOB0HGSZPHV78PNW8QTW+pveTeJrKPybdbCO586Nh8yhNo2E5bOTnrXqVFN62Em0cDrep6HafDvSrH4sTbXvYYxcIVlJeVArHJiGQQcegp/w0hSA6qmirer4Y3xnTFvFcEHafM2b/AJvLztxnvuru6Kd9W+4raJdgooopDCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/yGNQ/7Z/8AoNXqo2n/ACGNQ/7Z/wDoNAF6iiigAooooAo/8zD/ANuv/s9Xqo/8zD/26/8As9XqAMvXvEuj+GLIXevahFZQscKXyWc+iqMk/gKXQfEek+J9O+3aDepeW4YoWUFSrehBAIPI6iubSK3vPjbcf2gFkls9IiexR+dm6RhI6j14UZrR8cX9zpGgA6Q8dpeaheQWguigPlGRwnmEdyB0z7ULZPv/AJ2Drbt/lc6aivPV03UfBXijQxF4k1XV7XVblrW5ttTmExB8tmDxnA2gFeR6GucW18QXfgjW/E0ni3VoZNLuLx7K2hlAjxHI3EuQTIOMAE4AwKV1/Xy/zDy/rr/keuXuo2mnLAb2YRC4mWCLIJ3SMcKvHrVmvMPHugnWk8PatJresWbXl5Zwm3tbvZDGWyfMRccPzw1aeuQ3fw8+H+oz6dqusatdSSxrFLfy/apYi7KnyDAzjOQvc09k797fl/mC1at1V/zO8oryTwjqesW/jCwgtYPHE9lds63x8RWn7qP5SVdHH3PmGMdMGqq2viC78Ea34mk8W6tDJpdxePZW0MoEeI5G4lyCZBxgAnAGBQ7LcNz1y91G005YDezCIXEywRZBO6RjhV49as15h490E60nh7VpNb1iza8vLOE29rd7IYy2T5iLjh+eGrsdI0Ofwtot6tnf6rr1wQ0sSaneh3ZgvEauQAoJHfpnNGyd+jt+Qt2rdV/mb1cPL8ZPAcMzxS67tdGKsPsc/BHX+CtTw7rfifUtQeHX/CP9i2yxFluP7TiuNzZGF2qMjgk59qr69/yU3wl/1yvv/QEos7oZ0WmanaazpdvqOmy+da3KB4pNpXcvrggEfjVquW1u4utI8caJfG5m/s6+DadPCXPlpKfnifb0BJBXPuK57WtQ1KXwL4w8RwX91CsxaPTgkzKIoojs3rg8FmDnI6jFJtWb9f6/UaWqXp/X5npVFecNY6z4Y1rw/qU/ifUdTl1W9S0vLS4YfZyHRjuijA+TaVHc1zOp+I9X1fWNUukHjlJbS7mgsl0SzVrJRGxUbwf9YSRk59cU9v67W/zEtf673/yZ7bRWBbpqfiLwBEtxNPo2p3tkokkRCslvKV5IU4IIPbg/StfT7aWz022tri5ku5YYlR7iQYaUgYLH3PWm1ZtCTukyxVZdRtG1V9NWYG8SETtFg5CEkA56dQfyqzXk48BCf4m31n/wlnieM/2bHcedHqWJTulcbN237gxwOxJpfaS/rYr7Lf8AW56xRXmnj3U73SH0Pw3azeI57eS2d7i40hBNfyiMKo+Y4xktlmxnOPWpvA8mq61p+t6NqH/CTWtiqoLK91eM294u4HcA6/e2kAg9ecHijdNoW1rnotVjqNoNVGmmYfbDCZxFg58sNt3Z6dTivPvCmt6n4p8RQ6XqGoGJdBDNNJbSMn9quHaNZBjGYxtO4cgucdBVO78Ci4+Kj23/AAlXiWEzaa915kWo7XTMwHlqdvEYz936UdV53/INk/K35nq1Ys3imyhtdbufKuHh0UH7Q6KuHYJvZU55IBAOccmi9uU8I+DZJpJ7m++w2+1HuZN8079FDN3ZmIH41iahpL6L8HNVtblg922nXE11J/fmdWZz/wB9E/hipk7JtdP6/r5FQV2k+p11jdpf6fb3kIZY7iJZUDjkBgCM+/NMbUrRdWTTGmAvJIWnWLByYwQpbPTqwFeZ2llrPh2DwhrMniPULuTUbm2tJ7FmAtFikjOAkeOCoA+bOTijUfA/2n4sJb/8JR4kh+06dPdeZFqG14v3yfu0O3iP5vu+w9K0kvfsu7X3K5nF3jd9k/vdj1amTy+RbyS7Hk8tC2yMZZsDOAO5rzjxPp2qQ6xomgad4j1W3txpd29xcm4JnmCGMg7sY35IG7GQC2OtQfD681p9c0S41XW7q/8A7Y0R7mWCVv3UbI8YQovY7W+Y9zk1K97Rf1v/AJFXtv8A1t/mdd4X8Z2/ii6vrWPStV0y4sRG0sWp24hYh920gbif4T1xXR1yei/8lS8Uf9elj/KWusoDZ2/rYKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/yGNQ/7Z/+g1eqjaf8hjUP+2f/AKDQBeooooAKKKKAKP8AzMP/AG6/+z1eqj/zMP8A26/+z1eoA5/xL4M03xRJbz3Ul3Z31rkQX1hOYZoweoDen1Bplv4H0tPDV1ot/NfapBdtunmv7lpZnYYwd3YjAxjGMV0dFHSweZy+heAdP0TVE1GXUNV1a7iUpby6peGc26nghBgAZHGetWY/B+nx+FdQ8PrNc/ZL8zmVyy+YvmsWbB244LHGQfxrfooeu4bGPq/hjT9b8Opo16ZvIjCeXLHJskjZMbXDDowxVSw8FWdt4fvdH1LUdU1u1vDmQ6pdec6jA4VgBt6Z46Hmujoo3v5gtLW6HK6J4FXQ9Wjvo/EviO8SMELaXuoebBgjH3dvbtzVuPwfp8fhXUPD6zXP2S/M5lcsvmL5rFmwduOCxxkH8a36KHruGxj6v4Y0/W/DqaNembyIwnlyxybJI2TG1ww6MMUeHPD3/COWctv/AGvquq+ZJv8AM1O58504xhTgYHHStiijq33C2iQVnXei297runarK8on09ZViVSNreYAG3DGf4RjBFaNFAHE+PpbzW4m8KadouoSz3YjkGp7Nlta4fO/zM53rtztAyeKseNdGaL4T6jo+kW0sxjshBBDChd2AwAAByTxXXUUmrxce407ST7HI+Hfh/Y6Re2+pXWo6vq95BHiBtVuzN9myMHYMAA44pNU+HNjf6nPfWOs67osly/mTppV+YUlfu5XBGfcYrr6Kb1ZK0VjMvtCg1HwvLod3cXUkEtt9necy/vmGMbi2OWPc459Kt6fZR6bpttYwNI0VtEsSNI25iFGBk9zxViigYVzfiPwRZeI9Qh1A6hqel30MRhF1pl0YZGjznYTg5Gea6SigDndV8F2OsaTYWl1eaitzp6BbfUorkpdKdoUsZB1LAc5GDUdh4L+waJf6b/wkmv3QvgFa4u7wSywjGCI2K4XIPp+VdNRRvfzDt5GC3g/TFfR3svOsX0f5bZrZgCY8YaNsg7lPBPfIzkGo/Evguy8S3VtdyX2pabe2ytHHd6bcmGTYeSpODkZHpXRUUPUFoc5deGriddBsWvJLrT9NlE1xJdyl57h0H7rccYb5juJ45UcVsarp0OsaPd6bcs6w3cLwyNGQGCsMHGQRnn0q3RQ9VZgtHdGNd+F7K9sNItJZZxHpE8M8BVlyzRKVUNxyMHnGPwqv4m8G2Xiae2uZb3UNOvLUMsV3p1yYZQrY3LnByDgdq6Gih67gtNEYMXhG1SWwlmvr+6msbOWzWa4mDvIsm3cznbkt8owePpUFt4HsLO3sorW8vomstNk02GVJVV1jfbl8hfvjaMEYA9K6Wij+vz/AM2G39en+SOI0v4YW+la4mqx+KPE09wGRpRPqAZZwn3Vk+QFl5PBPc129FFAdbhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAVRtP+QxqH/bP/wBBq9VG0/5DGof9s/8A0GgC9RRRQAUUUUAUf+Zh/wC3X/2er1Uf+Zh/7df/AGer1ABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFUbT/kMah/2z/8AQavVRtP+QxqH/bP/ANBoAvUUUUAFFFFAFH/mYf8At1/9nq9VH/mYf+3X/wBnq9QAUUjMEUsxCqBkknpVbTtTs9Xslu9NuEubdmZVljOVYqSDg9+QeaALVFYPhTXbnXbXU5LyOJDaalcWiCIEZSNsAnJPPr/KuVsfihrU2jrrl74JuYtC5Zr22v452VQxBbysBsDBz9KP6+8O/wBx6RRXK6z42a3ms7PwzpUniDULy3F3HDDMsSLCejtI3Cg9vWksfH1m2h6pe65aTaRc6OQL+zlIdoyRldpHDhuxHU0AdXRXJaL4r8QanqEQvPBd5p+nXAJhu5LuNmHBI8yIfMmcY74JrIm8feMoNYg0x/h5i7uI3lij/tuH50QgMc7cDG5eCe9HWwdLnolFc7YeJrl/EFvpGt6X/ZlzdWYuYP8ASBKHYf62LIAG5MjoTkHPFZ+s+P206x1+9stK+2WujPHB5puPLFxOzKrIvynAXcMn14x3o/r9AWp2VFcbpnjfVRrVnpvivwtPoT37FLSYXkdzHI4BbaSmNpwDiq83jfxPPrGp2mgeCf7Ut9PujbNc/wBrRQ7mChvusuRww9aOv9f11A7qioraSWW0hkuIfImZFaSLcG8tiOVyOuDxmszxVr//AAjPh+XVPs32ny5I08rzNmd7qmc4PTdnpT62FfS5sUVj+Idf/sE6WPs32j+0NQisv9Zt8veG+boc429OPrXLX/jzxfY6xBpx+H++S7eRbU/21CPOCDJP3fl455pf1/X3j/r+vuPQaK5NPGd5BruiaVq+htYz6lEzz4ulkFq+SFUkDDbiMZBGCRTrTxsLvXdfsE08iLSIPNS4M3FzjcGAGPlwyMucnpSbSV/X8NwWv4fjsdVRVDQtT/trw9p+qeV5P222jn8rdu2blDYzgZxnrir9U007MSd1cKK5bxZ4s1LQtW0zTdE0D+2rvUFlZY/ti2+0RhSeWBB+96jpWa/xKktdE1abUtBnsdV0owmfT5Z1IZZXCqyyqCGHJ7dsUlqM7uisrXdb/sVNPb7P5/22+itPv7dm8n5uhzjHTj61y9z4/wBfGratDpfgx9RsNKuGhnu49SjRvlUMSI2UEnB6A0rr+vl/mg/r8/8AI72iuek8WwGx8PXlpbtLBrk8ccZdthiDxs4YjByflxj361t3ks8FjPLZ2/2q4SNmig3hPNYDhdx4GTxk9Kb0vfoC1t5k1FcJonjjxRqviSXSrnwR9kFrLGl7N/a0Un2cOu4HaFG7jnANXNX8bXya5caR4V8Oz6/dWYX7Wy3KW8UJYZC726tjnFAHX0VU0u8mv9MhubmylsZpF+e2mILRkHBBI4PTqOoqzIWEbFPvAHGR3oem4LUdRXnvhvxzrery+ERd29kq61HdvdeVE42eUTt2ZY47Zzn8K9CptWAKKKxtE1i41fU9WKpGNPtLgWtvIAd0rqP3pznGAx2jjqrUgNmisbVdYuLfxBpOk6ekbzXbPLcGQE+XboPmYYI5LMij6n0p/h/XP7dgvX+z+Q1pfTWbLv3ZMbY3ZwOvXHb1oWoPT+v67GtRXMTeK7+Swv5NI0CbUrm11B7GO3juFQSbVyXZ2wEXt35x60/w54sl1ZtQt9a0qTRL/TQjXMEsyyoqMCVYSLwRhT9MUdLgdJRXEWPj3V9XmiutH8HX11oUj7V1FrmON2XON6wn5mXv15FdZquowaRpF1qN222C1iaVz7AZx9aHorsFq7It0VR0Sa/udDs59XjjhvZYg80cQIVCedvJJ46fUVi3Xiq4gk8SXUVvHNp+h2/qVaacIXdd3IChSg6Hkn0ol7t79Aj72x1FFcDafEfVIEs7rxT4SuNH0y9ZFiv472O5RS+NpcKAUByOT61J4j8beJ9B1PyYvBP2u0multrW6/taJPPZvu/JtJXPPWh6OwJpq53VFcNqHjfxHp1jpiz+Df8AibalcyQR6f8A2pHwFTdu8zbt5APHHStHw74xl1XVpdG1vRrjRNXji88W0siypLHnG5JF4bB60bu39dwOooorH0rX/wC0/EGtaX9m8r+ypIk83zM+bvTfnGOMdOpoA2KK41vGWt3lreyeHvC39qSWepzWMkf9opDgR4/eZde+fu9vWq/h3x14g1u1OoXfg77DpYhlk+1jU45eUz8uwKG5KkZ/GldWv8/wuOzvb5fod1RXDzfEfyvhyPEv9ksbosYzp3ngEMMlhv29AgL5x0rdi8Reb4ns9I+y4+1ac1953mfdw6rsxjn7+c57dKq2tv62v+Qul/67G3RRRSAKK4qbxzq9jqUX9reELuz0ea5S2j1A3UbtudtqloR8ygkjv3rtaFqrhs7BRVHWL+fTNLkubTT7jUZlIVLa3xuck4HJIAHPJ7DmsTw54vvNU1yfRdf0GbQ9Tjg+0pE1wk6Sxbtu4OvGQcZFC1dg2VzqaKK5PxL4s1fSvENro+geG/7buZ7Vrlh9uS32KrBT94EHlh3pX1sB1lFY2na3cjw+dS8V2UPh5kYiSOe9jkSMZwCZBhec1X8GXV9eaTcT6jrena0Wu5PJuNOKmNY8jahK8bh3+vU9afUOlzoaKzj4h0USQRnV7APcsVgX7SmZSDtIUZ5III47iptQ1XT9JgE2q39rYxE4ElzMsak+mWIoAt0Vm6jc313oLz+FJtPnu5FBtpLlma3bkZJKckYz074rN8Ea1qut6TeNr6WaX1nfzWkn2IMIj5ZAyNxJ9f8ACjq0HRM6SisbxPrE+kabF/Z6Ry6heXEdraRyglS7HkkAg4VQzHnota7usUbPKwVVGWY8AAdTR0uHWw6iuS/4TC6t/h5eeKrmyjkRQ9xa26sYy8G7Ee5jn5iuGzjv0p+g+IPFmoaokOteC/7Js2Ulrr+1Yp9pxwNijPNHWwdLnVUVx/h3x8uveHtW1F9ONrPpokc2xm3eagBKuGwMBirDpwQafeeK74TeEGs7aBYddcCdZAztEpi8wBWBAzwRkj8qP+B+Owbfj+G51tFcz4S8TXGq+Ep9X1wQW/kT3CuYUYKqROy5wSTnC10Fpd299aRXVlNHPbzKHjljYMrg9wRQtVf+tQJqKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/wAhjUP+2f8A6DV6qNp/yGNQ/wC2f/oNAF6iiigAooooAo/8zD/26/8As9Xqo/8AMw/9uv8A7PV6gDjvHlnqFwLSWSKa98PxEnUtPtMrNKOx9XQd4xgn36V0uk3mn3+k29xo0sMtkyDyWhxtCjjAHbHTHbpVymRQxQIUgjSNSxYqigDJOSeO5JJoWisD11Oa8DtatZaz9jvILoHWLtpGg3fIxfO05A5AI6ZHoTXGeGfGWgaT8GYrS41G1mvzBPCunxyh5ndncKnlg7ucjt3r1W3s7a0WQWlvFAJHMjiJAu9z1Y46k9zVGy8M6Dpt19p07RNOtJ/+esFpGjfmBmk1ePK+yX3Fc1nfzuef+FZoPAviK1tfFV1FYG70G0jinuXCRh4twkj3ngEbwcZqh4klGvnxR4i0ZGvtMtZLBS8Iytz9nkMkpX+8AGAz04Nes3+mWGq2/wBn1Syt72HO7y7mJZFz64YEVNb28FpbpBawxwQxjakcahVUegA4FU2279d/xuQkkrdP+AY2m+N/DOryWsWm65Y3E91/qoI5gZTxnlPvDgHqBVDU/wDkrGgf9g28/wDQoa3LTQdHsL17yx0qxtrmTO+eG2RHb6sBk1ba0t3u47p4ImuIlZI5igLopxkBuoBwMj2FLqn/AFsHS39bnL/Eu1z4LudTt5Ggv9J/020nQcxuv8wQSCPesfxtpEOjfA+40+yYjYkBMrDLO7TIWdvUliSa9AubaC8tpLe8hjnglXbJFKgZXHoQeCKbc2Vre2jWt5bQ3Fu2MwyxhkODkcHjggH8KF/kVfVPsctpPgvUxq9nqfivxNPrstiS9pELSO2ijYjBYqn3mwTgk8ZrjI7DQ7rxT4nfVvHmoeHZhqzhbW21hLRXXy0+fY3JJORn29q9jrHuvCPhu+upLm98P6VcXEp3SSzWUbs59SSuTS+1fy/y/wAhdLf11NS2ZGtYmhl86MoCku7dvGOGz3z1zXIfFmPzfhxex7mTfNbruQ4ZczJyD612MUSQxJFCixxooVEQYCgdAB2FR3VnbX1uYL63iuYWIJjmQOpIOQcHjggGqdm7+YldI8v8Q+DP+Ef1Twzd/wDCSeIdU3a5bx+TqV/50YzuO4LtHPHX3NdZ4h/5KB4R/wB+7/8ARNdJcWdtd+V9rt4p/JkEsXmoG8tx0YZ6EZPI5pZLW3muIZ5YInmgz5UjIC0eRg7T1GRwcUdLef6Ib3v5f5nFa/p0us+O761tHjjuodFiltnkztWYXBdCcc4DRjPsapLYvpHiK9sJGV3HhUmSQf8ALSQSyF2/FnJ/GvQha263jXYgiFyyCNpgg3lQchS3XGSTj3psljaS3DTy2sLzNEYWkaMFjGTkpnrtz26VDjePL6/jf/P8Cr+9f0/C3+RyngTxRoD+D/D+nprmmte/YYIvswu4zJvEYG3bnOc9q7Kse28IeGrK6jubPw9pVvPE26OWKyjVkPqCFyDWxWkpczbIStoefeO7LUr/AOIHhaDRNW/si7MN4Vuvsyz7QFTI2Nwc1T8V+EJtJ+HniG9utQuNY1W6WGS6u5UC5SKRW2oi8KoAY4FejyWdtLdw3UtvE9xAGEUzIC8Yb7wU9RnHOOtTEZGDyKnVLTf/AINyut2efeIvFGieILnwzZaFqdtqNzJq0E/lWsokZI0BZmYD7oA9cVylzYaHda94wbWPG13oMo1FwtnHqCRxTL5afM0LDMmemO4GK9esdD0nS55JtM0uys5Zf9ZJb26Rs/1IAzUMnhjQJdQN/LoemveFt5uWtIzIW9d2M596Vtfv/G3+Qv8Agfhf/M4e61Y/8Il4B1LXPs+nAX8LSl8QxxjyZADg4CgjBx2ziu6s/Emh6jDcTafrOn3UVsm+d4LpHWJeTliD8o4PJ9Kn1HStO1e3WDVrC1voVbesdzCsihumcMCM8moLPw3oenQ3EOn6Np9rFcpsnSC1RFlXkYYAfMOTwfWqbvf1v+QJbeSt+f8Amcl4W8SaHP8AEPxQIdZ0+Q3k1oLYJdIfPIhAITn5sHjiovDHiDSfDPiPxPpPiK+t9Nu5dUkvYnu5BEs8MgG0qzYBxjGM9q6y28IeGrK6jubPw9pVvPE26OWKyjVkPqCFyDVvUdF0vVwg1bTbO+EZyn2mBZNv03A4pbfdb8v8g6W/rr/mS2GoWmqWMd5p06XFtLkxyxnKsASMg9xkVYpsUUcMSxQoscaDCogwFHoBTqACuY1/QvFWo6n5+heMf7HtdgX7N/ZcVx83OW3Mc88ce1dPRQBi+ItUm0HwrLcK32i+2LBB8uPOnchE47ZYj8Ks+H9JTQvD9npqNvMEYDyHrI55Zj7liT+NO1DR7fU73T7i5eQ/YJjPHEpGxn2lQWGMnGSRyOas3lv9ssZ7bzZIPOjZPNiIDpkYyuQRkfSi7s31DTRf1/X/AATnfCv/ABN9X1XxI/MdxJ9jsj/07xEjcP8Aefefcba4W5lmk1bX7SxaTzdD1abWnSM/e2rEVU/7waXj/Zr1nTrC30rTLaws02W9tEsUa+iqMCiPTbGG6ubmGyt457sAXEqxKGmwMDecZbA45o2d10X+Tv8Aerhute//AALfdocNol9pF34E1Ge+18aPaarql20N9HeLbvzM2Njt3wv5ZrK0O1NxZ+MdC8Pas3iCzmsC0eoyMskjXDoy+U0y8ScBTnsDivRJPDWhTabFp02i6dJZQsXitmtEMcbHOSq4wDyenqau2lnbWFslvY28VtAnCxQoEVfoBwKTSaa8rfgNSad/O/43OO8I+PPDB8I6XDLq1nZ3MMEdvJZTShJkkUBSnln5jyOwq/4n/wCJxruk+HF5ikf7dej/AKYxEFVP+9Jt+oVq2G0DR31Mak+k2LXwORdG2Qyg/wC/jP60tro9va61faoHkkubxY0YuQRGiA4VcDgZLHnPJNU3eXM/X+vmSlZWX9f0huv6smhaBealIu/7PGSkY6yOeFUe5YgfjXN6hpL6L8HNVtblg922nXE11J/fmdWZz/30T+GK6bVNHt9Y+xi7eTy7W5S5EakBZGXO0NkcgHDYGOQKtzwQ3VvJBcxJNDKpSSORQyup6gg8EVDV4td/6/r0RcXaSfb+v69Ty7xF4j0fV/hdZeG9Iv7XUdW1K2t7WG1tpRKyN8uSwUnaFAJOcdK6jxupS18OITuK61aAn15NbunaBo+juz6TpNjYs4wzWtskRb67QKtz2tvdeX9qgim8qQSR+YgbY46MM9CPWtG7y5vO/wCJmlaPL5NfejjfHN7a6d4s8HXWoXMNrbx3s++aeQIi/uGHLHgcmoIdUs/FXxY0640CdLy00eynF1dwHdGXl2hYww4J+Utxmux1LRtM1mNI9X060v0jO5FuoFlCn1AYHFTWdla6dbLbafbQ2sC/digjCKPoBxUx0d/62sVLX+vO5PXl8PhP/hI/iP4tk/t/XNK8ma2Xbpd55CyZhHLDBya9QqGKztoLieeC3ijmuCDNIiANKQMAsRycDjmjrf8AroBxnwstPsGl69afaJ7nyNcuo/OuX3ySY2jczdye5qvoMvkfAu7l/uWd63Jx/FJXd29nbWfm/ZLeKDzpDLJ5SBd7nqxx1J7nrTF06xTT2sEs7dbNlZWtxEojIbO4FcYwcnPrmlJc0beVvwKi0pX87/iee3fha4g8N3+oLLG9kdAZ0gAO/wC1G2EbP6Y8tABz1Zqfba1p+neNPDl5q1/a2MMvhkgSXEyxoWLxHALHrwePavRGt4WtjbtFGYCmwxFRtK4xtx0xjjFULzw1oWorCuoaLp10tunlwie0RxGv91cjgewqm/f5v62kv1/AhK0VH+un+Ra0/U7DVrX7Tpd7b3sG4r5ttKsi5HUZUkZqzVbT9MsNJtfs2l2VvZQbi3lW0Sxrk9ThQBmrNJ+QzybxXcaP/a8et6B4zbVdUF5E1vohvI7u3dshdqQjJQ4yd3Y5r0fXPEWleGrGO81y8SzgklWJXcE5c9BwD6HmlsPDuiaVcNPpej2FlMww0lvapGx/FQDVq8sLTUYRFqFrBdRq4cJPGHUMOhwe49aFokge7ZT8QeINP8M6HNqurTeXbQgdBkuT0UDuTXNeENS0zWfEE2s3esaXPrN5AIoLC0vY5Ta24O7Z8pO5ieWI47DgZPX3+m2Oq2pttUs7e9tyQxiuIlkQkdDhgRVSw8L6Bpd0LrTND02zuFBAmt7SONwD1GQAaFvdg9rI1K898U6D/wAJD8UtPtP7V1PS9mjzSedplx5MjYmQbS2D8vOceoFehVEbS3N4t2beI3KxmNZig3hCQSu7rjIBx7Ure8n2/wAmh30a/rcxhpmkaF4TNj4i1E3+nIf3txr06S78tkB2cAHnAGfQVz3wx1TQ/J1jTdLvtP3f2vdSW9rbzJnydw2sqKfuY6EDFdvfafZ6naNa6laQXlu5BaG4jEiNg5GVIx1qnYeGdB0q6+06XomnWU4BXzbe0jjbB6jKgGqT1bf9bf5CeyS73/P/ADPJoPC+it8GPEGsy6dBLqTSXci3UiBpIykrBdjHlQMdsd62PHOrwS6xpWmy2Php7tdOFz9t8Tv+4CsQCiDu5K5r0oaVp40+SwFhaizk3b7YQr5b7jlsrjBySSfWm32i6VqaQrqWmWd4sBzELi3WQR/7uRx+FSlay9PyaG3dt+v4tM4T4V6pZ2HgvU7rUbzTLS0j1WYCW3kMdomduBGXxhSTwD61d+HGuaTdPrlra6nZzXE2s3c8cMdwjO8ZYYcAHJX36V1s2iaVcWc1pcaZZy207+ZLC9urJI3HzMpGCeByfQVDYeGNB0q6+06XomnWU4BXzba0jjbB6jKgGqvr8rfl/kTbS3nf8/8AMy4P+J58Qpp/vWmgxeRH6G5lALn/AIDHtH/AzT/G0slzp9toNqxW41qb7MSvVIcbpm/74BH1YVraPo9volk9vbPJJ5k0k8ksxBeR3YsxJAA746dAKG0e3fxCmsSPI9xHbG3jQkbI1LbmIGM5OFBOeiil2T/rr+enoPu1/X9b+pgfEmKOD4Va1DCojjjs9iqvAUAgAVQ8H2WgWmtK+m/EHUNeuGhZRZXOtR3K44JYIOcjHXtzXcXVpb31rJbXsEVxbyjbJFMgdXHoQeDVCx8L6Bpd0LrTND02zuFBAlt7SONwD1GQAaOrbB7JL+tjy6If2P8ADqy8QL8sMlteadff7kkknlOf92TA+khr07wl/wAiXov/AF4Qf+ixVw6Vp501tONhbGyYENbeSvlkE5IK4xyeasQwx28KQwRrFFGoVERQFUDgAAdBQtE1/XX/ADB6tP1/T/IJpY4IXlndY4o1LO7nCqB1JJ6CuI8KQyXHie41HwwjWXhiYMXjmX5LuY/8tYE4Ma+rdG7L/FXcSRpNE0cqLJG4KsjDIYHqCKVVCqFUAADAAHShaO4PVWFooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKo2n/IY1D/tn/wCg1eqjaf8AIY1D/tn/AOg0AXqKKKACiiigCj/zMP8A26/+z1eqj/zMP/br/wCz1eoAKCQASTgDqa5vxP4kuNOvrHRdJijOqaluFvLdfJBEB1Yn+Nh2ReT7Dmm6noetjwitlpviea3voyZJr+e1jnaYEMWXYcBRkjGOgAFS3aLkNK7SOjgniuYEmtpUmicZSSNgysPUEday7vxJZ2fiqw0CWK5a7v4pJYnSLMahOu5ux/zxkZ4/4XaP4ji8O6HfXPin7RpTWaldL/s6NdoK/KPNB3HHr3xWgZPEelfE3TrW98Q/btL1T7U6WX2GOPyAigqu8ZZsbuvHStGrSt6kp3jc7Oa4htwhuJo4g7hELsF3MeijPUn0qHUtRtdI0y41DUZfJtbZDJLJtLbVHU4AJP4VwXxM0rXrnUNHnsPEn2K0k1K2iitfsMcnlTZOJd5OTj+6eK6/w5putaZZyx+INe/tuZpNyTfY0t9i4+7hTg88596hapv+un+Y3o0v66i+HfFOjeLLGS88P3n2uCKTynfynTDYBxhgD0IrXrlPB3/Ie8Xf9hf/ANoRV51qHxbna6vNQt/F9pYtbSSLBoT6VJIJlQkAPPj5WbHY4GR7021p5pP8EFnr62PcKKwL4alreg2GqeHr/wCw3XlrcxxTDdDMGXPlyDrjnqOQeeelZEnxIsx4Jk1loltrkT/YkinkAha4zjib7rRggkuD0B6Hih6XT6AtUmup1sep2MuoyafFe273sKh5LZZVMiKehK5yByOfeo7nWtKs7+KxvNTs4Lub/VW8twqyP9FJyfwrzHwpdaBpfxUXyvEGn3095pAFxeLdRn7TdvPkqMHr0AUcgAViWa23irRtVitfCy6zrt5cXDXuq3qeXDY/OwQLKRuyqhPlSk9En6/g7f0x21a9PxVz3VmVELuwVVGSScACoLHULLVLRbrTLuC8t2JCzW8qyISODyCRXl8Hiu11nwr4d0DWtZtrAXenx3GqXF1crE0kPQRqWIy0hHJHRc+orb+Et/pknhi4sdOu7V2hvrphBBKpKRmZth2g8KRjB6VVvea/rR2/r0Jvon/WqO9qta6lY3yzmyvbe5FvIY5jDKr+U46q2DwR6GrNeTeEidE1C6vBxaa1f39pP6LcJNI0Tf8AAl3r+C1Ddr+hVj1S2uYLy1jubOaOeCVQ0csThlcHuCOCKlry3QNR1u58K+EvDfhq8h064uNJ+1z38sImMUabVARDwWLMOvYVq2Mvi2e61Xwpd+IYY9Tt4Ybq11mKwQl4mYhg0JO3OVI47HNW1rZf1YlPS7/q53MFxDdRebbTRzR5K742DDIOCMj0IIqSvL/hjonicaRZ3jeLc6al1ceZp39mxfvMTOG/eZ3DLZb2zivUKXQfVopalrOmaNGkmr6jaWCSHajXU6xBj6AsRml03WNM1mN5NI1G0v0jO12tZ1lCn0JUnFcT8Tkkk1jwssGhw6/IbufGnTuiJN+5bqXBUY+9yO1TW+qXHhbwHqmqP4Ls/DlzG4EVlbzROs7MVVGZowB95seuBSXUbWqO8orz6Wfxn4UvNNvte1611ixvbyK1ubVLFYfsxkO0NG4OWAYj73atbQtav7xvFguZ9/8AZ9/JDa/Io8tBErAcDnknrmhuyb7X/C3+aBK7S7/8H/I6uivLx4l8V3+m+BotKv7dL3W7SVrua4gUrlUVt+0AcjJIAwCcZ4q9Y+KdY8O2viu28SXkesz6DBHcxXKQLAZhIjEKyrwMFcZHY03pe/T9BLVK3U7e/wBUs9Ma1W+m8o3dwttB8pO+RgSF4HHQ8nirdeV6rp3iuPU/Ct/4j8RQXkM+sW5/s6CxWNIHKuflkzuYAZHPXNdNq2t32seJJvC2gzf2fNDEst7fSjDpG3aBD99j0342r7ninZ287/ohXV/Kyf4s66qsGpWlzqN1YwS77i0CGdApwm8EqM4xnAzjOenqKS5uYNH0eW5vJmMFnAXklkOWKquSSe54rnNE0fVpvBc80F9/ZOt6xJ9tluTAsxgZyCE2NwdsYVPwzS7/ANf11H2OqhuIblWa3ljlVWKMUYMAwOCOO4PaszWvElnoN7pdreRXLvqlyLaEwxbgrEZy3oPz/IGuE+HeheKfIa5HjHFjFqtyJ7L+y4v35WZg535yu4gnjpnitvxNJ4j0nxdpF5b+If8AiU3+pQ2jaX9hj+UFDuPmnLHJUnt168U1ry+dvxsLpLyv+B2c9xDawNNcyxwxIMtJIwVV+pNOllSGF5ZDhEUsxxnAFcF8XNP1e58I3Fxp+t/YrOFALi0+yJJ9oJkXB3k5XHt1rf8ADWkeIdMknbxD4n/txJFURJ/Z8dt5RGcnKHnPHX0qd0PYd4b8beH/ABe1wvh3UPthtgpl/cyR7d2cffUZ6HpW9XKaX/yVbX/+wdZ/+hS1x/i74jNB4uv9LTxdb+GY9OZUVW0t7t7pioYkkDCKMgcc8E+lNtaBZ6/10PW6K5LQdTvPHXw7tL+1v2029myRcWyZXzI3IztbqjFc7Tzg4zVvwt4lm1ia+03UoEi1PTHEV01ud8Dk9Cj9j6o3zD9adrNoV9LnRUUUUhhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABVG0/5DGof9s//AEGr1UbT/kMah/2z/wDQaAL1FFFABRRRQBR/5mH/ALdf/Z6vVR/5mH/t1/8AZ6vUAUtX0ex13TZLHU4FmgfnGcFWHRlI5Vh2I5FJpdhNY6Slle30uoMgZfPmADuuTgNjqQMDPfGavUUeQHH+GfB2s+Gb2CGHxXLc6Fbhli0yWxj3KpzgecDu4J9O2Koan4E8Wah4gj1WPx75L2rymzT+x4m8hJOq53fNwAMkdq7+igDD8ReG28ReH4rGXUJba7gkjnhvYkG5JkOQ+3p17e9V7LRPE8Hh68s7zxd9q1GZs2+of2bEn2ccceWDhuh6+tdJRR38w7eRxHhnwX4k0LXpb688Zf2hb3Uxnu7X+y44vPfZsB3BiVxhTgcce9JL4H8QWU8qeFPGk2kWEkjSizk0+K5EbMSzBWYghcknFdxRR2Ax9a0E67ZW9leX86WgP+lxQ4T7WMfdZhyqk9QMZHHSrNzoek3mnRafeaXZ3FlDjy7ea3V40wMDCkYGAcVfooA5OD4daDa+MU1y203ToY47VYo7SOxjUJKH3CYEdG7dM8dao3nw7vmu72HSfFV5pmjahK0t3p0cCOSX+/5ch5jDegB6mu6ooAxX8G+GpYoI7jQNNuBbwrBE1xaJIyoowq5YE4FV/CHg2w8I2c8dpFbNPNNJI1xFbLExRnLLGcZJCg4HPboK6KijrcLaWCuVPghG8IX+iPfNvubua7iuliwYJHlMqEDPO047jOO2a6qik0mO9jin+HssOiaJDpWuzafq2jW32aHUYoFYSIQNyvExIIOAcZ4Navhnwu+hzXd7qOpzavqt7tFxeTIseVXO1VReFUZPHqa6CiquTbSxx2k+DNY0LWt+meKpU0Q3LztpUljG/wB8lmUS53AZOeldjRRS2Vh9bmTqmh/2lrujaj9o8v8AsuWWTy9mfN3xlMZzxjOehqxrej2uv6JdaXqAY291GUfacMPQg+oOCPpV6ila6sO7vc4uw8C6mdSs5vEviq61u10+UTWlq9tHCFcDCtIy8yEdRnHPNN1L4fXl3rGoy2Hia807TNVbzL6xghQmR9oUlZTygIAyAOeea7aim9RLQ5TTvBH9nv4WI1DzP+Eft5YP9Tj7RvQLn73y4xnvU83g23u9T8RXF7cGW3122it5IFTaYgisuQ2TkndnoMY710lFD13BabHCWvw81I3mmXGteLLvVDpdzHLaxvbrGiovZgp+ZyON5z345rpNf8OWuvQxM7yWt9bNvtL6A4lt29Qe4PdTwR1rXooBaO5z3iPS77V7TTdKx51rLcI2pTkquY4/m27c/wAbBRgdia6GiigDjrLwXrGk+IJLjRvFUttpM9413NpkllHKGLNudRITuUE56dKg8TeCfEuv6wlzb+M/sNpb3KXNpa/2VHJ5EirgHeWBbqx5459q7iija3kHfzMS88PSav4Mk0LXdQe8lng8qa8jiWJnbrvCjIBzjj2qroWheJdNt7yLVfFraoZItlqzadHEbZsH5jg/P24Pp710tFHcDgdM8DeK7HxL/bFx47+0vL5SXSf2PEnnxIxITIb5fvMMgZ5rQ1fwdqsmsXOpeFfFE2hSXpVruI2kdzHIyqFDBX+6cAA464FddRQBivo2p3PhePTLzXpzeEBbjULeBIZJFzyFUZCEjjI5HWr+l6VZaLp0VjplulvbRD5UX9ST1JPUk8mrdFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAVRtP+QxqH/bP/0Gr1UbT/kMah/2z/8AQaAL1FFFABRRRQBR/wCZh/7df/Z6vVR/5mH/ALdf/Z6vUAUtX1ix0LTZL7U51hgTjOMlmPRVA5Zj2A5Ncp411y+Hwwm1Ux3WiTmaE7Wl2yRoZ1GWKnjK9R2yQa1PE/hu41G+sda0mVBqum7jbxXPzQSg9VI/gY9nXke44rL8afbvEPwxlxpF3FdyTQiSxaPzHUrOu7hc7l4JyOo5oW69V+YOxf0P4gaVr2tLpsFrqVq80bS2s15aGKO7QdWiJ5IwQeQKzTq/iyD4i6NaatLZ22nag10qWVsm9isaAqzyNzk5zhcAd81oa9ZXMvxF8J3EFtK9vbreCWVIyUi3RqF3EcDPbPWuX8Q+K7mTx/o17D4Q8USwaO93HM8emFhLvUIrRnOGGVzk44xTVrr5hbQ73X9dHh+3iu7iznmst+LmeEbvsy4++y9SvqRnHWsrx1rN7b+CBfeGdQjhnuJ7aO3ukVZVxJKq5AIIIw1X9U1bUzpNo2h6TLLeX6jYt2PLS1yuS03ORj+6Mknj3rmtV8IPongOPT9P+0X88mqWtzN5cZ27vtCM5SNeI0HJwBgDk+tK2tn3X5oL6XXZlseK728t/CUsL/Z5L7UGtNRh2g4dIpN6cjjDp1GOnvTr74o6LY308YstWurO1kMdzqVtZNJawMDhgzj074BrM1rR9QtPido/2Gynm0u7v/t8sscZZLaUQvG+4jhQ2YyM9w1U7DUNb8PeFZvBp8I6nfXwWaCC7hiU2cyuzEO8hPy8NyCP50rtpvr2+S/X/Mdknbpp+v8AwDV8bfEGbQ7nTYdL0rVrqOe4gdru1sxLDPExOY0YnlyBwP1rpvDniH/hIrOWf+yNV0ry5Nnl6nbeS78ZyoycjnrXOa7omo6V8P8AQLextpNSuNDntJZYYeXlWLhtgPU+gro/DniH/hIrOW4/sjVdK8uTZ5ep23ku/GcqMnI561Wi5ku/4aE66Py/zNivKLnXNXvfEuuQv8TNP8Nx2d+1vBZXNpbMxQKpDAuVJGWI79Oter1w3h/wjpl9q/iW51/w/aXEsmru0Et7ZK7PH5ceCpZeVzu6cZzUr4/k/wA0V9n5/wCZsa54ts/DFvZw3i3mqX9wn7q20+382afaBucIOAPxxzVeD4haRP4Y1HWhDexjS+Lyymg8u4hPoUYgZ59cVR8RtfeHfG1v4jt9GvNWsW082MsWnxiSaAiTerBMjIPQ46YFZFzomseJ9E8Y6oNKm06XWLSKCysrnCzOIgSGcZwrMTgAnjFDfut+oJK6Xp/wf6/zO6v9ftdOu9Kt545mfVZvJgKKCFbYX+bJ4GFPTNc3efFfRLS5vYEsNXun0+eSG8NrZ+YtuEODI7A4CHBx346VknVtZ8TeJPCkieFdW06x0+8JuJr6HYwfyXHCjJ2f7ZwMkCtHRNMu4PDPjZJLKaOa71G/eFWiIaZWX5SoxlgexHWh6KT7X/T/ADYR1sn5fr/kjf1rxlpei6bZ3bfaL1r8Zs7ayhMs1wNu75VHsc5OKx/AviC48Q+I/E08sOpWkKS2whs9RQxvB+65+QkhckZ465zWNFHqfhu28Ha42iajqEVroosbq1tId1xA7LGQfLOD1Ug+lavhWz1HVtW8Vz67plzpceqeR5cYkZXCeUV++uPmwBnaeCcVbVnK3n+f+WpKe1/60OgtfEsGo+IZdM0uCS7itsi7vUI8mB+0ef4m9QPu96h8ZX9xbaKllpshj1DVJlsrV1OGQv8Aecf7qBm/Cqvhez1LwzNF4cntRc6ZGhNlqECKm1RzsmUYw/P3gMN3wadaf8Tv4gXV4fmtNDi+yQ+huJAGlb/gK7F/4E1TZOy/r+ug7tXf9f11Mrxbr6+FfF3hj7Rd3hsvs9yjwRs8j3ThUCDaPvvk8Z7kmtjS/F//AAkei6hNoNhcR6nZnY2n6mht5EkIyocc4BHOah1uxnn+Jfhe6S1kkt7eG88yYRkpEWRQuW6AnnFV9P8AtOkeMPG2qTadezQFbWSFYICzXGyHkR9AxzxgHrRvHXz/ADC2unkL4M1PxBceJPEOneJby3uZLE2xRbWHZHH5kZYqufmI6cse3ati78Swab4hi0zVIJLSK5AFpeuR5M0nePP8LegPXtXE+F/E9yfiDrNzN4T8TW8GtS2yQyz6aUWHZHsJkOcKM85GeK6bxRZ6l4mlk8OwWgt9MkQG91CdFfKn+CFTnL8feIwvbJxTfT+ugaao6qioLK0jsLGC0haRo4ECKZZC7EAY5Y8k1PSYBRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAVRtP8AkMah/wBs/wD0Gr1UbT/kMah/2z/9BoAvUUUUAFFFFAFH/mYf+3X/ANnq9VH/AJmH/t1/9nq9QAUUUyKaKdC8EiSKGKlkYEZBwRx3BBFAD6KKZHNHKziKRHMbbXCsDtOM4PocEfnQA+iuV8U+PYPCdyyXmg67eQJCJpLuysxJAgyeGcsACMc/UVTl+JAHhnUdXXw3rNoLEw4j1SD7N53mOF+RvmzjOTx6etC12A7aigHIBooAKKKKACiiigAooooAKKKKACiiigAqK3tbe0V1tYI4Vd2kYRoFDMxyWOOpJ5JqrousW2vaWt/YiQQtJJGPMXByjlDx9VNX6ACiisnTdc/tDxDrOl/Z/L/st4V83fnzfMj39McY6dTQBrUUVm6LrttrsN3JaJKi2l3LaSeaAMvGcEjBPHp/KgDSorj7r4k6fb6LpOo2+k6xfDVvM+z29nbLJN8n3sqG/kTWn4e8Xaf4ksbqezjureWzbZc2l3CYpoWxnDKfUe9G1/IO3mbtFUdE1aDXtDs9Vs0kSC8iWWNZQAwBHcAkZ/Gr1D00BO+oUUUUAFFFFABRRRQAUUUUAFFUdb1e20DRLrVL4SG3tY/MkEa5Yj2FXQdygjuM0ALRRWH4o8Rt4etbUWunzanf3s/kWtpE4QyPtLHLHhQApJNAG5RWX4fv9W1HTTNr2i/2NciQqLb7UlxlcDDbl45549q1KACiiigAoorJXXM+Mn0H7P8AdsFvPP39cyFNu3HtnOfwo62Dpc1qKKKACiiigAooqhfaxbafqmnWE4kM2pSPHDtXIBVC5ye3AoAv0Vj+JNe/4R6ztJ/s32j7Tew2m3zNm3zG27uhzjrjv61sUbq/9f1qAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFUdZ1P+x9Jnv/ALFeX/kgH7PYxebM+SB8q5GeufoDXPeGviHb+J9UNla+H9ftArOklxeWQSGN06ozBjhu2PWhauyB6K7OvormPEfiy+0vVodI0DQZdc1KSA3LwrcJAkUW7buLtxkngD2Nb2mz3VzplvPqFn9hupIw0tt5ok8pu67hwceoo3Vw2dizRRRQAUUUUAFFFFABRRRQAUUVR0XV7bXdJi1GyEgglLBfMGD8rFTx9QaAL1FFFABRRRQAUVFczfZrSafbu8tGfbnGcDOKp+H9V/t3w5p+q+T5H2y3Sfyt+7ZuGcZwM/XFAGjRRVDRdYtte0tb+xEghaSSMeYuDlHKHj6qaAL9FY+h69/bV5rEH2byf7MvTabvM3eZhVbd0GPvYxz061sUdLgFFFFABRWbo2u22uC+NokqfYbySzk80AZdMZIwTxzx0PtWJe/EXT7TQdO1SLTNVvV1Kd4ILa0t1kmLJuz8u7p8hPBNAHW0Vg+G/GGn+Jorv7LDeWlzZEC5s72AxTQ5GRlfcA96v6Jq8Gv6Ha6pZpIkF1H5iLKAGA9wCR+tAF+iiigAooooAKKKKACiiigAorlPEnizV/D+tWkS+G/tWlXE0MDaj9uRPLeR9uPKwWOMitnXr7VNP0tp9D0j+17sOALX7SsGQep3txx6UdLh1saVFYvhLX5PE3hq31Sey+wySvIj2/m+ZsKSMhG4AZ+76VtUbAFFFFABRRXJ+HfFmr6n4muNF17w3/Y00VqLpD9uS48xC+wfdGByD37ULV2DZXOsooooAKKKKACiiigAooooAKKx01/f41l8P/ZseXYLefaPM65cpt249s5z+FbFHS4dbBRRRQAUVlHW8eMF0L7P1sTeefv9HCbduPfOc/hWrR0uHWwUUUUAFFFFABRRRQAUUUUAFFFFABRRVXUp7q10y4n06z+3XUaForbzRH5rdl3HgfU0AWqK53wh4kvfEUOoDVNI/si7sLr7NLb/AGlZ+ditncoA6N2zVWTxZq9r45tNEvvDfkWF9LJHbal9uRvM2Rl8+UBkdMckUdbB0udZRVDXZtTg0K7l0C2iutSSMm3hmbajv6E5H8x9RU9g91Jp1s+oxJFdtEpnjjbcqPj5gD3AOaALFFFFABRRRQAUUUUAFFFZOm65/aHiHWdL+z+X/Zbwr5u/Pm+ZHv6Y4x06mgDWooqgdYth4hXRsSfamtTdZx8uwMF6+uTR5AX6KKKACiiigAooooAKKKKACiob1rhLCd7GNJblY2MMbthWfHygnsM4qroM2q3Gg2kviG2htdSaPNxDA25Eb0Byf5n6mgDQooooAKKKYs0TyvGkiNJHjegYErnkZHagB9FZesa1/Zl1ptpFB9pudQuRCke/btUAs7k4PCqM+5IHGa1KACiiigAqjaf8hjUP+2f/AKDV6qNp/wAhjUP+2f8A6DQBeooooAKKKKAKP/Mw/wDbr/7PV6qP/Mw/9uv/ALPV6gDjvHl5qFuLSKSSay8PykjUr+0+aaIdh/sIe8gyR7dapfECysbD4SyW2hiO2tFktvIa3xgAzIQwPc989+td6yh1KsAykYII61x/jPwkt38O7nQPD2noEkmjZbaNwi485XfBJAAxuOM/Sku3mvzH1uY6eHNM8H/EHw8ug3Fz9s1Jpl1BZrp5WuoxEW81wT1DAcgAc1e8UhdK8UW9x4TY/wDCSXZUzWEQzFdRA4LzjOEA7Sde2G6VueHfA/hvwnJJJoGlR2kso2vJvaRyPTc5JA9q1bXS7Kyurq5tLaOKe8cPcSqPmkIGBk+wHSq7f18vQnv/AF8/UwviIWPwy10yAK/2F9wU5AOOx4zWf8Tgx+Et8EbYxW3wwHQ+bHzXXalp1rq+m3Gn6hF51rcIY5Y9xXcp6jIII/Co9T0ex1jSX03UYPOtH27o97LnaQw5BB6gd6X/AACk7NeX/AOCTwzZ+D/iH4Zk0mW7afVDcRahNPcvI13ti3hmBOM7hngCuMTT/EHicXur2/hG6v8AWPtEyQaxH4hWFrVlchVWHIChcAbT159a9xutJsr3ULG+uYd9zYM7Wz72Hlll2twDg5HHOawNZ+GHg7X9Skv9U0SOW6kOXkjlki3n1IRgCfelrdB0/rzOi05rptLtTqCBLswoZ1BB2vtG4ccdc1hfEf8A5Jrr+P8Anyk/lXSRxrDEkcYwiKFUZ6AVBqWnWur6bcafqEXnWtwhjlj3FdynqMggj8Kctbih7trnJab8OrOz1XTNes9QvBqsbB726mmeRr1CpBRlLBVGSCMDjA4rz6aw1vxVqWr6gvhG51bUIb2eC21KPxAts1nsYqipFkbduAeevXvXuyKERUUYVRgD2rl9c+GvhHxHqLX+r6LHNdP9+VJZIi/udjDJ9zQ99AjpGzOfvLGbxP4g0Lw740aVIv7F+13VolwY1ubkMqsGKH5gvJwDjnNYH2XTLP4efEWz8PsH063uAkASUyqoEUe4BiSSAd3evStZ8E+HfEGnWdjrGmR3MFkAtuGdg0YAAwGBDYwBxnnHNUvDfhdNNufElpcadDFpV7coLeABSjwiBEI2joMhhg4oevMl1v8An/SBaOL7W/IzvE17av4o8CWyXEbTteGURqwJKeQ43Y9Mkc1w13Y6z4q1vWb0+ELnWby2vp7e2v4/EC2rWQRiqBIsjbgAHnqTnvXp+k/Drwnoc8M+laNFbzQzefHKHdnV9pX7xYnGGPy9Pam678N/CXiTUDfazo0c90ww0qSyRF/rsYZPuaT3v6/p/kC0VvT9f8zI1/Qta1/wboNpqYhmvY0V9R0uW9MAviI8MvmR55DEHuM9aPDOheG9Z8M6n4Wn0e8tLe2uV+1aXdXbSeSxCsuyRXJ2HAPB654ro9W8F+H9c0e10vVdNS5s7NQtujOwMYAwMMCG6Ad+ataH4e0nw1p/2LQrGKzt924qmSWPqSckn3JqtG5eYtbLyPP/AIYeAvC39l22tppw/tS1vLhRMLiTKFZXVQV3Y4XHUVzl3Y6z4q1vWb0+ELnWby2vp7e2v4/EC2rWQRiqBIsjbgAHnqTnvXqK/D3wsniZfEEekRx6mshlE8crqN56tsDbSTk9qj134b+EvEmoG+1nRo57phhpUlkiL/XYwyfc1Oul/wCttSurt/W+hz19aXmv6j4W8N+Mnlijn0ySe+t459n2q4QINjMh5AyzYB/lU/w2sNH0vxN4tsvDewafBcW6IElMgVvK+YbiSThs966bVvBnh/XNGtdK1XTY7mzswq26M7AxgDAwwO7oB3571b0nw/pWheb/AGRZR2glVFdYydpCDC8ZwOD2696u+r+f53/4BFtv66GjXE+AbmC2sPEwuJo4zb63ePNuYDy1LZBPoMc121c1rHw78Ka9qw1PVtFguLzjMm5l346bgpAb8Qajv5q35f5FaW+d/wA/8zz7TRrI8O/Dw+HBZDUCt20X9oB/KKlSSTs5+70/Cuo8B+bcQeJb7V5c69LcGLUYFj2JAUTCKgycqV5DE85rsX0fT3urC4NsqyacGFrsJURBl2kBRxjHHI4pE0Wwj1W61JLfbd3cSwzyB2AkVc4yucZGTzjPbNOWvNbrccXazfQx/hx/yTTw/wD9eMf8q6auMsfhH4I03ULe9stE8u4tpVlif7XOdrKcg4L4PI712dVJ3dyIqyscP4vvH0TxjYarD/rJtLu7aMf35QY3jX8Tmsm01lpNYS/8Qzs0+gaLdpfyQqFbzPNCF1A4BYRFh2+YV32qaDputTWUup2q3D2E4uLYlmHlyDo3BGfocioo/DOjxajqV8thGbjVUWO9ZiWEygYAKk46HsOe9RZ2t6/jf/N/gX/wP0/y/M8f022fSvFvhvUNP8K3WhLqN9Gpv5tb+0SXsTqch4ck89c9j+FdR4y8L/2h4mu9W1PTG8R6dCibIbbUmgn04quWKpuCtnhuSD+ldHpnwz8H6PdpdadokMM8cyzJL5jsyOOmCWOB7dPapdZ+HfhTxBq39p6vo0NxecZk3uu/HA3BSA3A7g03srf1t/XQS3bfb+v61NbQby21Dw9p93YSyy201ujRPMfnZdowW9/X3qp4y/5EXXf+wdcf+i2rXggitreOC3jSKGNQiRooVVUcAADoKZeWcGoWM9neJ5lvcRtFKmSNysMEZHI4PalU95O3UdN8rTfQ8kj8MWnh/RvBviO1nu5NZuryyhnu5bl28yKUYaPbnaFAOAAOwrXTw5o/jnxX4jbxZJLcyaXdiC1tftLxLaxeWrCQBSOWJY7jnpXcTeH9MuNPsbGa23W+nyRS2yeYw8to/uHOcnHvnPes/XvAXhjxPfR3muaRDdXMYAEu5kJA6A7SNw9jmqk7t+r+W3+T+8mKtFLyX6/18jzjVtFsfEHwWutT1YSalcaObqLTb6SZ9zRLNtVzggNwo5IPSvRfCvgnw14X33fhqxFs13EoeRZ5JA69R95iO/atr+zLH+yzpotIRY+V5P2YIBHsxjbt6YxWV4d8DeHfCd1cXHh/ThZy3KhZSJpHDAHIGGYgfhR1/r+tQeq/r+tDfry/xr4N+0+NdCm/4SPxBD/aN/INkV9tW1xC5zCNvyHjHfgmvUKqXemWd9d2dzdQ75rGQy27biNjFSpOAcHhiOc0utx9GjhvEmlDTLLw54Zu9b1ObTdQv3jvLu7uiZpRsZ1iMgAwGYBeMccVTOiWHhHxZcaL4WaWOyvNFupruw895ViZcBJAGJILbiPevQ9X0fT9e02Sw1i0ju7WT70cg4z2I7g+45ql4e8H6B4Vgli0DTIrRZv9YwLOz+xZiSR7ZqWrprvf8rDvZp/1vc4G/vrVPg34Oga4jEs8+nLEm4Zcq6FsD2wc1Z/4RDTfFvxM8Wx661xPZwfZCLRJ3jjZzCPnbaQSRjj6mult/hl4OtLiWe20K3jlklWUuGfKsrBht5+UZA4XAPTpW9baTZWep3uoW8Oy6v8AZ9pk3sd+xdq8E4GB6Yq27tt9b/jb/IlaaLsl+J5dp93c6l4B8IaRf39xHaahqM1ldTrKVkkjjaXZGX6jdsUccnpWp4T0Pw/4d+Leo6f4YjSKJNIQ3EaztLslMx4JYkg428V1svg3QJ/Df9gT6akmmb2cQO7HDFixIbO4HLHkHvT9F8JaF4edH0XTo7Rkh8gFGblN27nJ5Oe5596E/ev6/lYJaqy/rW/5aGzXnV1oOl+N/H+u2Xip5bmLS1gFnY/aHiRVZNzS4UgsSxIz2xivRawPEPgfw34rmim1/SoruWEYSTcyMB6EqQSPY8VPUroea3Mc1/4V07SotTumtIPFwsrK/WXMvkAMAVfuRllB9q6fw/oVl4R+KjaVoQmgsrzSGupoXneQNKswXf8AMTyQxzXXN4a0drGwsxYRx22nTrcWsURKLFIucHCkZ6nrkHPNWDpNk2trq5h/05Lc2yy724jLBiuM46gHOM1Sdn/Wvu2/PUT1/r+83+Whcry/xz4F8MXvj/QLnUdPDNq13LHeObiRRLtgOwcMNvKr0xmvUKzde8O6T4m077DrtlHeW+4MEckFW9QQQQeexqX3GcT428MadoXgTTtG8PpJptu2s2uxo5Gdo2aQZYFiTnvRZaFaeC/iRBb+HxcLHf6VcTXMctw8vnyxsm1zuJ+b5jyPWuqs/BXh+w0SDSLTT/Lsbe5W6ii86Q7ZVbcGyWyeexOK0pNKsptYg1WSHN7bxPDFLvb5UYgsMZwclR2os9de/wD6Tb8xf1+N/wAjwvStN8Ta1plv4g0nwjcz65MRMuvDxCmWbdkgwkgBf4dhxgcV7+pJQFhhscj0NclefCzwZf6q2pXGhx/amfzC8U0kYLZznarAZz7V11VfSwutzE8YWN1qfhW7srC+SxuZwqRyySFFJ3D5Cw5G4ZXI55rlvBNpp3hvXLvSYNAutD1KW1NwbcXzXVvcqrY3qxYkNkgchTg967jVdJsNc0yXT9WtUurSYAPFJ0ODkfQ57is7w74K8O+EzIfD+lxWjyjDybmdyPTcxJx7ZxUrqN7I8b03TvEuvaaniDTvCN1c67MTImur4hQFW3Z2+SSAFH3dh7cV6B4g0ZPEXxK06w1Ka4htn0WV7mC3lMfnASoPLZl525OTgjOK1NQ+FvgzVNUfUbzQ4zdO+9njmkjDNnOSqsBnPtXRHS7NtYj1Uw/6bHA1usu48RlgxXGcdVHOM09NL9L/AJNA+v8AXVHEal4D/sLwZfw6HPJKLG8XVNKtnLH7M0YBMQYkkhsN/wB9/jV6yuYfFvjmz1G3PmWGk2CzRHPBnuFyPxWMf+P12nWs7RdB03w9aSW2j2otoZJDK6h2bLEAdWJPQAAdABgUa/16W/L8ge39ev8AXqeI22n+I/E1rPrdr4QurzW3ll8nWU8QpG1u4cgKIcgKq4xtPX8a7zXdHbxD480Gy1aa4t1k0edryG2l2eb88W6MsvO3d1wecdcVr6t8L/BuualJf6locclzKd0kkc0kW8+pCMAT710B0myOqQaiYf8ASreBreKTe3yxsQSMZweVHJ54ojZJX/rRoJattf1qmZnhXwpB4RhvbTTriQ6dNMJba1cswtRtAZQzEkgkE/jWxZ39pqMJl0+6guo1coXgkDqGHUZHcelTkAgg8g1m6H4e0rw1ZSWmh2aWkEkrTOisTlz1PJPoPyp77h6GlRRRSAK5LwCN1r4hGSM69ecj/fFb+s6NYeINJn0zV4PtFnOAJI97LuwQRypBHIHesTQvhr4T8NaqmpaJpP2a7RWVZPtMr4BGDwzEfpQt3ftb8v8AIHsrd7/mv1ONHw/3fE2Ww/4S3xSMaSs/2kal++5mYbN237nGceteq2lv9ksobfzpZ/JjVPNmbc74GMse5Pc1ENLsxrLaqIf9Na3FsZdx/wBWGLBcZx1JOcZq3T+yl/W7B6yb/rZGH4y0V9e8J3lpbnbdqontXHVZkO5D+YA/GsHTtQj8ceINCukX/RdNtBfzJ/duZAURD7qBIfriun1+91Ww03zdB0katdFwvkNcrAAp6sWYdvTrVDwV4bfw5o8wuxD9vv7mS8vDACIxI5ztXPO0DAH596Ud3/Wv9fkge39bf1+bOIsPDWh+LND1XxL4mvbj+1oLm5U3IvHjOneW7BFVQQFwoU8jnNXPDt/dX3ijwTeaqx+1XOgTl2fgyNmI5+pHNdPqPw68JavrX9rajodvPe5DNISwDn1ZQdrfiDV3xB4R0HxTawW2u6bHdRW5zENzIU9gVIIHA46cUo6Jf10a/UJat/11T/Qw/A91Be+LPGc9pMk0R1GJQ8bZBIhUHn2IIrtazdH8PaT4fE40axjs1nKmRYshSVUKOOg4Hbr1PNaVPol5L8hHhE1hrfirUtX1BfCNzq2oQ3s8FtqUfiBbZrPYxVFSLI27cA89eveum1PRLjxF4v8ACmn+JnnhlfRZW1CGCbZ5zAxbo2ZD90tycHnFdRrnw18I+I9Ra/1fRY5rp/vypLJEX9zsYZPua2YtB02G+s7yO22z2NsbW3fzG+SI4yuM4P3RycniiOiSf9aNDlq21/WqZw/hrwrpF6nirwjeW8k+iWeoRG3tXuJP3YMSPgNu3Y3c4zVf4XeBPCw0bT9fg08f2rBNMPPFxIdjLI6YK7tv3eOleiWelWVhe3t3aQ+XPfyLJcPvY72ChQcE4HAA4xWPF8PfC1v4mXxBb6RHFqayGQTRyuo3EEE7A23Jye1C3XyFbR/13PLrux1nxVres3p8IXOs3ltfT29tfx+IFtWsgjFUCRZG3AAPPUnPeus1ux1LUz4DsNcuLiyv5zIl69tKBJuFuS4DLnGcEEj1ODXQ678N/CXiTUDfazo0c90ww0qSyRF/rsYZPua1xoOmq2mEW3OlAiz/AHjfugU2evPynHOaSXu8r8vw/r59SnrJv1/E4rVvDf8Awrvwn4l1DwncTQW8topisy7OIJQSGlDux5IYH225+mB4X0DXrHxFpOoaR4NuNIjkmU398fEKXa3cLAhi6Z5OSGBHcdK9jlijnheKZFkjdSro4yGB6gjuK5bTvhj4P0jW4tX03Rlt72Fy8ciTy4UkEcLu29CeMU43UrsUtY2OSudF0DxTF4p1rxrK0smm309tAkt28UdoiABMKrAZbrznJNdv4A/5J14f/wCwfD/6AKW98CeGdR8QDW73R4JtRAH75t3JHAJXO0kepGeK2NPsLbS9Ot7Cwj8q2to1iiTcW2qBgDJyT+NEdI29Pwv+YS1lf1/H/Ir65oWneJNJl0zWrf7TZylS8e9kyQQRypB6gd689+GHgLwt/ZdtraacP7Utby4UTC4kyhWV1UFd2OFx1FepVza/D3wsniZfEEekRx6mshlE8crqN56tsDbSTk9qFpK4PWNjibfwZpnibVPGlzrL3UyW2oyfZ4EnaNIpBEh8wBSMt0HORx0qjq+o6trPhXwPp8lhNrcWo2LS3VqNRFmbt0RAA0h6/eLbQck89q9atdFsLM35trfZ/aEpmuvnY+Y5UKTyeOAOmKpXfg3w/feHLfQbzTI5tNtlCwwuzExgDAw2dwOO+c1KVopeS/Bajb96/r+Jznw10vW9IuNSt77QpdD0lhG1nZyakt4I25D7WByAflOD3zXfVieG/Bug+EY7hPD1j9jW5KmUedJJuIzj77HHU9K26tu5KOK8BTw2/wDwlaTypG0OuXUkgZgNinBDH0BHOa5C2bVH8I+BH8PfZPtz6jcvbm+DiEgrMctt+bG08Y9q9A1r4eeFfEOqLqOsaNDcXYxmXcyb8dNwUgN+Oa1pNF06WTT2a1Rf7NbdaKhKLCdpTgDAxtJGDxSWyv0t+A3u/O/4nH+A/tNzqXiS91+VP+Eh8xLe8t4o9kUKIpMfl8ksrBidx5PTHFa/w2/5Jtof/XqP5mtkaNYDWZNVWDbeywC3klDsN8YOQCucHBJ5xn3rmrT4R+CLG/hvbXRNlxBKssb/AGuc7WByDgvjrQvPy/C4HZ15z8QNHh13xppNleSSi1/su9kmjjcp5wUxEKSMHG7B98V6NVK50exvNQivrmDfcxQyQI+9hhHxvGAcc7Rz14qZJvbz/Joadvw/M8m8FiDQJ9J1q7u7uRr3wzNdX8rys7OI2j2YBOBtUkDH9TWdYW507xJ4d1XTfC13oqahfwqNTuNcE8t5E/UPDknkHJ9K9gtvCui2qWqQ2K7LS0ayhV3ZwIGxuQgk7gdo65NZmnfDLwdpV2t1YaHDFOkyzpJ5jsyOpyMEscDPYcH0rS/vJ/1u3+RFvda/rZL8zmY/B2m+LfiF4vXXWuZ7SCW32WiTvHHvMK/vCFIywwAM8daqaPezXXh74bXF9O0jjUZIjLI2ScRyqoJPU4AFen2uk2VlqF7e20Oy4v2Rrl97HzCq7V4JwMD0xWdP4K8PXPhmPw/caYkulxHdHAzudhyTkNncDknnPepWiSXl+BT1vfz/ABMG21OzT4t+IbgXCPHZaNCLgxnd5ZV5GIOO4BHFefLH9l1LRNf0nwte6Yt7qFv5etXWuCSa6jdwCHg3HO4HkDpXsOj+DvD+gFjo+lw2u+AW7hckOgJOGBPJyTyeT61nWnwu8GWN0bm00GCObzVmVxI5KMrBgVy3y8gcDAPTpTjpJPt/m3/X6g9U13/ysL8Q/wDkA2H/AGF7L/0etdXXLa78NfCfiXVX1LW9J+03cihWk+0ypkAYHCsB+lSz/D/wzc+F7fw7Npm7SraQyxW/2iUbWyxzu3bj95up70l8NvP/AC/yG7X/AK8yh4As4dQ+Gxs7pA8FxNexSKe6tcSgj9aw7R5tV8N6d4GunL3UF8bK/wAnk2tuQ+4+zqYl/wCB10em+B9D8FRXuo+ENC3agbdlWH7Y487uE3SMQuSBzik8KaFfjXNS8T+ILK3stT1FUiW1gk8zyIkHAZ+jMT1I4wFoW/8AXTb+vMTb/F/jv/XkdaAFAAGAOABXDfE61N8nhu0FzNa+frUUZmt32yIDG4O09jjvXc1yPxA8MN4rt9FsntPtdnHqcct4nm7MQhWDHOQe46c0dV6r8x7J+j/IzPD+i6b4U+J50jw28kdpcaY1xe2pneUJKJFCOdxJDMC31xWqn/JZZv8AsAp/6UNWnoPhHQvDFnLa6Fp0dpFN/rdpZmf6sxLHqe/esK3+D3gW1uYriDQ9ksTh0b7XOcMDkHl6admvK/43/K5L2fnb8LfnY5XxjDqHiL4iajps3haTxJa2EMJt7YayLJYty5Mm3ILEnIz0G3FaLy32l/C6HTfGGm6g91dX32S0sItQUzSqWLRxtOp6YGCcg4Fdj4i8EeHPFjRP4g0uO7kiGEk3sjgem5SDj2pv/CC+Gz4WXw42lo+koxdbd5HbaxJOQxO4HJPOe9SlaNv63/ruU9Xf+tv67HD/AA3t5tH+IF7pS6C/hy3bThM2n/2qL1S4kAEmcnacEjFRHQrXw/rqeIPEljPf7r4PF4jsNTdiqvL8iSQlgAvIU7QwxXoGheCfDvhmcTaFpcVnL5RhLozEspIOCSTu5A5OTVOD4aeD7bW/7Xh0K3W83+YHLMVDZzkITtBzzwKpPWL7f5k9Gu/+RxfjaG/8Q/EO70uXwxJ4ktLK1heC0GsCyWMtkmTGQXORjPQY967X4e22t2fhf7N4itZbSaK4kEEM10tw6QZyimRT82MkZ64Aq34i8FeHvFnlHxBpkd20Qwj7mR1HpuUg49s1c0LQdN8NaSmm6LbfZrSNmZY/MZ8EnJ5Yk9felHRNf1uOWrT/AK2NGvL/AAv4Y0TxfYyeJ/EdzPcawt1Lul+2PH/Z5SQhY1UMAoAAPI5znvXqFc1ffDrwnqWujWLzRIJL4OHMm5lDMO7KDtY/UGhaSuD1jY53W/Ddp4o+L81lqsk5sV0WN5baKVo1n/fOAHKkHAznAPXFc/Pe3+k/Du/0nSvPmt4fEr6ZHH9s8l1tt3EYmb7oPC5PQNXra6TZLrb6usOL54BbNLvbmMNuC4zjqeuM1WHhnRhp9/YtYRyWuozvcXUUhLrJI5BZuSccgdMY7UraW/r4r/loNu7v/Xw2/PU4PwHoWuaL4sRrbwjN4c0aW3kFzE2sreJJJwUcLnKtwRkdQaXwv4Y0TxfYyeJ/EdzPcawt1Lul+2PH/Z5SQhY1UMAoAAPI5znvXV+H/h54X8Lak2oaDpf2S5eMxl/Plf5SQSMMxHYdqL74deE9S10axeaJBJfBw5k3MoZh3ZQdrH6g1V9U/wCtybaNHNeN7/VdN8cSXGiRFphomJZUTzHgiNwN8ip/GyjkLn8+h7Hwpp2k6d4egGgyCe1nHnm6372uWbkyM38THv8AlxjFXjplodYGqGH/AEwQfZ/N3H/V7t23Gcde+M0zStFsNEimi0uD7PFNK0zRiRigZjk7VJIUE84XApR0jb+t2/68/wAG9Xf+tkv6/q90gMpDDIIwQe9eYI02neH9U8BW7lLpr8WVkc/MLSfMm8f7iCUf8Ar06VnSF2jTzHCkqmcbj6Z7Vx3h/R9V1Txa3ivxRpVvpd1Fa/ZLSzjnE7opJLO7gYJ5wAOgJ9aFq9duv9fh8x3stN/6/wCH+Rmah4f0rxF48/4RjWzIdK03S4XstNSZoklJZlZztILbQqgc8Z965/Ugtj4H8W6TZ3UlzpOmapapaSSymTygXiZ49x7Kx/DNemeIvB+geLI4k8QabHeeT/q2LMjL6gMpBx7ZqaDw1o1t4fbQ4NNt00x0KNbBPlYHrn1Pv1oTa1/re/8AwBNJ6dP+BY5zxBd28vxZ8IW0c8bzxxXkjxqwLKrRjaSPQ4OPpWHo/gTTvFy+IpdZuLuQx6zeJZos7JHaNvz5iqpGWyc5OegFdho3gDwv4engn0fSIraa3ZmjlDuzgsu05YkkjHY5A7Vsafpdnpa3C2EPlC5uHuZfmLbpHOWbknGfQcUafg/zuF3a3n+j/wAx2m201lpVpa3V013PDCkclwy7TKwABYjJxk89ap+J7a4vfDGoWtnfrp1xPCY4rpm2iNjwOeoyeMjnnitWq+oafaarp81jqMCXFrOu2SJxkMKJXlccfdaPP/BWmad4X8Vrp82hXGi6ne28hDRag11a3oUqWb5m3Bh1GVHBPJrnLXwpo134D1zxDq95dJd2d1fNZTG7dFs3WV9uxQQMlueckk16X4e8CeGvCtxJPoOkxWs0g2tLuaR8egZiSB7Cua8KfC3Ronm1TxFocb6s1/PMryzF1KGVih2hin3cds/jQ9X8v1Wwlovn+j3MTxZPq+val4f0m80GXXYZtHS7m08amLESzEgMzE4Lbf7o6bs11nw2sNb0zT7+11jS5dKtFnDWFpNfLdmKMqMqJAc4DDIB6Zrd8QeFdE8VWiW+v6fHeRxnKbiVZD3wykEfgap2fgDwzp/hy70G003y9NvW3zwefId54/iLbh90dD2p338/87/1uK23l/l/T6Ffwd/yHvF3/YX/APaEVJ4n/wCR68G/9fdz/wCkz0aL8MPCHh7V4dT0fSPs95Bny5ftMz7cgqeGcjoT2qG/+EvgnVNRuL++0Xzbm5kaWV/tcy7mY5JwHAHPpS6JdkvwK7+d/wAbjviV4Y0jX/CN9d6tafaJ9Ns7ia1fzXXy32ZzhSAeVHXPSqXir/kg0+OD/ZEX/oK1s6z8PvDHiC1sLfV9M+0RafF5Nqv2iVPLTAGMqwz90dc9KNP+H/hnS9CvdHsNM8qwvzm5h+0St5n/AAIsSPwIpNe7KPf/AIP+YJ+9Fvp/wP8AI5Q+F7Pwn4s8J3+nT3b3+pXLQX9zPcu5u1MLN8wJx1AIwBiuX8R6bb+JtY8SRXvh3Wtf1RruW30zULRm+y2wAAVCSwVdrZ3ZBBOa9qutHsb2exmuYN8mnyebbHew8ttpXPB54JHOa8i1L4f6jLreovqHgG11ue7u5Jk1SPWTaqqsflzEMHgYzgcnJ560PWX3/p93UUdF936/8A9Y8O6RFoPhyw0yCNYktoVQorFgG6tgkk4yTUfirUbXSfCepXuoPOltHbtva2OJORj5D2bJ4PY0nhXTL3RvCun6fql2by7t4QksxJO4+mTyQOmT6VoXtlbajYzWd9Ck9vOhSSKQZVgexqql22KnaKR434es5dD+ImgG18Kz+G01CSVZXfWvtTXieUzDfHkkcgHPrU9v4N07XdN8aapqsl1NLZ6nfNZItw6JbOvzb1VSAWJxyc9BXe6R8OPCeg3cN1pOjRW9xBIZI5hI7OrFSp5LE4wx46d8cVrW+gaba2d/awW22HUZZJrpfMY+Y8gw5yTkZ9sY7UparTez/QpPXXuv1/zOBbPi5vBuj+ILmY2F/oxvLiNJjH9smCx/KzAgkAMzYB/lV34bWGj6X4m8W2XhvYNPguLdECSmQK3lfMNxJJw2e9dJqfgnw7rGh2ekalpkdxY2SqttGzuDEFGAA4O7oB3571d0nw/pWheb/ZFlHaCVUV1jJ2kIMLxnA4Pbr3qm1dtdb/nf8NiLaL+uho15Re/DbwdcfFb7Fd6WDFd6dJeNGbqUeZN5wywIfPQ9Bx7V6vWJ4j8HaB4tjiTxDpsd55JPlsXZGXPUBlIOPbNR1T/rYvo0c14u0C2jm8G6Hpss+nWiXjwo1vIRIkYt5MqHOSMjIz15q3b/AAx0uwtdasNOmlh0vVrURPZM7yCObn98GZicnI4/2RXQweG9JtrfS4IbTbHpJzZL5jnyvlKevzfKSOc1PrF1f2WkzXGkad/ad4gHl2nnrD5nIB+duBgZP4U3az8wV7r+upwthezeL7bw3ot6MzWcjT6uh7PbNsCn/elw3uFNej1y/g3w/dadNqes6xBbwarrE4mnitzuSFVGFTd/EepJ7kmuopu/Xfd+pKt026ehw/xKms7mHTdEm0m71q6vpHaDT7e8+ypMEX5vMkyPlAOcetc14MubrSNF8bWsVt/wj6afAslvaSX/ANsSzcxMSRIM9wDjtXo3iLwponiu0jtvEGnpeRxNujyzKyHvhlII/Osu88EWOn+E9YsPB9ja2Fzf2vkjcCY2IBA3A5HRjzjnPOah3UZeZatzRPNPD/g7Ttf1rQJovCGt2l1byLcarqGpyOsc+EzlWL5Yl8EbQPcYrV8bxWfiDxDqs1r4Tu9dfS8RT3sutCyitHCA/u1LYOMgk461V0z4d6idSsf7P8FR+F7m2mjd9XXXGnJVSNwWMHksARzxzXo2pfDzwprGuf2vqWiW9xenG6Ri2HxxllB2sfqDVSV9vP8AT+uhEXbfy/r+rmZpOiWHjf4U6EvimFtQ/wBEjnJeV1YyBCNxKkEnBPWqujgL+z0QOg0SYD/vhq6HUvAfhvV9CstG1DTfOsLDH2aHz5F8vAwOQwJ4PcmotH+HfhbQbW/t9J0v7PFqMPkXS/aJW8xMEY+ZjjqeRg0S97m8yoPlcW+hwkfhi08P6N4N8R2s93JrN1eWUM93Lcu3mRSjDR7c7QoBwAB2FetXV/aWTQreXUFuZ3EcQlkC+Y56Kuep9hVSbw/plxp9jYzW2630+SKW2TzGHltH9w5zk498570av4e0rXZbOTVrNLl7GYT25YkeW478HnoODxVN3b9fw0/4JCVkvT8dSl4yu9bs/D7y+HYPNn3ASui75Yov4njjOA7gdFJH49Cvg600SHQUuPD032uK6JkmvHbdLcSd2kY87s8YOMdMDpW9VGLSbWza+m0yGK0ub075ZVTIaTGA5XIyfyzU7XK3sYukf8TvxtqWrn5rbTVOm2noXyGnYfjtT/gBrll8JaT4p8f+L/8AhIpJ5LK1lt2FsLloogxgXMjbSMkAcZOBzXoGgaPHoOhWumxSGbyU+eVhgyuTlnPuWJP41xx+Gml654717VvFOjrcxyywGxkadgGURANlVb+8P4hRbW3l+q/4cL9TY+G1zNdeA7NpriS6VJJooZ5DlpYllZUYnv8AKBzXVVHBBFa28cFtEkUMShEjRcKqjgAAdBUlNu7Egqjaf8hjUP8Atn/6DV6qNp/yGNQ/7Z/+g0hl6iiigAooooAo/wDMw/8Abr/7PV6qP/Mw/wDbr/7PV6gAorH8QSa5bJBeaCkN2sBJuLBxta4X/Yf+Fh2B4OcHHWp9D12x8Q6aLzTZCyhjHJG67XhkH3kdTyrD0o3A0aKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/yGNQ/7Z/+g1eqjaf8hjUP+2f/AKDQBeooooAKKKKAKP8AzMP/AG6/+z1eqj/zMP8A26/+z1eoAx9f0vUNYSCztNRNhZOT9seEETuvZEbomect19Mdav6dp1npOnxWOm28dtbQrtSOMYA/+v796s0UAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABVG0/5DGof9s//AEGr1UbT/kMah/2z/wDQaAL1FFFABRRRQBR/5mH/ALdf/Z6vVUudPS4uBN500ThNmYn28Zz6Uz+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9VG0/5DGof9s//AEGj+y/+n69/7/f/AFqltLFLR5HWSWRpMbmkbJ4oAs0UUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAf/9k=\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"attachment2024\",\r\n \"contentFormat\": \"image/jpeg\",\r\n \"content\": \"/9j/4AAQSkZJRgABAQEAkACQAAD/4RCcRXhpZgAATU0AKgAAAAgABAE7AAIAAAAOAAAISodpAAQAAAABAAAIWJydAAEAAAAcAAAQeOocAAcAAAgMAAAAPgAAAAAc6gAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFNhbWlyIFNvbGFua2kAAAHqHAAHAAAIDAAACGoAAAAAHOoAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAYQBtAGkAcgAgAFMAbwBsAGEAbgBrAGkAAAD/4QpmaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49J++7vycgaWQ9J1c1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCc/Pg0KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyI+PHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj48cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0idXVpZDpmYWY1YmRkNS1iYTNkLTExZGEtYWQzMS1kMzNkNzUxODJmMWIiIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIvPjxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSJ1dWlkOmZhZjViZGQ1LWJhM2QtMTFkYS1hZDMxLWQzM2Q3NTE4MmYxYiIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIj48ZGM6Y3JlYXRvcj48cmRmOlNlcSB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPjxyZGY6bGk+U2FtaXIgU29sYW5raTwvcmRmOmxpPjwvcmRmOlNlcT4NCgkJCTwvZGM6Y3JlYXRvcj48L3JkZjpEZXNjcmlwdGlvbj48L3JkZjpSREY+PC94OnhtcG1ldGE+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIDw/eHBhY2tldCBlbmQ9J3cnPz7/2wBDAAcFBQYFBAcGBQYIBwcIChELCgkJChUPEAwRGBUaGRgVGBcbHichGx0lHRcYIi4iJSgpKywrGiAvMy8qMicqKyr/2wBDAQcICAoJChQLCxQqHBgcKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKir/wAARCALdBZMDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD6RooooAKKqzTT/axDAI/ubyXz647Uf6f/ANO//j1AFqiqv+n/APTv/wCPUf6f/wBO/wD49QBaoqr/AKf/ANO//j1H+n/9O/8A49QBaoqr/p//AE7/APj1H+n/APTv/wCPUAWqKq/6f/07/wDj1H+n/wDTv/49QBaoqr/p/wD07/8Aj1H+n/8ATv8A+PUAWqKq/wCn/wDTv/49R/p//Tv/AOPUAWqKq/6f/wBO/wD49R/p/wD07/8Aj1AFqiqv+n/9O/8A49T7SaSZJPNChkcp8vTigCeiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAKv/MW/7Yf+zVaqr/zFv+2H/s1WqACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqrZf8vH/AF3arVVbL/l4/wCu7UAWqKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAq/8AMW/7Yf8As1Wqq/8AMW/7Yf8As1WqACsTxHr11o8unwafpy6hcX8zRJG1x5IGELZztPYVt1yPjU3o1jw0dKW3a7+2yeWLlmWM/uXzkqCeme1IO5oaR4iurrV30rWdKbTL7yTPEonE0csYIBIYAcgkZBFb1cd4ekur7xhezeITHDq9jB5MVrCpEQhY58xWJy+SAM4GMYxXOafpupeKtHk1WXQ7a6vbp5DFfvqjxy25DsFCKIzs246A84560+iDqz1SiuE1nSNTlOlXevaadetYLIR3llBIMrPxmZUOBJ3GOozxUOrLpupab4Pj0SaS30+TUdkZVmV0Xy5AyZPIPVfUdqdvzt+Nhefkeg0Vxd1pFj4Z8WaFJoMX2Q38729zBGx2zJ5bNuIz1UgfN155qPQdB07xbY3Wq+IYft11NdTRqJHb/RkRyqogB+XAXORzk0v6/r7x7f16/wCR3FFeYzvc33hXTrOe8mc23iQWcV1uzI0aSMFbd6gcZ9q2J9KsvDfj7QTo0JtV1ETw3SK5ImCx71ZgTywI69eaFrr/AFsn+oPTT+t3/kdtRXngsLTR9eafxfpcs8suoeZa60shdUy+Y0bB3RgcLjG00l3Bd+JPFesx3OiWurwWEqW8MV1ftCsIKBiwQIwJJJ+brwAOlC1X9eX+Y+p6JRWJ4TstT0/Qha6wV8yOVxEBOZisWcopcgFiBxnHatumIKq2X/Lx/wBd2q1VWy/5eP8Aru1IC1RRRQA2QssTtGm9wpKrnG4+me1Yh1rVRfizOjJ5zRmUD7YMbQcddvqa3ayH/wCRyi/68G/9DFb0eXXmjfTz/RnPX5rJxk1qu3V+aZpwPI9ujTxiKQjLIG3bT6Z71JXP6lYx6j4rht5y3kmyYyKrFd43jjI5xnH5U29trO4vfsdvpb37WkSRlXm2xxAjgcnk474J6VSoxdtd9fT72S60ldW209Xa+yR0VFcja3U8ugadZtM8YnvGt3kDksEBb5Q34AZrS1K0ttB0S8utKgWCYRbdyk+uM/UZzmnLD8suRvVuy++wo4nmjzpaJXf9f8MblFcvFpF5FNbTWenRW0qSK0lwLwu0i5+YN8vOa6isqlNQtZ3/AK8mzWlUlUvdW+/9UgooorI2CiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAKv8AzFv+2H/s1Wqq/wDMW/7Yf+zVaoAKo32kwahfafdzPIslhK0sQQgBiVK88dME9MVeooAzr3RLa91ix1MvLDdWe4K8TAeYjdUfIOV7+x6Gs1/BdoLq4ksdS1PT4bpzJNa2lwEjdj1I4JUnvtIro6KAMjUPD/22eOSDVtT08JEIvLtJwFZR6hlbn3GD71z/AIk0Kwt18K6RDGyWg1EgYkO/PlSNu3Zzu3c565rt6KAMXTvC9vY6oNRuL291K7RDHFLeyhvJU9QoUADOOTjJ9ahuPB9tJe3FxY6jqWm/am33EVlOESVu7YKnax7lcGugooAyH8MacdO0+xgR7e30+4S4hSJurKSfmJyTkkk9z61Pe6Nb3+radqMzyrNpzSNEqkbWLrtO7j09MVoUUAc+3hGCa5DXmqaneWyzeetnPcBogwO4fw7iAcEAsRwKk1DwrbXuqtqVre32m3kiBJpbKUL5yjpuDAg47HGfetyigCtp9lHp1jHaxPLIqZ+eaQu7EnJJY8kkmrNFFABVWy/5eP8Aru1Wqq2X/Lx/13agC1RRRQAVXNlGdTW+3N5qxGEDI24JB/PirFFNNrYTinuVzZRnU1vtzeasRhAyNuCQfz4qtcaLDPevcpcXNu0oAlWGTaJAOmeP1GK0aKpVJrZkOnCW68zMj0Cyj0o6fh2h3mRSWwyNnOQR0xUkGkrHHLHcXVzeRyJsKXDhhj8APzq/RVOrN7sSo01ay2My10OO1kixeXkkURzHDJNlF9O2SB2BJrTooqZTlN3kVCEYK0UFFFFQWFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAVsf8TbPbyP/AGarNGOc96KACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqnayxxNcCSRUPnMcM2KuUx4YnbLxIx9SoNADftMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FH2mD/AJ7x/wDfYo+zQf8APCP/AL4FH2aD/nhH/wB8CgA+0wf894/++xR9pg/57x/99ij7NB/zwj/74FH2aD/nhH/3wKAD7TB/z3j/AO+xR9pg/wCe8f8A32KPs0H/ADwj/wC+BR9mg/54R/8AfAoAPtMH/PeP/vsUfaYP+e8f/fYo+zQf88I/++BR9mg/54R/98CgA+0wf894/wDvsUfaYP8AnvH/AN9ij7NB/wA8I/8AvgUfZoP+eEf/AHwKAD7TB/z3j/77FH2mD/nvH/32KPs0H/PCP/vgUfZoP+eEf/fAoAPtMH/PeP8A77FPSWOTPlur467TnFM+zQf88I/++BT0ijjz5aKmeu0YzQA6iiigAooooAKKrX2pWOlwCfU7y3s4i20SXEqxqT6ZJHPBqKw1zSdUkaPTNUsrx1GWW3uEkIHuATQBeooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAMDxOAb7w8CMj+1V/9Ey1D4ytrdbG0uoY0XU47yFbKRF/ebjIAyg9SCu7I6Yz6UvjC2jvJNBt5jIEk1RQTFK0bf6qXoykEfgarnTLfw34qsrv95PaXubUSXczTvaykZXa7ksFfBUjPXb60R/X9EOX6fqzb1TVvsMsFrbW7Xl9c58qBWC8D7zsx+6oyOeeSAATUFprF2upxWGtWEdnNcKxt5ILjzo5CoyV3FVIbHOCORnB4rN1O0nm8fw7NVudO8/TtkLQJE29lkJdf3iNzhlOBjp7VdHh6VtQsri/1+/vPssxliilS3VS21l/gjUnhjxmhbJifYG1vUbue5/sTSobuC2laF5Z7vyS7r94IAjZweMkryPTmpdU8QLpd7YW0lrJLJfK/lxxsN5ddvyAdDncecgAAk8VW1DTrzRvtmqaFdKqHdcXFjcDMMrYyxVusbHHXlc87epqve6lbS+JPCt3MpjW7hmMXmDBRnRCAfQ9vqaFsHX7y3Lruo6dNE+taVHb2Usix/abe783yixAXzFKLgEkDILYPtzVvU9Ya0u4rGxtWvb+ZS6wq4RUQHBd2P3Vzx0JJ6A81U8aMD4Tu7UczXgFtAo6tI5wuPp1+gJpLUi38fXy3Bw91Ywm3J/jEbOHA+hdSf94UbgSxa1e299Bba7pyWf2l/Lhnt7jzoi+MhGJVSpODjjB6ZzgUl94he38QNo1rYtdXbWyTxgSBQQWZSWJHyqNo55J3AAUzxcRJptpaRn/Sbi+txAo65WVXY/gqsT9KdAo/4WBetj5hpkAB9vNl/wAKFr+P5D2T+X52JbDWbp9VOm6vYJZXTRGaExT+dHKgIDYYqpyCRkEdxjNQ/wBualeSXDaLpMV3bW8rQtLNd+S0jqcMEXY2cEEZYryPTmk1Q48aaDjvHdA/98pUWoWF3oMd7quiXKiEb7m40+4GYnPVijdY2OCe657ck0r9WFr7GjqWrmye3tre1e6vrkExW6sFwB95mboqjIBPPJAAOahtNYu11OKw1qwjs5rhWNvJBcedHIVGSu4qpDY5wRyM4PFZFzHNqHjOzuIdTu9MW80sGDyo4iWIfcynzEbBwynAx0PpWkPD0rahZXF/r9/efZZjLFFKluqltrL/AARqTwx4zVW7/wBa2J9P60N2sFNc1K+8ybR9IiurKOVo/NlvPKeQqxVii7CCMggbmXOPTmt6uZ1G1uvC9peappFwHso991Pp04+X+85ifqhPJwdy5PQZpdSt9iDxJcavH4q0JbOxtZYxNIYjJeNGZD5LZDARnbjnByc+1btxe6jBZweXpguLyXh445x5URxyTIwBx9FJ9qz9YbzPEXhmUAhWuJevB5gc4qTUri7u/EMOj2t41ghtWuZJolUyP8wUKu4EAc5JwTyMYo8heZLZavdvqR07VbCO0u2iM0PlXHmxSqCA2GKqQQWXIK9+M1i6Bda63inWxNp1kEN1CJyL928oeSn3R5Xzcc87eTj3o+zQWXxI0qBLy7urj7FcvKbidpNoJjxgfdXOD0ArT0QEeJ/Eme9zCR9PIT/Chd/63Av6Xqf9pNfDyfK+yXb233s79oB3dOOvSmxaur6xqFjJH5a2MUUrSls7g+7tjjG39apeGfku9dhY/vF1N3K+gZEZT+INQ6TPDd+OPESRssixw20UncZxJkfrS15V3svyDq/X9SxY6zquorb3dto8f9nXBVkle8xN5Z6OY9mMY5xvzjtnityuYkiu/CEVubS5+1aR50cAtJx+8tw7hF8tx95QWHysCcdG4xXT1WnQNQooopAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBXubG3vJLd7mPe1tL50R3EbXwVzx14Y9fWi+sLbUrN7W9j8yFyCV3FTkEEEEYIIIByKsUUAVdQ0yz1W2EF/As0YYOuSQyMOjKw5U+4INQWOgadp1x9ogikecAqJrieSeRQeoDSMSB7A1o0UAY8vhXR5rmWaS3kPnOXkh+0yiGRicktFu2HJ5ORzUGsWsF54m0m2uoUmgkt7lWjdcqR+77Vv0UB1uZll4d0ywuluYYZJJkBEclxcSTmMHqF3sdv4YqxqGl2WqwrFfwLKqNuRslWjb1VhgqfcEGrdFAGdYaDp2m3BuLeKR7grt864neeQL/dDSMSB7A4q0tnAt+96qYuJIliZ8nlVJIGOnVj+dT0UAQS2NvNe293LHuntgwifcRtDABuOh6DrWc/hTR5LmSZ7aRhI5keE3MvkuxOSTFu2Hnn7tbFFAFXUNMs9VtRb38CyxqwZeSCjDoysOVPuCDUFjoGnadcfaIIpHnAKia4nknkUHqA0jEgewNaNFABWOPCmji4Mv2aQgv5hha5kMO7Oc+UW2deenWtiigCpqOmWmq26w30ZdUcOjI7IyMOjKykFTyeQe9QXPh/Try2t4biKQ/ZhiGVbiRZU9cSBg/PfnnvWlRQBnWugabZXEM9tbbZoQ4WQuzMd+3cWJOWJ2ry2TxTptEsZ9UTUHjkW6UKC8czxhwpyodVID4zxuBq/RQBm32gadqN2Lq4ilS4C7DLb3EkDMvZWKMCw9jmpLTRdOsWma0tEi86NY5AudrKucDHT+I/XPNXqKOlgMi08L6TZTxywwSsYTmJZrmWVIj6ojsVU/QCteiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAopGZUQu5CqoySTgAVz/AIa8XW/iSz1G7SA21tZXDRrJI3+sQKGEmMDAIOcc8UAdDRXIjxvcpbQapdaHLBoVw6ql6Z1LqrEBZGixwpJHOScHpXTahf2+madPfXb7IIELu3sPT3oeiuw3dixRWR4W14+JfDlvqrWrWhmZwYWfcU2uV5OB6elU/Fvi5PCjae0tk9zFdSssro+DCijcz4wd2Bk446UPR6hudHRWVr2upo3he61qKMXccEIlVFk2iQHGMNg+vpUeseI4dJgtFFtNd318dtrZwYLyHGTycAKO7HgUAbNFcq3i3UtNaOTxP4efTbKRghu4btbhYiTgeYAAVHvyKk8T+I9Y0CG5vLbQYr3T7eLzHuDfiNvf5Nh/nRsG501FY+iajrN+znV9Fi06LYGjdL0T7ye2AoxUfiTX7vRpdOg07TV1C5v5mhSNrjyQMIWznaewoegLU3KKx7HVtQWyu7rxJpsOkQ267963gnBUAlicKMYxWZH4q12+hF5pXhOaewcbo5J7xIZZV/vLGQevUZIzQB1dFc1d+NLWLwVdeIbO3kmFr8slrKfKkRwwVkbg7SM+9dBPP5FlJcbd3lxl9ucZwM4oeiuxpXJaK5HVPHR07wbpOvLpb3H9otGDbRy/MgdCxwdvzEBemBn2rcudagj8MTa3Z4uoEtGuowGwJAFLAZ7ZxQ9L36CWrSXU0qK5rUfFdzbaHot7Y6Wt3cas8aR27XPlhC6F/v7TnGMdBUR8Xahps0X/AAlGgSaZayusYvIbpbiJGJwN+ACozgZxjmnZ3t8hX0udVRRRSGFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAHE+NvEFompW+gX0k9tZTJ5t7PHbySb488QrsBwWwcnsue5rBtNbsL/RfHVppTyeZMJpoE+zyIPLECL3UAdMYPPtXqlULDRrbT59QliMkh1Cfz5lkIIB2hcDjphR1zSto13T/T+v8Ahx31T7M53xM8LfB64MRBifTYxF75ChQPxIrP1XxLp8niSDTdcluILLSxHJIgtJZPtVwBkcopGxOvPVsdhW5beBtOtpYV+138tjbyiWDT5Z90ETA5GBjcQDyASQPSulqm7y5v6/r/AIBKVoqJxnww1Wzv/C32a1kdpbeeZpA0TqAHmcrgkAHj06d8Va8TRpL4v8KxyKHR57lWVhkEGBuK2tG0iDQ9MWxtHkeJXdwZSC2XcuegHdjRe6RBfanp19M8iy6e7vEFI2sWQod3Hoe2KWhXV/M898RSP4e8J694Wu2Jt/srT6VIx+9DuG6LPqhP/fJHpXRKyxfE3Tjc8LNozJak9C4kBcD327fwFa3ifwtp/izSxZan5qKr70lgYK6HocEg8EEgjFT6toFhrVhFa3yP+4IaGaNykkTAYDKw5BoW9/62f+f9XE9dP66f5FTxtJBF4F1k3RXY1nIoz3YqQo+uSKzvFEcsPwjvI7nPnJpgWTPXcFGf1q3beCrSO8huNR1LVNXNu4eGO/ud6RuOjbVABI9TmtbWNLh1rR7rTbppEhuozG7RkBgD6ZBH6Uuj8/6/UafvJ9v+B/kWLX/jzh/65r/KuU8bi+Os+GRpTW63f22TyzcqzRj9y+chSD0z3rro0EcaovRQAM1Tv9Ig1C/0+7meRZNPlaWIIQAxKFfm46YJ6Yqnq7kx0jby/Q5XxYmu/wDCvtU/t57GYq0TsLCN1BhEil87ic8A/hXawyRywRyQMrROoZGXoQRxildFljaORQ6MCGVhkEHsa5geA7SHMVjrGtWNlniyt70rEo7gZBZR7AikM5jXE+0eGviBNa827XSbSOhZEj8wj8Rz9K9C1CaMeHrmYuPL+yu2/PGNhOaW20bT7PRhpVvaRpYiMx+RjIKnqDnrnJyT1rBX4fWAjFs+qaxLpy8DTpLwmHb2TpuK+xak1ePL5fpYadmn5sxghTwV4BV1wfttnkH/AK5NRq2fCtnrmhv8ul6lZXM+mt2ik8tjJD9OrL+IrtNR0W11IWAlLxrYXKXMKxYA3KCADx056DFM8Q6BZeJdHk07UQ4ichleIgPGw6MpwcH/ABpzfMnbq3+Ngjo15Jfg2ctN/wAgHwF/19W3/ohq2vH0sEfgPVluAG823aKNO7yNwgHvuIqTUPCVrf6NpunC9vbVdNZGt57eRVkBRCoJJUjofSm2Pg6zt76K8v73UNXuIG3QNqFx5ghPqqgBQffGacrSb83/AJExvGz7L/M2bBJItOto5+ZViVX/AN4AZqeiihu7uCVlYKKKKQwooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigClqmr2ejwxS37yKJpBFGIoXlZ3IJwFQE9Ae3aq1p4n0q8vks0mmhuZATHFdWstu0mOu3zFXd+GareJyBfeHiTgf2qv/omWovF8sF1ZW2nQMsmozXUL20akF0KyKzSewVQcn8O9C1++35f5g9Pu/wAzpKKytU1O5ivrfTdLijlvp1aQtMSI4YxgF2xyeSAFGM+owTUEGoapYatbWWtm0nS8LLBc2sbRASBS2xkZm6qCQQexGKNwNyiuej1DWtWmu30eSwtre1ne3C3ULyPKyHDHKuuwZ4HDcc+1S6vrV3p2qaXZQW0c8t8soCZIG9Qp+92UAsScE8cc8EDrY3KK5281HW9EC3mqNYXWn71Wf7NC8UlurEDfyzBwM8/d459qt6jql3/aaaXo8UMl2Y/OllnJ8u3jzgEgcsSQcKCOh5GOQDXorBOo6tpN3bLrhs7m1uZVhFzaxtEYnbhQyMzZBPGQ3UjjvTb3WdS/4Sp9F02CBmNolwJpg22LLurFsH5vurhRjOTzR6AdBRWJZahqdvriaXrX2WUzwtNb3NrG0attIDIyMzYI3Ag7jnnpioYdQ1vV2uZ9HfT7e2gnkgRLqF5HlZGKsSVZQgyDjhuOfagDoaKydS1O6ivLbTdNhikv7hDIxlJ8uCMYBdscnkgADGfUYJqGDUNUsNWtrLWzaTpeFlgubWNogJApbYyMzdVBIIPYjFAG5VWxv4tQjmeFXUQzvA28AZZDgke1Wqw/DhZbHUii7mGo3JC5xk+YeM0uvy/VD6fP/M3KZJNHEUEsiIZG2IGYDc3oPU8Gufvr7xHpmny6pdjTXt7dDLNZxJJvVBy22UtgkDn7gz0461U8WjU59R0CTT7uzSB79PKEtszkP5Uh3EiQZXHbAOe/an1Qun3nXUVjXeo39lHZ2Ci3vNWui20qrRRKq/ekIJYgAFRjJJJHTPEa6hq2mahaw621ncW15J5KT2sTRGKTBKhlZmyDgjII5wMc5oA3aK506xq154g1HSdNitozaGMm6nRmVFZAQNoI3sTngFcAc9s2tK1G+OqXOlawsBuYYlnjntlKpNGxI+6SSpBHIyeo5oWobGxRWCmoatrEkr6J9jtbOKRo1ubuJpTOynDFUVlwoIIyW5weMYJkGpahZ6vp1nqgtil5HInmwBgPOX5lHJ4DIGOOxU8mgDaorN1HUZoNU06ws1jaW6kZpN4J2QoMs3B65KqPdq0qACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA5vxfa297LoNveQR3EEmqKHilQMrDypeoPBqGfT7PwlrVrf6XaxWen3jra3sUEYRFYn91JgcD5vlPruGeldNLBDO0bTRJIYn3xl1B2NgjI9DgkZ96J7eG6geC6hjmicYaORQysPcHrQtPv/yB6/d/mctrdjaf8JrbXGqXF1bW91aC2ilhvJLdRKrlgjFGHLBjjP8AdNXYtE0S31i0Vry7mvY2M0ENxqk82CAQW2M5HQkZx3rcuLaC7t3guoY5oXGGjkQMrD0IPBqCw0rT9LRk0ywtbNWOWW3hWMH64AoWgPUw9Xt7O2hvtb0fVVsLqEMZ2SUNBK6jG2WPpnjbkYbtntUOp6sttrfhm+1GL7OssExmLdLcsqcsewBwCfet9tD0l9QF++l2TXgORcG3QyZ9d2M1Vv7eSXxTpUnks8KwXCyNtyozswCenODSDqVvF1zFc6DJpVvIst3qg+zwRo2SQ3DP/uquST7UnmxaT42ne9cRRalbQx28rnCmSMvmPPqQ4IHf5vStax0fTNMZ203TrSzaT75t4FjLfXA5qxcW0F3bvBdwxzwuMNHKgZW+oPBpgYXiiaK9S00a2kV7y5uoZNiHLRxxyK7SH0AC4z6kCpoAP+E+vjjn+zbfn/trNWhYaVp+lxsmmWFtZoxyy28Kxgn3wBVgQRC4acRIJmUI0m0bioJIGfQEnj3NC0/ryDo1/W9zE1T/AJHTQP8Arndf+grVTWIbSytb/XdE1RbK4i3PMEkDwTyLwVkTpuJG3K4b3PSuleCGSaOZ4kaWIERuVBZM9cHtmqp0PSTqH286XZG8zn7SbdPMz67sZpDOb1G2t5/FNhe6zJd2MV9YLChivJLcJMGLeWxRlySGOM/3TWlFomiW+sWiteXc17GxmghuNUnmwQCC2xnI6EjOO9blxbw3du8F1DHPC4w8cihlYe4PBqCw0rT9LRk0ywtbNWOWW3hWMH64AqhFuuRF7caf4Q167sjtmivbkh9u7YPNOWx3wMnHtXXUyOCKFWEMSRh2LsFUDcx5JPuanr8v8h9Pn/mcP4s07w/a+Db2eQnUrma0kNs9xctcPI2wneoYkDH3sqAAB2rU1jCWvhiV2CpHfQ7mY4AzE6j9WA/GtiDQtItvP+zaVZQ/aVKz+Xbovmg9Q2ByD71ZntLa5tGtbm3ilt2Xa0MiBkI9CDxins7+n4C/4P4nM+I7W0bxPpd7qNxcQWTQy2pngu5IBHIWQqGZGHB2sOTjIA64q0dC0KHULNJ768luDKJbeGfVZ5NzJ82QjSEHGM9K2o7CzisfsUVpAloFK/Z1jAjx6bemKjsNH0zSt39madaWe/732eBY931wBmhaA9SjpAH/AAkmvnHPnQ8/9sVqNv8Akoi/9gpv/RorbSGKOSSSONFeUgyMqgFyBgZPfjik8iH7T9o8pPO2bPN2jdtznGeuM84pW1X9dGgeqa/rdMwfB11FBoiaTPIEvtNJgnic4bgnD47qwwQferHiCL+0vD73GmOk1xasLm2aNgQ0kZztyPXBU/U1ev8AR9M1QodT060vCn3DcQLJt+mQcVS1i9lsLMafo1lM13NHstvKgPkw9tzPjaoXrjOT2Bod7abjW+uxX8OXEeuX134giJa3lVbazJ/55ryzfi5I/wCACuhqrplhFpel21jb/wCrt41jBPU4HU+561aqnbZEq+7CiiikMKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAKGsajcadao1nptxqM8j7EigKgA4JyzMQFXjr+lUfCmuXWv+FItUuLeOO4kaUeTGx2/LIygZP8Aujmt09DXI/DmVIPh5byzMEjjkuWdj0UCZyTR0Y+i/ruLea14l0Nbe+1uHS5LCSdIZorXzPMg3sFVtzHD4JGflWrup6vqcuvDRvD6Wv2iOAXFzcXYZkiUkhVCqQSxwT1GAKrQ29z4wntL+9U22iwyLcW1sf8AWXTDlJJP7q9wnU8E46UulkQfEzXopTiS5tLWaHP8SLvVsfQ/zo8n/Wn9MXdr+tS94b1q41SO8ttSgjt9R0+fyLlImJRjgMrrnnaQQcHkVp3F9aWkiJdXUMLurMiySBSwUZYjPUAcn0rnvDQ87xh4qvIjuge5ggVh0LxxAP8AkTioPE1lBf8Aj7wrFdxrLEBduUYZViEQjI784P4Ub28/8rh3OgGvaOdP+3jVbH7GG2/aftKeXn03ZxmrK3ds9mLtLiJrYpvEwcFCvru6Y965DTdE07/hZ+tH7JFtS0gkWPYNgd94ZwvTcQoGevX1qjpmgNrHhDWNIspIoFttbmNvFKm6LCShxGyj+AnPFG/9edg2/ryudxYarp+qI7aZf2t4qHDm3mWQKffBOKt1zfhvUBJqt9p17o8GmanbxxvMbYho54zuCsrAA44bhhkV0lMAooopAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFZ9voWm2uhyaPBbbLCRZEaHzGOQ5JbknPO49+9aFFAXOXX4ceGEUBLK4UKMADULjA/8iVrat4e0vW/JOpW3mPAT5UqSNHImeoDqQ2D6ZrSooArafp1ppVjHZ6dbpb28Y+WNBwPU+59+9JPptpc6ja300W65tA4gfcRsDgBuM4OQB1q1RQBVj061h1OfUI4sXVxGkcsm4/Mq52jGcDG49KpzeGNIuLG4s5bTMFxcm6kAlcEyk5Lhgcqc+hFa1FAGfpWh6doqSjTbfyzMwaWRnaR5COm52JY49zWhRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFUtU1ez0eGKW/eRRNIIoxFC8rO5BOAqAnoD27VWtPE+lXl8lmk00NzICY4rq1lt2kx12+Yq7vwzQBrUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUxpo0mSJpEWSQEohYZYDrgd8ZFPoAKKKKACiimRTRTx74JEkTJG5GBGQcEcehGKAH0UUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAGB4nIF94eJOB/aq/+iZai8XywXVlbadAyyajNdQvbRqQXQrIrNJ7BVByfw70eL7W3vZdBt7yCO4gk1RQ8UqBlYeVL1B4NQz6fZ+Etatb/S7WKz0+8dbW9igjCIrE/upMDgfN8p9dwz0oj+v6Icv0/Vmrqmp3MV9b6bpcUct9OrSFpiRHDGMAu2OTyQAoxn1GCagg1DVLDVray1s2k6XhZYLm1jaICQKW2MjM3VQSCD2IxWdrdjaf8JrbXGqXF1bW91aC2ilhvJLdRKrlgjFGHLBjjP8AdNXYtE0S31i0Vry7mvY2M0ENxqk82CAQW2M5HQkZx3oWyf8AX9dRPe39f10Ej1DWtWmu30eSwtre1ne3C3ULyPKyHDHKuuwZ4HDcc+1S6vrV3p2qaXZQW0c8t8soCZIG9Qp+92UAsScE8cc8Gpq9vZ20N9rej6qthdQhjOyShoJXUY2yx9M8bcjDds9qh1PVlttb8M32oxfZ1lgmMxbpbllTlj2AOAT70lt939fMb3+8t3mo63ogW81RrC60/eqz/ZoXikt1Ygb+WYOBnn7vHPtVvUdUu/7TTS9HihkuzH50ss5Pl28ecAkDliSDhQR0PIxzV8XXMVzoMmlW8iy3eqD7PBGjZJDcM/8AuquST7UnmxaT42ne9cRRalbQx28rnCmSMvmPPqQ4IHf5vSmIkOo6tpN3bLrhs7m1uZVhFzaxtEYnbhQyMzZBPGQ3UjjvTb3WdS/4Sp9F02CBmNolwJpg22LLurFsH5vurhRjOTzSeKJor1LTRraRXvLm6hk2IctHHHIrtIfQALjPqQKmgA/4T6+OOf7Nt+f+2s1C1/H8h7J/L8wstQ1O31xNL1r7LKZ4Wmt7m1jaNW2kBkZGZsEbgQdxzz0xUMOoa3q7XM+jvp9vbQTyQIl1C8jysjFWJKsoQZBxw3HPtT9U/wCR00D/AK53X/oK1U1iG0srW/13RNUWyuItzzBJA8E8i8FZE6biRtyuG9z0pX6sLX2NPUtTuory203TYYpL+4QyMZSfLgjGAXbHJ5IAAxn1GCahg1DVLDVray1s2k6XhZYLm1jaICQKW2MjM3VQSCD2IxWTqNtbz+KbC91mS7sYr6wWFDFeSW4SYMW8tijLkkMcZ/umtKLRNEt9YtFa8u5r2NjNBDcapPNggEFtjOR0JGcd6q3fz/r9f+AT6HQVhLqOq6vNP/Yf2S2tIZGiF1dxtL5zKcNtRWXCggjcW5IPGOTu1zvhC5it9LbR55FjvtPkeOaJzhiC5KvjurAg5+vcGl1GW7vVLvStKg+2RQ3WpTy+RDDbkokrknH3slRtG49cAHrVeebxPYW7Xkw029jjXfJaW8UkcmB12uXIY+gKrn2pniC4hSXSNZSRZbKxu2NxJGwZUVkeMucdlYjPoM+laWo61Y2GlteSXEbxsv7oIwYzMfuqgH3iTwAKTvZtD62M/VvEcltHo0ulQreJqkuyMHI3AxM6nP8ACMgEnBwM8Zom1DW9JubWTVmsLizuZ0gc20TxvAznCnLMwcbiAeF659qoWthLptt4MsrofvrdyrjOdrfZpMj8OlaHjL/kAxf9f9p/6UJVtJSt5krVfIztai1pvH2lfZL2wjVre58kS2buUH7rcGxKNxJxgjGPete71K/F7DpWnLby3/kia4nkVhFCucBtgOSWIOF3dAcnjmHVCI/G+hSOwVWguowScZYiMgfXCk/hWffWFk/jmSTUrq7t49QtYltZIL6W3R3QvuTKMAThgQD/ALWO9Stkv66lPa5q2eoaja6xHput/ZpGuI2e2ubVGjVyuNyMjMxBwcg5ORnpjmpZavresz30OnrZ2q2d3JA1xcRPIG2twqoGXPGCW3AZOAOuJ7TR9Fttch8u8uZ9QgRpY4p9SmnKKRtLbHcgdcZxUnhgAW2oYHXUrnPv+8NHX5fqhPb5/ow0/UNSv7e/s5BbW2qWUgjZ9jSQuCAyuF3A4IPTPBB5NZvgOLVV0VGuruzktfOuAI47Vlk3ec/O4yEYznjb6c1e0r/kc/EH+7a/+gNTfBjovh4Ql18yO7uUZc8giZ+MUC6HQUUUUDCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigCOWCGdo2miSQxPvjLqDsbBGR6HBIz70T28N1A8F1DHNE4w0cihlYe4PWpKKAI7i2gu7d4LqGOaFxho5EDKw9CDwagsNK0/S0ZNMsLWzVjllt4VjB+uAKt0UAUW0PSX1AX76XZNeA5FwbdDJn13YzVW/t5JfFOlSeSzwrBcLI23KjOzAJ6c4NbFFAFOx0fTNMZ203TrSzaT75t4FjLfXA5qxcW0F3bvBdwxzwuMNHKgZW+oPBqSigCpYaVp+lxsmmWFtZoxyy28Kxgn3wBVgQRC4acRIJmUI0m0bioJIGfQEnj3NPooAjeCGSaOZ4kaWIERuVBZM9cHtmqp0PSTqH286XZG8zn7SbdPMz67sZq9RQBHcW8N3bvBdQxzwuMPHIoZWHuDwagsNK0/S0ZNMsLWzVjllt4VjB+uAKt0UAFU7/R9N1XZ/aenWl5s+59ogWTb9Mg4q5RQAyKGKCFYYY0jiQbVRFAVR6ACqdtoWkWV2bqz0qyt7hs5mit0Vznr8wGav0UAMeGKWSN5Ikd4iWjZlBKEjGQe3BI/GkmghuYwlxEkqBgwWRQwyDkHB7ggGpKKAK97YWepW5g1G0gu4SQTHPGHXPrg8UTWFnc2X2O4tIJbXaF8h4wyYHQbTxirFFAFax02x0yExabZW9nGTkpbxLGCfoBU0UMUAYQxpGGYuwRQMseST7n1p9FAEaQQxzSTJEiyy48xwoDPjpk98VCmmWEeoPfx2Vul5Iu17hYlEjD0LYyRxVqigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAKNzc3f9oi2tBD/qvMJlz647Uf8AE2/6cv8Ax+j/AJmH/t1/9nq9QBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/R/xNv8Apy/8fq9RQBR/4m3/AE5f+P0f8Tb/AKcv/H6vUUAUf+Jt/wBOX/j9H/E2/wCnL/x+r1FAFH/ibf8ATl/4/S2VzcS3NxDdCLdDt5jzg5Ge9Xao2n/IY1D/ALZ/+g0AXqKKKACiiigCj/zMP/br/wCz1eqj/wAzD/26/wDs9XqACiuV8Zvc38+meHtPvJ7OfUZHkkntpTHJHDGuSQw5GWMY/E0aJ4rij+HEWua27K9nAUvcDLebGdjjHqWHA9xSvo2HVI6qiuY8P+Jdd1bUAmp+EbrSbGVC8F1LdRyE9wHjHKEj1z6VTuvHOpzardW/hjwrda1aWMxgurxbmOFQ4+8sYbmQjocY5p9bAdnRXOeIfFNzpdzbWGi6LPrOq3ERmW0WZYRHGCAWd24Xk4A7mo7PxvA/hvVNT1TT7jT7jRwwvrJirvGQob5SDhgQRg8UdGw62OnormfDfiTW9YvCmreFptKtpIvNt7oXsVwkg44Oz7pIOR171Sfxzqdxrd1b6J4VudS0+xuTbXV4l3Ejo6/e2xH5mAz7Z7U7a2FfS52dFUtS1nTNGjSTV9RtLBJDtRrqdYgx9AWIzWJ4p8VpaeCpdU8NXNrfTTyJbWksUiyRea7hASRkHBOce1SM6iiuT0TwZqGlalDqN14u1rUJ/wDl5guJVa3kyOdsePk55GD2qld/EHUjcXc2g+E7zVtJspHjuL9LlI8lOH8uNuZACCMjHIpuyDc7miuL1T4irb3Ojw6Jo9xrDazZtc2iwyBCSNuA2eFGGJLE8Y6GpLHxlq+p6FqEll4XkbW9OuRb3GlPfRrgkBtwlxtI2tnpzR/X42D+v1Oworzj4eeJvF+pafp8eo+GZJLKWSXzNWk1SNiBvb/lnjccH5fwz0rQvPH2pHVNV07QvCtzq1zplx5cpW5WKPZsVt29h947iNgyflznmgDt6K4+5+ICyaTpE2g6Rc6rqGrwGe2sVdYiqDG5nc8KASBnuasaJry+LIdT0PX9Gm0u9iiCXljLMHDRSAgFZExuBAIyMYNFnqGnU6iiuD8AaHp/hzxZ4t0zRrf7NZwzWpSPez4zDk8sSepPeunvfFPh/TbxrTUdd0y0uUxuhnvI0dcjIypOehp9rArmrRXO+M7uZdLtNNsZ5ILrVruO0jkhcq6ITukZSOQRGrc+uKreE2Or+E73RNbeS7ls5p9NuzLIS8qAkKWbrlo2U5znmlve39f1dBppf+v6szq6K4PwBoen+HPFni3TNGt/s1nDNalI97PjMOTyxJ6k96j8WeGNItPHXh3xBb2mzVLrVkimuPNc7lEL8bSdo+6Og7U+qXe34h0b7X/A9Aorn/E3ih9CktLLTtMm1fVb7d9nsoXEeVUDczO3CqMgZPcisdfiLPBp2oHV9Am07U9OaBriykuFceVLIEEiSKCGA57dsUlqD0O4orn9b8X2Wl2GqSWm29vNMaFJrUMUIaUqEG7B67h0zVy/8TaFpNz9n1XWtOsbjaG8q5u442we+GIOKANSiuO8U3V7rGv6V4b0jU5NPhvYJLy6vLVh5vkptAWNucFiw+b0FUtOm1DwZ4luNGutVvNasJdNkv7V7+UPOjxEB0L45BDAjjildJXfn+G/5Mdu39XO+qC4vbW0khjurmGF7h/LhWSQKZG67VB6n2FcPa/Ey7uYtN1BvC15Dod68UTai86DZJIQoxGfmZNxA38Z6gU/xVfyHxrolvrHhBLrT01CJLHVm1BRsmZc58oDdxg9ePlB9Kqzul52JurN+VzvKKw/FHiRvD1vapa6fLqeoX03kWlnE6oZG2ljlm4UAA5NZHhnxnrut69qWl6p4TOlS6fAJHJ1FJcu33FwFHDAN8wyBtxS3GdZHe2s15Naw3MMlzAFMsKyAvGD03L1Ge2anrhvBl4154y1x9T8JpoGsNDBJcOL4XJnQ7gv3RtXGzt1707UPH+pJ4j1TRNC8K3Or3enMhdkukij2MgbJZhw3JAUZJwTRsHc7eisbSvEUeteD49e061mlEtu0yW3G9mGcp6ZyCKtaFqFxq2hWl9e6fNps88YZ7Sf78R9DwP5D6Cnaza7AX6KK8+8cnX/AO2rT+wvN2faYc/awnk7+dvk/wAXmdc7vk6Zqb6oOjZ6DRVDQ/M/sO1877b5mz5vt+3zs99+35c/Tir9U9GC1CiiikAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFUbT/kMah/2z/wDQavVRtP8AkMah/wBs/wD0GgC9RRRQAUUUUAUf+Zh/7df/AGer1Uf+Zh/7df8A2er1AHC6v4KvvE/ja71G+1PVtGtrW3jtrGTTLtYmmBy0hYgE43bRg4+79KoW/gDU4NB8S+Go7q4ls7mWO80/UL2ZZHebhnEmOfvoCTjkMepr0mihaKy/rr+Y93dnMeH9V8X3uoCDxB4attMt40O+6S/Wbzm7bEAyozz8xrGtIfGXhK7vdO0fQLXWtPubyW5t7s3ywGDzGLFZFIJbBJ5XqK9Aoo63F0seb/EPwNJrutWetf2BB4i8q1+zTWDXzWjA7twdHBA7sCD7Vb8IaDPovhPVF07wZBod5M/FhcambuO5AUcl+ducsMfnXe0UbJrv/X9XDdps858IaDrlt4pjvV8Op4U01EkFzZRamLiO6ZsbSsSjbHgjORjriqviTQvEmqa7cHT/AAla2d+zkW/iO01XyCq5+VpI1G58AAFTkV6hRR28g7lC+0XTtXtoYtbsLPUfK5H2m3WQBsYJAYHFZPiPwhb6j4Nn0XQ47fSmVlmtfIiCRxyq4dTtUdCw54710tFDBaHJaFq/ja61GG11zwxaWMCf6++TUFkWTAP3IwNwycfePArGtrXxv4atrrQNG0Sz1Czlmme01OS9EQgWRy2JIyNzEFj93rXo1FD13BaHEaR4Ru9E8R+GhCvnWWmaRNaTXG4DMjMhHy5zzhj04rT8OaTe2HibxPd3cPlwX95FJbvvU71EKqTgHI5BHOK6SinfW/r+LuK39eiscH4SXxZ4dnh8PXfh2K40uOeXbq8d+gAjZmcExEbieQK3PDWmXmn6t4imu4fLjvdR8+A7gd6eVGueDxypGDzxXQUUlp+X5f5Dev8AXr/mcl4o0/XLXxHY+JPDVlDqc1vbSWk9hLOITLGzKwKOeAQyjr2qDR7PxGt5rHinVdJhTU57RILPSYbpThU3MFaXG3czN16AV2lFC0Vv61B6nnXhifxnF421G91PwZ9jtNXlhMsv9qwyfZhHHszgcvnHbFdhe+FvD+pXjXeo6Fpl3cvjdNPZxu7YGBliM9BWrRTA4rxN4SvfFfi+0M17qGlabp1qzQXWnXKxSvO7YIzyQAi+gzu69ar6J4b1jwVresvpf2/X7S8sluEe/vUMr3SEr5ZcgYDLt+Yggbetd7RSWm39f1+gPX+v6/pnnXhifxnF421G91PwZ9jtNXlhMsv9qwyfZhHHszgcvnHbFO8YT+MrzX7EaX4N+12ml363UVz/AGpDH9pARlxtblOX756e9eh0UdvIO5xOs2viZ7vRvFOl6RC+pW9tJBd6PLdqCVk2khZcbdyso56EVQm8N+IPEVj4i1XW7CCw1C/0z7DZafFcCQxBdzgvJwpYuR04AFei0Uf16XH/AF9x5lN4T8QTvo909kgn1C5STW085P3IS4WZOc4faAU4z1rutQ8M6Dq119p1XRNOvZ9oXzbm0SRsDoMsCcVp0U+lifM5LxRpGr2+raXr/hW1gurnT4pLeSwkkEInhfb8qt0UgqCM8VTs9I8Q63e6hrviGwh064bTZLGx06O4ExQNyzO4wpJIUDHAAruaKlq6afn+O/5lJ2d1/VjJ8KWVxpvg7R7G9j8q5trGGKVNwO1lQAjI4PI7VyXjWXxjfa1ZRaT4O+2WemahFeRXX9qQx/aAqHK7G5XliMnPTpzXodFVJty5vmSlaPKeX/EN9W1mz8LWo06S31a4nkmOn22oLFPEyxnlLjaVG3dz65A9ak8A3c+i6lqWjXvh+/g1+a1+3F73VUvJLwL8qh5QAE5OACMdTXbeIPC2ieKrVLfX9PjvI4ySm4lWQnrhlII/A1H4d8IaD4UikTw/psVn5v8ArGBZnb2LMSSPbNJdfP8Ar+txvp5f1/WxyGj3fjdfHdxql74G+z2+oR29tK39rwP9nVGbMnHLcPnAA6e9dJoOk3tl4w8UXtzDst7+W3a2fep8wLEFbgHIwfXFdLRR0sHW5yngvTNV0D4bW1jNaouqW8UpWB5AVLlmZQWUkYOR09a3NCm1S40K0l1+2htdRaMG4hhbciN6A5P8z9TV+im3dtgFFFFIAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqjaf8hjUP8Atn/6DV6qNp/yGNQ/7Z/+g0AXqKKKACiiigCj/wAzD/26/wDs9Xqo/wDMw/8Abr/7PV6gDF8Ua/J4f02KW0sv7QvLiYQ29r5vl+Y2Cx+bBxhVY9O1XtI1OHWdFs9Stv8AU3cKzKM9Awzj8K4fxNq2tyfEi2Tw94eOuro1oXmj+2R24jlm4U5fqQingf36w7a+1WD4U+KNGmsptOv9MnO+0jlErw2sriTCsvBwjOMj+7SWzf8AXb/gja1S/rv/AMA9StNb0rULyW1sNTs7m5h/1sMNwrvH9VByPxovdb0rTbmK31HU7O0nm/1UU9wqM/0BOT+Fc14XHw8W8sx4T/sY3ohPlfYyhn2Y534+bp13d/eub0ZvBL3mvt47Ol/23/aM4nGq7PMEQb915e/nbs2421XWwlqrnp19qNlpdqbnU7y3s4AQDLcSrGoP1JAqS3uoLu2S4tZ454HG5JY3DKw9QRwa8r+JDXH/AAm2kKT4d/s/+z2NuPEm/wCymTd82Mcb9u3G7tnFT+GdMiTwH4ni1bWtBh0y9cgyeH5y9vZ7kCtgH7vY46cnpU/Zb/rewdUj0Ww1rS9Ullj0zUrO8khOJUt51kKfUAnH40k+t6Va6hHYXOp2cN5Ljy7aS4RZHz6KTk1554LvNIsPGFnplrbeGb24mt5BHqfh/ajBVCkiaNc7d3HO4jI7Vla6/hzRNU1fUjN4Z8QJJdvNPZ3jLHqML5AZIn5LYIOFwPY1Wl0LWzPZqo6zq9noOjXOqalJ5dtbJvcgZJ9AB3JOAB6mqXiDT9b1eytv+Ed186FIDvkdrFLgupHCkOflxXN+M9N1iz+GLjVL5teurK6hu55UtlhMsSTK5GxeOFH6VL89ClrtqaeieK9f1TUoVvvBl5p2m3H+qvJLqN2HGR5kQ+ZM/jgmt661zSbG+jsr3VLK3upf9XBNcIjv9FJyaoab438M6vJaxabrljcT3X+qgjmBlPGeU+8OAeoFedWB8CtoGunxt/Zx137XdC8+27ftWd7bPLz82NmzGzinJ26CSuesXWp2Fi5S9vba3YRmUrLKqHYCAW5PQEjJ6cioW1/R10oam2rWI08nAuzcp5ROcY35x14615nYaGmt674FtPFVt9qeLQ5ZZIbgZDMDHt3g9cAjIPcVveEtE0p9Y8Y6M+m2j6ZHqMTJZPArQqTAhOEIwOeabW69fwdhX2+X4q5s+GvHuheJLS3MWo2MN5cM6rZfbEaX5WIHy5zyBnp0Na11r2kWMckl7qtlbpFL5MjS3CIEkwDsJJ4bBBx15FcD8M18GR6ZZQmLRIvEMNxPGUZIlulYSPwP4/u+narWh+FNE1zxV4uutZ06G+kXUfJQXKiRY1MMZJVTwGPqOeB6Ut9u1/y/zHtv3/z/AMju7vULOwszd313BbWwAJmmlCIAenzE4qH7cNS0eW58PXVndu0bfZpfM3wl8fLuKds4zjmvP9a0rQdC8R+F9J8TSrJ4etLCaO2bUmBhNwCu3zCQFzs3YyMVa8IT6FZ+MfEl34bltIPDsdtA08sLKtqs43FipHygBNuSOOlGj/H8O/8AXYNV+H9f15mz4O1rxBf6nrWm+KU01bvTZIVDacJPLYOm/wDjOT27CurrgfCviPRLj4ieKFt9Y0+U3k1qLYJdI3n4gAOzB+bB4OK1Na8P+Lr7V5bjR/G39l2bbdlp/ZMU2zAAPzscnJyfxp72+QI1/EOsf2Fosl6sH2mXekUMG/Z5sjsFVc4OMkjnBqDSNauPEHhL+0dOhit76SORFguHLJFOpKlHIAJAYYJABxXN+OtS1VvFOhaboWjnWp7MtqVxai5SAYUFIyWbj7zE4/2ai8C6xd6frHiOy8T2CaAS41VIJrtJEjik4kbzBxjepJ6Y3Ulqn/W39P7gelvl/X5febHg7WvEF/qetab4pTTVu9NkhUNpwk8tg6b/AOM5PbsKi1jWfFOk+MtNhZNHbQdQvFtYyBKbpSYyxJ5CdVPr2qj4V8R6JcfETxQtvrGnym8mtRbBLpG8/EAB2YPzYPBxTvHHiLRIdc8OwTaxp8c1pq6PcRvdIGhXypOXGcqORyfUU+sfl+lw6P0f6nbXl7a6favc39zDawJ9+WaQIq/UngVBFrWlz2C30OpWclozhFuEnUxliQAN2cZJIGPU1xPjC70K88W+GpvEU9rP4clgneKWZ1a0e4+XYWP3T8m/GeOtc7qFvpMx8ZSeDBb/ANkQabBPJ9iwIPtcTmQbNvy52qM49qS8/wCrf1+Q/Ty/H+vzPYLm6t7K2e4vJ47eCMZeWVwqqPcngVL16V5HrGsz6oZYp7t5tP8AE11brp0ZbKqsVykb7fZkw/uMmu11/QvFWoan52heMf7GtfLC/Zv7LiuPm5y25jnnjj2o1tcWly54n8T2/hmzgd7aa9u7uUQWlnbgGSeQ84GegHUntUOga/rF8bgeJPDcmg+UnmLI95HPG698sv3SOuD2rD8ZXK6B4q8Ja3rEm6wtTPbXN2UwsTyRgK5A6AlSPbNbl14k0XWdH1SDSNVs7+SOykdxazLLtG0jkqSBUyfLFy33/D+rjSu0tjTXXNJe8gtE1Oza5uEEkMIuELyoRkMq5yRjuKW+1rS9Mmih1LUrO0lmOIkuJ1jaT/dBPP4VxPhP4f8Ah6+8C+H7prMRX5itb036YNwZAFfHmMCdvGNvTHAxXH60Lmbxt4jTUW8ECQ3O1P8AhJ2kWYQ7Bs8s9AuO685zmrkuWXL6kx1Vz264uYLS3e4u5o4IYxl5JXCqo9STwKwND8Vw674s1Ow066srywtLaCSOe1kEmXcuGBYEjjaOPeuJuLe3stJ8B2HjC/sLzRlEwnuBNvtJZFT9xl2wGXGcZ4OKLG40+TUPHUngCGGJF0iIW5sYRGkkoEwLR7QA3PGR1IpP3bvtf8BrVLzt+Z6bb61pd3qEtja6lZz3cP8ArbeOdWkT6qDkfjTbvXtHsBKb7VbG2ELiOTzrlE2MRkKcngkc49K8T8O2Ul5caB/Z998PLOWG4hkSSxnkjv3AI3Id3LMwyCG65rtNL8MaNrnxL8YXOs6dBfvC9vHGtygdUDQgkhTxngc9eKbVvx/C3+Yk0dR4q8Y6X4V0OTULq5tnk8oyW9s1wqNc4x9zPXqOgNXtM8Q6NrJddJ1axvnjUNIttcpIUHqdpOK8uGl2mo/s4Lc3djBdXNnZTfZ5ZYVd4VEh+6xGV4UdPSu98MS+C2jll8Kf2GrmENcf2eIlYJ/thOQPrQ9G12G72X9dhui6tLq3jDUJLLxJpOpaOtughs7OVJJYZM/Mzlex+v4DHOzqGt6VpDRjVdTs7EycILm4SPf9NxGa4PQtV8H6d8ULwaLf6Ha2txpsKILSaFElm81/lG04LY28delZfjjVrS68aajaLYeD4prGGJJbnxOxLTBlLAQqOcDPUdzU30Xz/Njt7z+X5I9K1t9ak0jf4UbTmvWZSjX5cwlO5+TnPpVTwRrV94g8J2+oaslul40k0cq2wYR5SVk43En+HvWJ8OtXsNL+FOjXOr6haWcBDxrLPMI48+Y+FUuR2HA64FHwv1nS7nwcLSDUrWW4imupZIYp1aRENw5DFQcgEEEH3FN+62hLWKf9dTrI9b0qXU202LU7N75M7rVbhTKv1TOf0qxcXltaGIXdxDAZpBFF5rhfMc9FGep9hXj+iS+HvD2q6THZv4Z8RRzXiR293aFE1OJnY4ZwMmQDOCcqcdRXo3in/hGt+k/8JT5OftyfYPM3f8fHO37v9ePWn0XqHVnQVHcXMFpbSXF3NHBBEpeSWVgqoo6kk8AVJUdxbwXdtJb3cMc8EqlJIpVDK6nqCDwRSA5nSPiN4c1S7vYDq+m27W92baHffR5uRtUh0GeQSxAxnkVv3Oq6fZed9sv7a38iMSy+bMq+WhJAZsngEgjJ9K848NWngfTvE3iGx1i10G1vYtXzaRXUUKOqGOMp5e4dM5wF7n3rWvtA0zXfi9ONYtEvIrfSIXSCYboyxlkGWQ8MQM4z0yaFqo+a/S43pzeX+djsV1fTWtra5XULUwXTiO3lEy7ZmPRVOcMTg8D0qU3lsL4WRuIhdGMyiDeN5QHG7b1xk4zXnnivQ9N8H6RozWjG306PxLDeS7yBHbK24ELgAKgJHHbNPt9fsNd+MUjeH7yK9NvoEsfmwtujMnmoQAw4PUdPWjT8/wAI3/4AW/r52/4J3P8AbWlnVP7NGpWf2/Gfsvnr5v8A3xnP6Vdr5y020u9S0GCH7d4AsdQaQO1zeTyRanHOHySzNzv3fUenFfRi7tg343Y5x607aE31FooopDCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKo2n/IY1D/tn/6DV6qNp/yGNQ/7Z/8AoNAF6iiigAooooAo/wDMw/8Abr/7PV6qP/Mw/wDbr/7PV6gCGK0toJ5poLeKOW4YNNIiANIQMAsR1IHHNCWdrHdy3SW0K3EyhZZhGA7gdAW6kDJxn1oS9tZLySzjuYXuYlDyQLIC6KehK9QDiiG9tbm4ngt7mGWa3YLNGkgZoiRkBgOhxzzQBXstD0nTbmS407S7K0nl/wBZLBbojP8AUgZNF5oek6hdx3V/pdldXEX+rmmt0d0+jEZFXqyo/FXh6a++xQ69pkl1vKeQt5GZNw4I25zn2oAuX2nWWqWxt9Ts7e8gJyYriJZFz9CCKjstF0vTbSS107TbO0t5STJDBAqI5IwcqBg8cVdooAo6domlaRv/ALJ0yzsfM5f7NbrHu+u0DNNbQNHfUxqT6TYtfA5F0bZDKD/v4z+taFFABRRRQBn2mg6PYXr3ljpVjbXMmd88NsiO31YDJp1xoek3eoR391plnNeRY8u4kt0aRMejEZFXqKAIWs7Z7xLt7eJrmNCiTFAXVTjIDdQDgce1ENnbW8081vbxRS3DBpnRArSkDALEdTgAc1NRQBnnQNHOqjUzpNib8HIu/syeaDjGd+M9PercNrb28kz28EUTzv5krIgUyNgDcxHU4AGT6VDd6nZ2N3Z211NsmvpDFbrtJ3sFLEZAwOFJ5xVugCve2FnqVq1tqNpBdwN96KeMOp+oPFMTStPj0w6dHYWyWLKUNqsKiIqeo2Yxg+mKh1LxDoujzJFq+r2FhI67kS6uUiLD1AYjIpdN1/RtZkdNI1axv3jGXW1uUlKj1IUnFG4EFr4R8N2N1Hc2Ph/S7a4jOUlhso0dD6ggZFa9ZGk+JLPWdX1bTrWK5SbSpVinaWLarFhkbT3H5fkQa16OgdSFbS2S8e7W3iW5kQRvMEG9lBJClupAyePeo7nStPvZXkvLC2uJHhMDtLCrFoyclCSOVJ7dKtUUAZFr4R8N2N1Hc2Ph/S7a4jOUlhso0dD6ggZFF34S8OX93JdX3h/S7m4kOXmmso3dz7kjJrXooApyaRpsulrpsun2r2KqFW1aBTEAOg2Yxj8KdBplhbaebC2sbaGzKlDbRwqsZU9RtAxg1Jd3ltYWr3N/cQ20EYy8szhFX6k8Cksr601K1W5066hu7d/uywSB0b6EcUbhsRf2Rpvl2kf9nWmyyIa1XyFxbkDAKDHy/hirlFFADJoIrmB4biJJYnG145FDKw9CD1qpZaJpWmW8tvpumWdpDN/rI4LdI1f6gDBq9RQBHBBDa28cFtEkMMShI441CqigYAAHAA9KqaloOj6wyNq+lWN+yDCG6tkl2/TcDir9FG4FOTR9Mm0tdNm060ksFAVbVoFMQA6AJjHH0qS30+ys332lpBA/lrFuiiVTsXO1eB0GTgdsmrFFAGX/AMIxoH9oi/8A7D037aH8wXP2SPzA397djOfer0VnbQXE88FvFHNcEGaREAaUgYBYjk4HHNTUUeQEFtZWtlZraWdtDb2yghYYowqAHk4UcdzVax8P6NpjzPpukWNo042ytb2yRmQejYHP41oUUAYsXgvwvBMksPhvSI5I2DI6WEQKkcgg7eDV270XSr+8iu77TLO5uYf9VNNbq7x/RiMj8Ku0UAULjQdIu9PWxu9Ksp7RH8xbeW3Ro1bn5gpGM8nn3NN07w7omjzNNpOj2FjK67We1tUiZh1wSoHFaNFAGfbaBo9lfPe2ek2NvdyZ33EVsiyNnrlgMmrVzZWt4Yjd20M5hkEsXmxhvLcdGGehHqKmooAKKKKAM+90DR9RvI7vUNJsbu5jxsmntkd0xyMMRkVbFrbreNdiCIXLII2mCDeVByFLdcZJOPepaKAIrm1t722e2vII7iCQbXilQMrD0IPBqC00jTbAxGx0+1tjDGYozDAqbEJBKjA4BIBx7VcooAy7rwxoF9e/bL3Q9NubokHz5rSN3yOnzEZrUoooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKo2n/IY1D/tn/6DV6qNp/yGNQ/7Z/8AoNAF6iiigAooooAo/wDMw/8Abr/7PV6qP/Mw/wDbr/7PV6gDz74oXL+G1sfFOkMg1iBjapAVLfbInBJQgcnaRvHpg+tbPhWC10HwGl9aPLqzzQtfTz2yb5byVhuYqOMk9APYCrjeG/tHjNdev7oXC29v5Nla+Vhbct/rHzk7mbgZwMDjmjw14cPhoX1tbXfmadNOZrW1MePsu7lkDZ5XdyBgYyetEdmv69PnuN7p/wBf0tiDw54w/wCEivZbf/hHdf0ry49/m6nY+SjcgYB3HJ56V5VYxafqmg6xpMPgG81XVri9vEi1QWKLEGMrbT9oJyNv9MV7xWP4Z0H/AIRzSpLP7T9p8y6muN/l7MeZIX24yemcZ70rJv5fqhXaXz/RnNalceKNNvfC/h7Sb63NzcWEqXVxcpvUNGsYMuOrEZbAyAS3PSkm1Txf4V0HUk1ia31e6+0QW+l3zRLCszTEL88aH5QjH8RXU3mifa/FGm6x9o2fYYZovJ2Z3+Zt5znjG30Oc07xDoVt4k0OfTL1pI0lwyyxNteJ1IZXU9iCAabd9X8/v/yBJKy7HKx3Hi3wtr2kr4h1231uw1W6+yMq2S27W0jKWUqVPzLlcHPNNt7jxh4uvLy/0PXbXRdNtbuS2t7drFbhrny22s0jEjaCwONvar+leCtSTWLXUPFHie411rBmazhNqlukTEbdzBfvsATgnpk1FP4F1W21S6m8NeLLrRrG9mae4shaxzDe33jGzcpnrxnmjr/Xl/we4f1+f/AM34h+OX0LV7LRf7eg8PNNbG5m1BrFro/e2qiIARyQxJPYVJ4T8b6jrvg/XpdNmh13UNLytrcR27QreZTcpMZwQc5BA64461v+IfCt1qd3b6jomtz6NqlvEYBdLCsyyRkg7XRuG5GQe2TT9P0PXY/D93Y6x4plvryZiYb+Gzjt2gGBgBVyDyCeeucUvsv+uv8Al6D6r+v619TC8CazqN/q0sd/4vt9WYxFpdNm037Fc2rZH8OclRkgkj05qjrviDxBD4uure48S2/hm3hlC2UN5pm+3vl2g5a4JwpJJGAQRW9o3g3U4Nft9X8S+JZdbubNHS1AsorZYw4w2dnLcDucVFrfgrXNZubuA+MbmLRrwsJtPNjDIwVuqrKwyo9ODiq6p/1/X3iWzv8A1/XyM/4jeOG0HUrDSE1yHQPtMDXEmovZtdFQCAqJGAQSTnk8ACqWhfEyWXwZr159sg1ufSZI4re8S3a3W6MuAhZDgqQxIOOw4rqda8Hy3n2G40DWJ9F1Cxg+zRXKRrMGi4+R0bhvug/Wmx+E9Rv/AArqGjeLfED6ybz7lwlmls0IGCMBcgkMN2TS6P8Arr/l6B1X9f1qc3caV4nsvG3hSfxJ4ji1OOW9k22sVikKwP8AZ5M4cHcw6jmuj1rx1/Yury2H/CLeJdQ8vb/pNhp3mwtkA8NuGcZwfcGqdh4C1Jdb0zVtd8U3Or3Wmys0Qe3WKPYUZdoRTjd8wJc5J24rtqfYOvyOX8eaLpWo+EdWvL/TLO5uoNOnMM09uryRYRiNrEZGDzx3pfDXh+xs/B9s+hWlnpV9d6dGDeQWibg5jGGYYG/BOcHrW1rOn/2voV/p3m+T9stpIPM27tm5SucZGcZ6ZqJdNubfwummWF99muorRYIrzyQ+xgu0PsJwemcE0tk/l+odY/P9LGB4JuddTW/EGk+IdZ/th9PkgEVx9lSDh495G1Pr3J6VyFl4l8dahd6SsOrWkUesXN3ZQB7RWMQiZiZzjGWAVgE4HAznJrptB8EeJ9I8Sy6rd+Nvtq3UiPewf2TFH9oCLtUbgx24HoKt6d4E/s+XQX/tHzP7HubufHkY87z9/H3vl27+vOcdqHq0wWif9d/1t/wxyOofEm+tfCnh+K/1u30i81COY3OqtZGfb5T7PliUY3MeeeBg+1dD8NfGb+JW1Oxk1WLWv7PMZTUYrVrbzlcHhoz0YFT04IxU/wDwr6aDRdNh0vXZrDVNN84QahFArArK5ZkaNiQw6d+ozW34b0vXdMhnXxD4i/tx3YGJ/sKW3lDuMIec+9Ndb/1/XyE+liTR7fXIb/VG1q9t7m1luN1gkMe1oYsfdY45Ofr9ecDWrJ0fSLzTb/VJ7vV7jUI72486GGYfLarjGxeen5fTOSdal0Q+rPNfiLqNhH420Ky12wuNUshbTXEOnQQGY3VxlVUFOhwpY88Uz4exX2nePtZs59Ht9DtryzivU022l3rAdxTJwNoZgMkLxwK63xR4XfXns7zTtTm0nVbBmNtexRiTaGGGVkPDKcDj2FHhjwu+hSXd7qOpzavqt8V+03ssYj3Kowqqi8KoyeB3Johpv5/j/X4BLXby/r+u50FFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABVG0/5DGof9s//QavVRtP+QxqH/bP/wBBoAvUUUUAFFFFAFH/AJmH/t1/9nq9VH/mYf8At1/9nq9QAUVwOrN4q1j4iX2laF4nGjWtnZQT7Dp8Vx5jOzg8tgj7o71e8O+LLxbHWrfxUsf2/QZAlw9nGzCdGXcjqnJyR29aFqr/ANb2B72/rudhRXLaL4+sdZ1Q6dJpesaXdtG0sMWpWRhNwq9SnJzjI44rmbP4rXb+J9Til8K+KJbWOKAw2selgzQk7tzON2QG4xz/AAmgD0+iuf13xjZaDb2nnWeoXd5eJvh0+ytjLcMoA3EoOgGRnJq34f8AEVl4k09rmxE0TRSGKa3uYjHLA4AJV1PQ4IoA1aKydB8R2fiJb42MdxH9hu3tJfPj2ZdOpHqP84rWoAKK5V/Ep0zxb4gTWbwRaXYWFtdJlB+6DGQOeBubJUevtSyeJls/E+stf3qR6Pp+m29yTtBCs7S5bIGTkKoA59utA/6/L/M6miuX0Lx7p+t6ounvp2raXcSqzW66nZmAXKrySh5B45xwcVkeMviJa2um61p+k2Ws3txb28sMl7p1qzQ2kuw/ekyNpXIJIzilJ2QRV3Y7+is/w/LJN4Z0yWZ2kkeziZ3c5LEoMknua0KuS5W0RF80UwoorhNT1bxbaeN9GjupbO00m81F7ZLaFPMkmjEbsHd2+7naDtUfU1PVIro2d3RXG+P9b1LSm0y3stTh0O1vJHS41ee385bYgDYuD8o3HPLccUvgHVtW1FtTg1HU4dcs7WRFtdXhtxCtySDvUAfKdpwMrxz7ULUHodjRRXCeKfE2p6f4ieXT7ny9L0b7O2px+WreaJpMEZIyuxPn4I680dUg6Nnd0Vz3iTxrpfha6s7fUkunkvVc2620XmGRl2/IADksdwxgeuSKi0zx3pup6JqmoC1v7R9KjaS7sruDyriMBSw+UnHIHHNHS47O6Xc6aiuOs/idol9qdnbQW+pfZr11ih1FrQi1aU9IxJnls8cZGe9djTsTcKKyPENprt9axQeHdUt9LdmPm3Mtt57KuONikhc59a5fTPFuq6NoPik+JJotTm8PPtW7hiEQusoGVSo4VskA46Zqb7+RVtV5nf0V5ZceJ/EfhLW9IfxN4l02+OqTxxT6PHbLG9or8B0YEswU9261seJtX8Wad4k0tlls7PR59Wgs1jjTzJrlHBLMzNwg4xgDPvVWu0vO39feTfRvyv8A19x3dFcl8QNb1HRtPsf7Pu49MhurnybnVJbfzls12khivTlsLk8DPNVvAmr6ve6lqNne61b+I7C3RGi1aC2WFWkJO6P5SVbAAOV6Z5pLUb0O2oorzbWdf8QahNq+pad4lsPDmkaRctaIbq2WX7XKgG4MzH5Ru+Ubck80r2HY9JorjdK1nWvG/gHTNS8P31rpNzd5FzM9uZvK25VvLUkAncON3Y1J4L1LW21bW9D8Q3kOpS6W8Wy/ihEXmiRS21lHAYY7eoqrNNp9Cb6XOuorJ07xHZ6nr+qaRbx3C3GlmMTNJHhG3rkbT3/SsnxPY+L5Zri70XxHZ6VZ20XmJC1iJTMQMkSOx+UZHVR0qW7K/QpK7sdZRXDTeNtQfwPoN7bxWtvqutooU3TFYIPkLvI3OdoVSQM9xWl4LN/NFd3F74xtPE8TsojNpbxRpbkZ3DKMd2cjr0x71VtWuxN9E+509FZNn4js73xPqGhRR3C3WnxxySu8WI2DjI2t3/zjODXPeNrvVrK9SaDxvpvhy3EeYbW4tY5ZLph1++wPcDCgnmpvbUryO3orm4ZfEus+CbCW3kt9I1e5iRrhpoDIIcj5tqEj5umA3TvVLwlf6/b+KNU8O+IdRh1c2cENxHfR24gbDlhsdV4B+XIx2/Sra2Jvpc7GiivPtX13XNZ1fVodH12y8M6Po0iwXGp3MKStJMQCVAchVUbgMnnJqetij0GivNtT8T61p2laFNba/Y6sPPmlvLqyiQpdW8Q3OOMhWC5ztPUVeudb1vUPiE2m6bqQs9Nms7iC3cW6SYuEWNjLzyQPNA25xlTT62X9af0vUS1/r+vU7uivL7ew8fTeL7zQ/wDhYOPstpFc+d/YsHzb2ddu3tjZ1z3r09AQihm3MBycYyaOlw62FooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/yGNQ/wC2f/oNXqo2n/IY1D/tn/6DQBeooooAKKKKAKP/ADMP/br/AOz1eqj/AMzD/wBuv/s9XqAPO9T1i78NfFDUr3/hHdb1SC80+3ijk06zMqBlZyQzEgD7wqBtP8WW/hjxL4gtrR7TXdXnjeO0hZZJYIE2pgdjJs3HHrjvxXpdFK2lv63uPrf+trHj/hLTdRk+IWj6iLfxi9lHFcK8viSQN5bFB91B9wH1PXgDpXRanqd94S+IGp6k/h7V9WsdTtbdY5NLtxO0bx7wQy5GPvA5rvqKb1t5ErS/n/X6HmHxA0e+uPENh4hhTxOtm1h9nlj8PyiO6ibdvG5D94HOCB0Kitn4aWFvb2Go3UEfiZJbq4Xzj4kUCdyqABhjquMDJ9Pau2ooWl1/W9xvXV/10MnQdYu9XW+N7pFxphtrt4IxOf8AXovSReBwfy9zWtRRQB574h0m8v8A4oQ2v9nTTaXqFlALu58s+Uohlkk2M2MZJ2jHoTWBH4Z13V/DPiOwks7yC7thZ2tu7fuWultnJDRuf7y4w3Tca9hopWsrf1uN6u55F4S06G58Zac93F8RjPaM8kb66Q9ojbCDlsdwSAR1qVpte0rwzrvhC38L6hd3c73jRX6oPszxSlm3lxyXw2NgBJIAr1iih6qwJ2dzmp9Vm8L/AAzj1JrGS5lsNOjd7Ut5bHag3AkjjHOeM8dK19F1Nda0Kx1NImhW8t0nEb9VDKDg/nUGt+GdH8R/Zv7csI71bWTzIklJ2hsY5XOG+hyK1FVUUKgCqowABgAVbd22+pCXKkl0FrzHxl4nuX8W6OLfwn4luY9G1B5ZpoNNLpMvlsmY2B+blh1xxXp1FR1TK6WPOvGMt3qn/CP6rdeH9W1HQNjy3mkxwjz/ADCB5fmQ5+YDnK5wD1qz8ObC5ttQ1m5tdJvdE0G6aN7LTr4bXjfB8xhHk+WpOOK7yimtAeoE4BPp6CvKbXwV4s8RaZq14/iVtGg16aWSfTZtJSRwh+RVZnIYHYq8cYr1aila47tHkE+vX2mX/gS+1jRdUur63tby3mtLa1LzsyqqbwhxkHG7Poa2UtNU1rTfGWvTaRc2H9p6Z9ls7KZP9IcJHJ8zIM4JL4C9eK7S70O2vPEGnaxK8ouNPSVIlUjYwkADbhjPbjBFaVOXvLXz/FsI+61bpb8DI0XToG8K6RbX1nGTb28DCKaIfupFUYOCOGB/EGteiinJ3bZEVypI5H4g+ItX0PTraHQdK1C9nvHKPcWVobg2qDGW2dC3PygkDg56YOLZQQ+J/AOseGtJ0LXdHka3LC41m18o3EzHdvL5O5iwyT716RRU2umn1Lvqmuh43pGiNqMFpodl4O1TS7xrqGfWdW1Nd3mCNw7BJiSZNzKMYwOc4rY+IPiG5k1jTbG08L+Irv8AsrVYLuW4ttPLxSoqkkIwPJ+YDnAyDzXplFVd3X3/AJf5E2tf7vz/AMzzzxhcX2vaPoWpDQdXn0Xz3k1PSPK2XUigEIGj3fMu4ZK55yKX4f2UyeJtUv8AS9Dv/D+gXEKbLC+QRE3GTudIgTsG3A7Z49K9CooWjuhvVWCvH5tDXwz421S61LwhqviR7i6e50mWBfOt4TJyyspO2M7/AOIg8YI6c+wUVPW4+ljze5uNf8B/DjT7Ow0u61DVrqV2uHsrY3AtWkYu7bR97G7ABIBI61q+ANUtpYZdPtfD/iHTmUGee71mz8o3UhPzMWydzH07AccDFdnRTW7YnsZOnaxd3uv6pp9xpFxaW9kYxDeSH5LrcuTt47dO/wCHSuK8a+Ir+bxI+iXXhvxFc6DCqtcPplg0v25iAfL35AEYzzjJbkcDOfS6KXYfc848T26eJdG8P69/wil9c2mm3LmfRbq2CTmIqUyIicHBCkL3FT+CNOWXxbe63pnhqfw1pclmtv8AZriBbd55Q5O8xKcLgcZ75r0CiqWjv/XYl6q39b3Mmz1e7ufE+oaZLpFxBa2scbxX7n93cFhyq8dR9T744zzni/U9Ln1b+zNT8Bap4gkjTEVymmpLCNwyQsrEbe2TxjFdzRU2uUefG78Q+BvhXYQwaVdanqwPlLBbo1ybZWZmXdjlgi4XqASAMjrU/gDVoZJpbEaB4ktbuYG4u9S1iw8kXMnA5bccH0UcADA6V3VFVfVt9SeiQV5tei58Kazrtvqfha88RaDrNyLxPsVstyVkKqGSSInplQQen9PSaKnrco8u8J6HdpdaDHdaNcWdmz6pKYJIdqwJK48tWC8KSpI2/wCFbieG/wCwvEvhK30xLqazs0vUmncFzl1DbpGAxywPXqa7Wintt/X9XEczZ2lwvxR1W7aCUW0ml20aTFDsZhJKSoboSARx7iumooo6WDrcKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqjaf8hjUP+2f/AKDV6qNp/wAhjUP+2f8A6DQBeooooAKKKKAKP/Mw/wDbr/7PV6qP/Mw/9uv/ALPV6gDMstdtb7XtR0hEljutPEbSeYAA6uMqy4JyOCOccinWmt217ruoaVAkpl09YzNIQPLy4JCg5znAyeO4rnPEUkfh/wCIeja7Iwjtb6GTTbtz0BAMkRP4q4/Gjwlotvrvgm7m1u3Mq+I5pLy4iLFSY3P7tcggjCKlCu1f+r9PvWoPR/1t1/HQ3dAuNduBf/8ACRWVvaFLt0tPIk3eZAPus3JwT+H0Fa9cR8NNLs9FTxJp2mQ+TaW+tSJFHuLbR5UXGSST+Ned+MGg1GHWPEuj+F76byJZRH4gn1zyWhkRsfu4d3KgjAXGT9aTaVvRP8EOz19T3uisDXrDT9c8Dy2viC8a0s7iBDPcCYRbOhzuPA59eK27eNIbWKKJiyIgVWZtxIA4JPf61TVm0SndJklcxb/EDQ73xVDoNg891cStInnxRHyEeMZZS5wCQP7uevOK6euM1+KOH4meDUhRY1xfnaowMmNST+dJbj6HZ1V1PVLLRtNm1DVLlLa1gG6SVzwvOP58YqS7vLawtXub64itreMZeWZwiL9SeBTmWG6gG4RzRPhhkBlbuD/I0egepj+GfFth4rjvH02K6jWzmELG5h8suSoYMAecEEdQD7VuVx/gz/kZ/GX/AGFV/wDREddhR0T8l+QdX6sKK5LxFF/ZPjbQ/ECfLHOTpd4f9mQ5iJ+kgA/4HXO3t5e2/gXxZ4wsNwvNSl22siuFKWyMIkYE8Dje+f8AazSvpf8Ar+tbjtrb+v60Z6fRXj3hXw/runeJ9LvtK8GXGi28kudQuz4gS8W6iKnJZM8nJDAj8qyfEem2/ibWPEkV74d1rX9Ua7lt9M1C0ZvstsAAFQksFXa2d2QQTmm+39dP8xLX+v67Hu9FeeLpUHh/xl4D02JEhSCyvIwocld+xCwBYknnJqlJdQXl78UpLSZJoxZIhaNsjctqwIz7EEUS0Ta8/wAHYcE5NJ6bfieoUV55ofw7tZLPQdfh1G8XW41gnlvpZWcyx7QWh2bgqoQcDA4969DqpKzsRF3SaCiiipKCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/yGNQ/wC2f/oNXqo2n/IY1D/tn/6DQBeooooAKKKKAKP/ADMP/br/AOz1eqj/AMzD/wBuv/s9XqAM7XdA0zxLpbadrdqLq0dlYxl2TkHIOVII/OjU9B03WNBfRtRtRLp7oqNAHZBtUgqMqQRjA71o0UeQdbnK6H8M/CXhzVo9S0XSfs13ECEk+0yvgEYPDMR0PpSXPwv8GXmpXN9c6DbvcXQbzW3OAS3Uhc4U+4AOea6uigChqeiadrGiyaTqdstxYyKqNCzEZAII5Bz2HerkMUdvAkMKBI41Coo6KAMAU+igAri7v4Q+B769nu7rRPMnuJGlkf7XONzMck4D4HJrtKKAMu+8N6TqXh0aFfWazaaI0jEDO3Cpjb82c8YHOc1Je6Dpuo6A2iXdqH05olhMAZlGxcYGQQR0HetCih63v1BabHI6T8LfB2hatBqWlaP5F3bsWik+1TNtOCOjOQeCeorrqKZNNFbQST3EiRRRqXeR2CqigZJJPQD1ovoFtSvqml2es6bLYalD51tNjem4qeCCCCpBBBAOQadFp1nDpaabHbx/YkhECwMNy+WBjaQeoxxzU8UqTRJLC6yRuoZHQ5DA9CD3FOot0C/U5XS/hl4Q0XW4tW0vR1tr2Ji0cizy4UkEHCltvQntXn+pfD/UZdb1F9Q8A2utz3d3JMmqR6ybVVVj8uYhg8DGcDk5PPWvaqKQ7nJW3gSy1HwRpmieM0XWJbOMbpWdwQ/s4IbAHHuBzWlZeDtA06yvbOw0yK2t76EQXEcTMokQKVxweDhjyOTnrW3RVPVvzEtLeRFbW8VnaQ21uuyGFFjjXJOFAwBk+wqWiiluC00QUVS1LWdM0aNJNX1G0sEkO1Gup1iDH0BYjNWYJ4bq3jntpUmhlUPHJGwZXUjIII4IPrQBJRRRQAUVFLd28E8ME08UctwSsMbuA0hAyQo74Azx2qWgAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKo2n/IY1D/ALZ/+g1eqjaf8hjUP+2f/oNAF6iiigAooooAo/8AMw/9uv8A7PV6qP8AzMP/AG6/+z1eoA4D4g3TeC7uLxtYqjMqi0vrUvs+1Ic+WR/tK3/jpPpWr4YtIfDfhS41nWbpJbq7U6hqN4gLqcrnC4ySqrgADsPepb7w1PrXjKG/1k28uk2EJFnaAli8zDDySAjHC8KOepPFSeEdDv8Aw5a3WlzzxT6bDMTprB2MkcR58twRj5TwCCcj0xRHZ/18vv1B7r+v6stBvhzx/wCGfFl7LaeH9S+1zxR+Y6eRImFyBnLKB1Irxq2TwQ9pq423zeNPtt39mGn/AGjzt/mt5eNvyemfavoisHwfodz4f0Wa0vXieR7y4uAYiSNskjMByBzg80re98v1QXsvn+jMa513xTH/AGZ4f0e1sbjX/wCz47m/uL92WCH+E8JyxZg3A6YqCDxxrMMq2Gs2Nnb6la6pbWl95LM8Twzg7JIySCMtgc56H8NPxHoGvHxBFr/hC8sYr/7N9lnt9RRzDNHu3Kcp8wYEn65rNm8Ea1ceH9Wnur+zm8R6jPb3AlCMlvCYWVo0HVtoweepzTvrzP8ArXp8gt0X9adfmaN542SdY00RA8y62mlzC5Qgdcuy4PI2hsH26Vy998Vb8TXWoafP4ZGlWkjqbK61HZf3AQkFkXOFzg4UjJ49a24PA19a+JdBvIbq3NlZxI18jZ3zTpHIqyLxjkytnOOgrFuPhvrOnXU8eh6X4L1KzkleWOTWtPY3CbmLbSyA7gM4BPOKWq/H9F/m/mPR/wBev/AR0WueLdUh1LQ7Xw3p8N+dYtZZo/OcoI8BCrs3ZQGJIAJPAFQDxjrmg+H9ZufGemW0d1pzRrDLZsyW135mAoV5OmGOGJ6da2ZdBnfxPoeoxC2it9OtJoJIo8rguEChBjG0bT6dqn8V+H4/FHhu50qWQRebtZHaMOFdWDKSp4YZAyO4zTlotP61/wAhR6XOT8OfEDULjxLaaXrd34avV1AuIH0O+MzQsqltsik9wD8w4z9aq+Jtf8V+IPDevz+HrPSYtBgiubeSW+kkM86orLI0YXgchgN3XFXvDHhHXNM8QwXGpaH4IhtYt3+kaZYvHdA7SAQSMD39s1Dc+CfFiWWqaDper6db6BevPIjNE32pPNJYxZ+6EySN2CcGlNXXyZUHaV/Nf1+RtjxZovhLwTolz4gvfskM1rDHG3lPJlvLBxhQT0FZvjLxBpnib4N65qOiXP2q0a3ZBJ5bJkhhkYYA12OkWklholjZzFWkt7eOJyh4JVQDj24qh4y0a48Q+DdS0myeJLi7hMcbTEhAcjqQCf0p1ve5vO5FH3VG/Sx5n4Qh0Oy8caKvh7RdZ8KmQSfaF1QSxpqA8s4RAzMrEH5uo4HGa7yy8XSw6T4hm1yOKK60OaVZEhBAkj274mAJJ+ZSB165qlY+HfFuq6lpkvjK70dLXS5xcQwaVHKTLIFKqXaToBknAHNZuoLY+JvidbQaBfwXlo8CPrYt2DoBDJuhBYcbixII64BpvV273+XW/wDwAWiv2t/w3/BOvF14g/4QkXS2lrLr7WnmC2yUi80jOzls4HTr+IrT097uTTbZ9SiSG8aJTPHG25UfHzAHuM1FrMWoz6LdxaJcRW2oPERbzTLuVH7EjB/kfoal09LuPTbZNSljmvFiUTyRrtV3x8xA7DNG7f8AXf8Ar7g6IsV4bqlh4ZuvHPiV/EHgrX9fnF+AlxpkMroi+UnykrIoznJ6dxXuVYmgaNcaVqWu3Fw8TJqN99piCEkqvlouGyBzlT0zSS96/l+qK6fP/Mi13RNJvPB0kN1pdvNDa2TG2juoRIYcR4GN2cEADnrTfB7yxfDPRZLeMSyrpULJGW2h2EQwM9snvR4vtvFF5YrbeFDpAWZJI7o6l5uQCABs2d+Wzn2rG0vwv4on+Hd54Y8QXelwf6EtnZz6d5pIULtzJvxnoOmO9K7tN97fr/mgSS5V/XQp6R491n/hLLHTNZufDF5FfytCsejXrSz2zBSw8wHqPlxkY5q1rXi/xAfGdxoegLoVu1qI28vV55I5bwMucwhRjA5GeeRWZonw61u113Rr+9tvC9iumz7mXSbNo5Jk8tly0hGSckfL0754Fa/i3w54q166ns4v+Eau9Hm+5/aVrI09tlcHZtOCc5IPBpsS31F8ZanBpniLwhqOrulnDDNcyTlmyI/9GfIz354461u+HL/WNVhmv9TtI7G0mYGytmQ+esf96U5wCeu0DgdST0zbvwY90vhi2uZo7600lJIrs3Wd1wrQGLpg5JJycnp3NX/DOk6noQuNOuLmO60qIj+z5HdjPGn/ADyfIwQvZs5xwRT05n/X9f8ADhrZf13/AK/pm9RRRSAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKo2n/ACGNQ/7Z/wDoNXqo2n/IY1D/ALZ/+g0AXqKKKACiiigCj/zMP/br/wCz1eqj/wAzD/26/wDs9XqACiuU8R+JdWi12Hw94Tsba71WSA3Mst47LBbR5wC23kknIAHpWhpN/q9potxceNhptnJbEs89pM3kMmAd3z4K9xg+lHS4dbG3RXPaB498MeKLyS00LV4rq4jBJi2MjEDqQGA3D3Gaqz/E7wba3MVvca7BHLJI0QVkf5WVip3cfKMg8tgHr0oA6uiuJ8afE3RvCOoWlhPdxi7kmiaeN4ZG8u3Ync4KjBIx0yT7VtaJ4z8P+ItLudS0jUUms7QkTzOjxLHgbjneBxjnNG6uHWxuUVz+geO/DXii8ltdC1aG6uIgS0W1kYgdSAwG4e4yKqT/ABO8G2tzFb3GuwRyySNEFZH+VlYqd3HyjIPLYB69KAOrorifGnxN0bwjqFpYT3cYu5JomnjeGRvLt2J3OCowSMdMk+1b3hzxXovi2zluvD979rhhk8t28p0w2M4wwB6Ghaq6B6GxRRWJoetXGp61r9nOkSx6bdpBCUBBZTEj5bJ5OWPTHFHWwG3RWVr/AIm0fwtYrea/fx2cLNtUsCxY+gVQSfwFRQ+L9BufDUviC31KOXS4QTJOis2zHUFQNwPI4xmgDaqtY6ZY6ZG8em2VvZo7F2W3iWMMx6kgDk+9ZGmePPDGs64+j6XrEFzfICTEm7DY67WxtbHsTVfXfiT4S8N6k1hrOsxwXSgFokiklKZ9dinB9jQG51FFcD4l+Lnh7R9Jsrixv45pb3ypYVkt5cNAZdjv90YwA5weeOlS6l8Q9M1fwHr+p+DdT864062L+Z9nZfLYgleJFAPQ9jSeib7AtWl3O5ormtG8e+HNW1OPRrbWILjVBGC8Sg/MwXLANjaSOeAex9K1bvXdNsdYstKu7tIr2/Dm2hIOZNoy3OMD8etU1Z2EndXNCiiobySeGxnks4BcXCRlooS+wSNjhd3bJ70hk1FcRY+I/Fmn+KtO0zxdYaULfVjIttLpsshaFkXftkD9cgdRxUvirWPGekSXmoaZZ6H/AGNZR+Y4vLiRZ5wFydpA2r3AznpQ9NRpXdkdlRWBqV94hvNBsrjwtZWS3d0iyONUd1SBSucEINxOTjtUfg/XtT1iPUbbXLa1ivtNufs8sllIXglO0NlSeRjdgg9KdndrsTdWT7nR0UUUhhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABVG0/5DGof9s/8A0Gr1UbT/AJDGof8AbP8A9BoAvUUUUAFFFFAFH/mYf+3X/wBnq9VH/mYf+3X/ANnq9QB5/rurJ4K+I0uu6xDMNG1Kwjt3vIomkFvLGzEBwoJAIbr6ik8Ua1aeMfAjX+hW9zqWn2t/byzx/Z3X7VCjqzhFYAsMe3Y16DRQtF6f53H1v/W1jzb/AISDSPHHjDw63hNJbg6XcPLdXn2V4lt4vLZfKJYDliRwPSs6ysrWP4K+MJ0t4xLPLqLSvtGXKyOFJPtgY9K9aopNXTXdP8bf5Anqn2/S/wDmcJ4uma18EeH9SaKWaGwu7O6ufKQuyxr95sDk4zmq/inXLLx/8M9UbwZdyXvkyxCXy7Vi2FdXYCNwN/y87eh6V6HRTlq35u/5f5Ex0t5K39feeN+FdRtte8daP5/xD/te7sTI0VifD/2RseWQy7wAAAO3I4q1ZWVrH8FfGE6W8Ylnl1FpX2jLlZHCkn2wMeletUUpK6t5Nffb/Ia0af8AXX/M4TxdM1r4I8P6k0Us0Nhd2d1c+UhdljX7zYHJxnNbukeItF8c6Le/8I/qc0kOGt3uIEeGSJivVSygggHIOOtb1FU3dvzd/wAv8hJWtboc34d8G/8ACPag93/wkfiDVN8Rj8nU77zo1yQdwXaPm4xn0JrlbXx74a8JeNvFlr4g1L7JNNfxyIvkSPlfs8YzlVI6ivTqKWt7j0PKPH19N/buh+KLDXpdI0mTT2EWprpf2xYy5VhlGGU3LjnGeMVmRm1u/hb431K08UDxE14FM8y6cbMI6qB93oSRt5A7V7VRSsuVx9fxd/62Hf3lI4TXbO2sdW8BQ2cEcEcV6yRrGoAVfs78D24rzzWPEv2LWPFOgy6vpelWGp6hMt0NQsbia5jDAKWQouwggZUMeARzXv1cJ/wgOu2dzdR6F41uNP026nknktG0+KZg0hy+JG5HJ9OKNeZvvf8AT/IS0ivK34X/AMx/jExS/C+2udHZ9RtbV7O4V4f3jSRRyoxYY6napP51U8SeMtC8XfC/xO/h6++1i2smEuYXj2Eg4+8oz0PSuz0LRbXw9oVppOnhvs9rHsQucs3ckn1JJNaFOa5uZdwh7tn2OA1uytrBvAENlBHBHFqKKixqBtBgfI/Hv610WqavpNp4t0bT72yaXUbsTGzuBbhxDtUF/n6rken41u0U27u/nclKyt5WCqer6pbaJo13qd8WFvaRNLJsXJwBngetXKKl3toWtzynwr8QvDHiLxRbajq2rKdWmJt9O05LeYraK5xgvsw0jcZbOB0HGSZPHV78PNW8QTW+pveTeJrKPybdbCO586Nh8yhNo2E5bOTnrXqVFN62Em0cDrep6HafDvSrH4sTbXvYYxcIVlJeVArHJiGQQcegp/w0hSA6qmirer4Y3xnTFvFcEHafM2b/AJvLztxnvuru6Kd9W+4raJdgooopDCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/yGNQ/7Z/8AoNXqo2n/ACGNQ/7Z/wDoNAF6iiigAooooAo/8zD/ANuv/s9Xqo/8zD/26/8As9XqAMvXvEuj+GLIXevahFZQscKXyWc+iqMk/gKXQfEek+J9O+3aDepeW4YoWUFSrehBAIPI6iubSK3vPjbcf2gFkls9IiexR+dm6RhI6j14UZrR8cX9zpGgA6Q8dpeaheQWguigPlGRwnmEdyB0z7ULZPv/AJ2Drbt/lc6aivPV03UfBXijQxF4k1XV7XVblrW5ttTmExB8tmDxnA2gFeR6GucW18QXfgjW/E0ni3VoZNLuLx7K2hlAjxHI3EuQTIOMAE4AwKV1/Xy/zDy/rr/keuXuo2mnLAb2YRC4mWCLIJ3SMcKvHrVmvMPHugnWk8PatJresWbXl5Zwm3tbvZDGWyfMRccPzw1aeuQ3fw8+H+oz6dqusatdSSxrFLfy/apYi7KnyDAzjOQvc09k797fl/mC1at1V/zO8oryTwjqesW/jCwgtYPHE9lds63x8RWn7qP5SVdHH3PmGMdMGqq2viC78Ea34mk8W6tDJpdxePZW0MoEeI5G4lyCZBxgAnAGBQ7LcNz1y91G005YDezCIXEywRZBO6RjhV49as15h490E60nh7VpNb1iza8vLOE29rd7IYy2T5iLjh+eGrsdI0Ofwtot6tnf6rr1wQ0sSaneh3ZgvEauQAoJHfpnNGyd+jt+Qt2rdV/mb1cPL8ZPAcMzxS67tdGKsPsc/BHX+CtTw7rfifUtQeHX/CP9i2yxFluP7TiuNzZGF2qMjgk59qr69/yU3wl/1yvv/QEos7oZ0WmanaazpdvqOmy+da3KB4pNpXcvrggEfjVquW1u4utI8caJfG5m/s6+DadPCXPlpKfnifb0BJBXPuK57WtQ1KXwL4w8RwX91CsxaPTgkzKIoojs3rg8FmDnI6jFJtWb9f6/UaWqXp/X5npVFecNY6z4Y1rw/qU/ifUdTl1W9S0vLS4YfZyHRjuijA+TaVHc1zOp+I9X1fWNUukHjlJbS7mgsl0SzVrJRGxUbwf9YSRk59cU9v67W/zEtf673/yZ7bRWBbpqfiLwBEtxNPo2p3tkokkRCslvKV5IU4IIPbg/StfT7aWz022tri5ku5YYlR7iQYaUgYLH3PWm1ZtCTukyxVZdRtG1V9NWYG8SETtFg5CEkA56dQfyqzXk48BCf4m31n/wlnieM/2bHcedHqWJTulcbN237gxwOxJpfaS/rYr7Lf8AW56xRXmnj3U73SH0Pw3azeI57eS2d7i40hBNfyiMKo+Y4xktlmxnOPWpvA8mq61p+t6NqH/CTWtiqoLK91eM294u4HcA6/e2kAg9ecHijdNoW1rnotVjqNoNVGmmYfbDCZxFg58sNt3Z6dTivPvCmt6n4p8RQ6XqGoGJdBDNNJbSMn9quHaNZBjGYxtO4cgucdBVO78Ci4+Kj23/AAlXiWEzaa915kWo7XTMwHlqdvEYz936UdV53/INk/K35nq1Ys3imyhtdbufKuHh0UH7Q6KuHYJvZU55IBAOccmi9uU8I+DZJpJ7m++w2+1HuZN8079FDN3ZmIH41iahpL6L8HNVtblg922nXE11J/fmdWZz/wB9E/hipk7JtdP6/r5FQV2k+p11jdpf6fb3kIZY7iJZUDjkBgCM+/NMbUrRdWTTGmAvJIWnWLByYwQpbPTqwFeZ2llrPh2DwhrMniPULuTUbm2tJ7FmAtFikjOAkeOCoA+bOTijUfA/2n4sJb/8JR4kh+06dPdeZFqG14v3yfu0O3iP5vu+w9K0kvfsu7X3K5nF3jd9k/vdj1amTy+RbyS7Hk8tC2yMZZsDOAO5rzjxPp2qQ6xomgad4j1W3txpd29xcm4JnmCGMg7sY35IG7GQC2OtQfD681p9c0S41XW7q/8A7Y0R7mWCVv3UbI8YQovY7W+Y9zk1K97Rf1v/AJFXtv8A1t/mdd4X8Z2/ii6vrWPStV0y4sRG0sWp24hYh920gbif4T1xXR1yei/8lS8Uf9elj/KWusoDZ2/rYKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/yGNQ/7Z/+g1eqjaf8hjUP+2f/AKDQBeooooAKKKKAKP8AzMP/AG6/+z1eqj/zMP8A26/+z1eoA5/xL4M03xRJbz3Ul3Z31rkQX1hOYZoweoDen1Bplv4H0tPDV1ot/NfapBdtunmv7lpZnYYwd3YjAxjGMV0dFHSweZy+heAdP0TVE1GXUNV1a7iUpby6peGc26nghBgAZHGetWY/B+nx+FdQ8PrNc/ZL8zmVyy+YvmsWbB244LHGQfxrfooeu4bGPq/hjT9b8Opo16ZvIjCeXLHJskjZMbXDDowxVSw8FWdt4fvdH1LUdU1u1vDmQ6pdec6jA4VgBt6Z46Hmujoo3v5gtLW6HK6J4FXQ9Wjvo/EviO8SMELaXuoebBgjH3dvbtzVuPwfp8fhXUPD6zXP2S/M5lcsvmL5rFmwduOCxxkH8a36KHruGxj6v4Y0/W/DqaNembyIwnlyxybJI2TG1ww6MMUeHPD3/COWctv/AGvquq+ZJv8AM1O58504xhTgYHHStiijq33C2iQVnXei297runarK8on09ZViVSNreYAG3DGf4RjBFaNFAHE+PpbzW4m8KadouoSz3YjkGp7Nlta4fO/zM53rtztAyeKseNdGaL4T6jo+kW0sxjshBBDChd2AwAAByTxXXUUmrxce407ST7HI+Hfh/Y6Re2+pXWo6vq95BHiBtVuzN9myMHYMAA44pNU+HNjf6nPfWOs67osly/mTppV+YUlfu5XBGfcYrr6Kb1ZK0VjMvtCg1HwvLod3cXUkEtt9necy/vmGMbi2OWPc459Kt6fZR6bpttYwNI0VtEsSNI25iFGBk9zxViigYVzfiPwRZeI9Qh1A6hqel30MRhF1pl0YZGjznYTg5Gea6SigDndV8F2OsaTYWl1eaitzp6BbfUorkpdKdoUsZB1LAc5GDUdh4L+waJf6b/wkmv3QvgFa4u7wSywjGCI2K4XIPp+VdNRRvfzDt5GC3g/TFfR3svOsX0f5bZrZgCY8YaNsg7lPBPfIzkGo/Evguy8S3VtdyX2pabe2ytHHd6bcmGTYeSpODkZHpXRUUPUFoc5deGriddBsWvJLrT9NlE1xJdyl57h0H7rccYb5juJ45UcVsarp0OsaPd6bcs6w3cLwyNGQGCsMHGQRnn0q3RQ9VZgtHdGNd+F7K9sNItJZZxHpE8M8BVlyzRKVUNxyMHnGPwqv4m8G2Xiae2uZb3UNOvLUMsV3p1yYZQrY3LnByDgdq6Gih67gtNEYMXhG1SWwlmvr+6msbOWzWa4mDvIsm3cznbkt8owePpUFt4HsLO3sorW8vomstNk02GVJVV1jfbl8hfvjaMEYA9K6Wij+vz/AM2G39en+SOI0v4YW+la4mqx+KPE09wGRpRPqAZZwn3Vk+QFl5PBPc129FFAdbhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAVRtP+QxqH/bP/wBBq9VG0/5DGof9s/8A0GgC9RRRQAUUUUAUf+Zh/wC3X/2er1Uf+Zh/7df/AGer1ABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFUbT/kMah/2z/8AQavVRtP+QxqH/bP/ANBoAvUUUUAFFFFAFH/mYf8At1/9nq9VH/mYf+3X/wBnq9QAUUjMEUsxCqBkknpVbTtTs9Xslu9NuEubdmZVljOVYqSDg9+QeaALVFYPhTXbnXbXU5LyOJDaalcWiCIEZSNsAnJPPr/KuVsfihrU2jrrl74JuYtC5Zr22v452VQxBbysBsDBz9KP6+8O/wBx6RRXK6z42a3ms7PwzpUniDULy3F3HDDMsSLCejtI3Cg9vWksfH1m2h6pe65aTaRc6OQL+zlIdoyRldpHDhuxHU0AdXRXJaL4r8QanqEQvPBd5p+nXAJhu5LuNmHBI8yIfMmcY74JrIm8feMoNYg0x/h5i7uI3lij/tuH50QgMc7cDG5eCe9HWwdLnolFc7YeJrl/EFvpGt6X/ZlzdWYuYP8ASBKHYf62LIAG5MjoTkHPFZ+s+P206x1+9stK+2WujPHB5puPLFxOzKrIvynAXcMn14x3o/r9AWp2VFcbpnjfVRrVnpvivwtPoT37FLSYXkdzHI4BbaSmNpwDiq83jfxPPrGp2mgeCf7Ut9PujbNc/wBrRQ7mChvusuRww9aOv9f11A7qioraSWW0hkuIfImZFaSLcG8tiOVyOuDxmszxVr//AAjPh+XVPs32ny5I08rzNmd7qmc4PTdnpT62FfS5sUVj+Idf/sE6WPs32j+0NQisv9Zt8veG+boc429OPrXLX/jzxfY6xBpx+H++S7eRbU/21CPOCDJP3fl455pf1/X3j/r+vuPQaK5NPGd5BruiaVq+htYz6lEzz4ulkFq+SFUkDDbiMZBGCRTrTxsLvXdfsE08iLSIPNS4M3FzjcGAGPlwyMucnpSbSV/X8NwWv4fjsdVRVDQtT/trw9p+qeV5P222jn8rdu2blDYzgZxnrir9U007MSd1cKK5bxZ4s1LQtW0zTdE0D+2rvUFlZY/ti2+0RhSeWBB+96jpWa/xKktdE1abUtBnsdV0owmfT5Z1IZZXCqyyqCGHJ7dsUlqM7uisrXdb/sVNPb7P5/22+itPv7dm8n5uhzjHTj61y9z4/wBfGratDpfgx9RsNKuGhnu49SjRvlUMSI2UEnB6A0rr+vl/mg/r8/8AI72iuek8WwGx8PXlpbtLBrk8ccZdthiDxs4YjByflxj361t3ks8FjPLZ2/2q4SNmig3hPNYDhdx4GTxk9Kb0vfoC1t5k1FcJonjjxRqviSXSrnwR9kFrLGl7N/a0Un2cOu4HaFG7jnANXNX8bXya5caR4V8Oz6/dWYX7Wy3KW8UJYZC726tjnFAHX0VU0u8mv9MhubmylsZpF+e2mILRkHBBI4PTqOoqzIWEbFPvAHGR3oem4LUdRXnvhvxzrery+ERd29kq61HdvdeVE42eUTt2ZY47Zzn8K9CptWAKKKxtE1i41fU9WKpGNPtLgWtvIAd0rqP3pznGAx2jjqrUgNmisbVdYuLfxBpOk6ekbzXbPLcGQE+XboPmYYI5LMij6n0p/h/XP7dgvX+z+Q1pfTWbLv3ZMbY3ZwOvXHb1oWoPT+v67GtRXMTeK7+Swv5NI0CbUrm11B7GO3juFQSbVyXZ2wEXt35x60/w54sl1ZtQt9a0qTRL/TQjXMEsyyoqMCVYSLwRhT9MUdLgdJRXEWPj3V9XmiutH8HX11oUj7V1FrmON2XON6wn5mXv15FdZquowaRpF1qN222C1iaVz7AZx9aHorsFq7It0VR0Sa/udDs59XjjhvZYg80cQIVCedvJJ46fUVi3Xiq4gk8SXUVvHNp+h2/qVaacIXdd3IChSg6Hkn0ol7t79Aj72x1FFcDafEfVIEs7rxT4SuNH0y9ZFiv472O5RS+NpcKAUByOT61J4j8beJ9B1PyYvBP2u0multrW6/taJPPZvu/JtJXPPWh6OwJpq53VFcNqHjfxHp1jpiz+Df8AibalcyQR6f8A2pHwFTdu8zbt5APHHStHw74xl1XVpdG1vRrjRNXji88W0siypLHnG5JF4bB60bu39dwOooorH0rX/wC0/EGtaX9m8r+ypIk83zM+bvTfnGOMdOpoA2KK41vGWt3lreyeHvC39qSWepzWMkf9opDgR4/eZde+fu9vWq/h3x14g1u1OoXfg77DpYhlk+1jU45eUz8uwKG5KkZ/GldWv8/wuOzvb5fod1RXDzfEfyvhyPEv9ksbosYzp3ngEMMlhv29AgL5x0rdi8Reb4ns9I+y4+1ac1953mfdw6rsxjn7+c57dKq2tv62v+Qul/67G3RRRSAKK4qbxzq9jqUX9reELuz0ea5S2j1A3UbtudtqloR8ygkjv3rtaFqrhs7BRVHWL+fTNLkubTT7jUZlIVLa3xuck4HJIAHPJ7DmsTw54vvNU1yfRdf0GbQ9Tjg+0pE1wk6Sxbtu4OvGQcZFC1dg2VzqaKK5PxL4s1fSvENro+geG/7buZ7Vrlh9uS32KrBT94EHlh3pX1sB1lFY2na3cjw+dS8V2UPh5kYiSOe9jkSMZwCZBhec1X8GXV9eaTcT6jrena0Wu5PJuNOKmNY8jahK8bh3+vU9afUOlzoaKzj4h0USQRnV7APcsVgX7SmZSDtIUZ5III47iptQ1XT9JgE2q39rYxE4ElzMsak+mWIoAt0Vm6jc313oLz+FJtPnu5FBtpLlma3bkZJKckYz074rN8Ea1qut6TeNr6WaX1nfzWkn2IMIj5ZAyNxJ9f8ACjq0HRM6SisbxPrE+kabF/Z6Ry6heXEdraRyglS7HkkAg4VQzHnota7usUbPKwVVGWY8AAdTR0uHWw6iuS/4TC6t/h5eeKrmyjkRQ9xa26sYy8G7Ee5jn5iuGzjv0p+g+IPFmoaokOteC/7Js2Ulrr+1Yp9pxwNijPNHWwdLnVUVx/h3x8uveHtW1F9ONrPpokc2xm3eagBKuGwMBirDpwQafeeK74TeEGs7aBYddcCdZAztEpi8wBWBAzwRkj8qP+B+Owbfj+G51tFcz4S8TXGq+Ep9X1wQW/kT3CuYUYKqROy5wSTnC10Fpd299aRXVlNHPbzKHjljYMrg9wRQtVf+tQJqKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/wAhjUP+2f8A6DV6qNp/yGNQ/wC2f/oNAF6iiigAooooAo/8zD/26/8As9Xqo/8AMw/9uv8A7PV6gDjvHlnqFwLSWSKa98PxEnUtPtMrNKOx9XQd4xgn36V0uk3mn3+k29xo0sMtkyDyWhxtCjjAHbHTHbpVymRQxQIUgjSNSxYqigDJOSeO5JJoWisD11Oa8DtatZaz9jvILoHWLtpGg3fIxfO05A5AI6ZHoTXGeGfGWgaT8GYrS41G1mvzBPCunxyh5ndncKnlg7ucjt3r1W3s7a0WQWlvFAJHMjiJAu9z1Y46k9zVGy8M6Dpt19p07RNOtJ/+esFpGjfmBmk1ePK+yX3Fc1nfzuef+FZoPAviK1tfFV1FYG70G0jinuXCRh4twkj3ngEbwcZqh4klGvnxR4i0ZGvtMtZLBS8Iytz9nkMkpX+8AGAz04Nes3+mWGq2/wBn1Syt72HO7y7mJZFz64YEVNb28FpbpBawxwQxjakcahVUegA4FU2279d/xuQkkrdP+AY2m+N/DOryWsWm65Y3E91/qoI5gZTxnlPvDgHqBVDU/wDkrGgf9g28/wDQoa3LTQdHsL17yx0qxtrmTO+eG2RHb6sBk1ba0t3u47p4ImuIlZI5igLopxkBuoBwMj2FLqn/AFsHS39bnL/Eu1z4LudTt5Ggv9J/020nQcxuv8wQSCPesfxtpEOjfA+40+yYjYkBMrDLO7TIWdvUliSa9AubaC8tpLe8hjnglXbJFKgZXHoQeCKbc2Vre2jWt5bQ3Fu2MwyxhkODkcHjggH8KF/kVfVPsctpPgvUxq9nqfivxNPrstiS9pELSO2ijYjBYqn3mwTgk8ZrjI7DQ7rxT4nfVvHmoeHZhqzhbW21hLRXXy0+fY3JJORn29q9jrHuvCPhu+upLm98P6VcXEp3SSzWUbs59SSuTS+1fy/y/wAhdLf11NS2ZGtYmhl86MoCku7dvGOGz3z1zXIfFmPzfhxex7mTfNbruQ4ZczJyD612MUSQxJFCixxooVEQYCgdAB2FR3VnbX1uYL63iuYWIJjmQOpIOQcHjggGqdm7+YldI8v8Q+DP+Ef1Twzd/wDCSeIdU3a5bx+TqV/50YzuO4LtHPHX3NdZ4h/5KB4R/wB+7/8ARNdJcWdtd+V9rt4p/JkEsXmoG8tx0YZ6EZPI5pZLW3muIZ5YInmgz5UjIC0eRg7T1GRwcUdLef6Ib3v5f5nFa/p0us+O761tHjjuodFiltnkztWYXBdCcc4DRjPsapLYvpHiK9sJGV3HhUmSQf8ALSQSyF2/FnJ/GvQha263jXYgiFyyCNpgg3lQchS3XGSTj3psljaS3DTy2sLzNEYWkaMFjGTkpnrtz26VDjePL6/jf/P8Cr+9f0/C3+RyngTxRoD+D/D+nprmmte/YYIvswu4zJvEYG3bnOc9q7Kse28IeGrK6jubPw9pVvPE26OWKyjVkPqCFyDWxWkpczbIStoefeO7LUr/AOIHhaDRNW/si7MN4Vuvsyz7QFTI2Nwc1T8V+EJtJ+HniG9utQuNY1W6WGS6u5UC5SKRW2oi8KoAY4FejyWdtLdw3UtvE9xAGEUzIC8Yb7wU9RnHOOtTEZGDyKnVLTf/AINyut2efeIvFGieILnwzZaFqdtqNzJq0E/lWsokZI0BZmYD7oA9cVylzYaHda94wbWPG13oMo1FwtnHqCRxTL5afM0LDMmemO4GK9esdD0nS55JtM0uys5Zf9ZJb26Rs/1IAzUMnhjQJdQN/LoemveFt5uWtIzIW9d2M596Vtfv/G3+Qv8Agfhf/M4e61Y/8Il4B1LXPs+nAX8LSl8QxxjyZADg4CgjBx2ziu6s/Emh6jDcTafrOn3UVsm+d4LpHWJeTliD8o4PJ9Kn1HStO1e3WDVrC1voVbesdzCsihumcMCM8moLPw3oenQ3EOn6Np9rFcpsnSC1RFlXkYYAfMOTwfWqbvf1v+QJbeSt+f8Amcl4W8SaHP8AEPxQIdZ0+Q3k1oLYJdIfPIhAITn5sHjiovDHiDSfDPiPxPpPiK+t9Nu5dUkvYnu5BEs8MgG0qzYBxjGM9q6y28IeGrK6jubPw9pVvPE26OWKyjVkPqCFyDVvUdF0vVwg1bTbO+EZyn2mBZNv03A4pbfdb8v8g6W/rr/mS2GoWmqWMd5p06XFtLkxyxnKsASMg9xkVYpsUUcMSxQoscaDCogwFHoBTqACuY1/QvFWo6n5+heMf7HtdgX7N/ZcVx83OW3Mc88ce1dPRQBi+ItUm0HwrLcK32i+2LBB8uPOnchE47ZYj8Ks+H9JTQvD9npqNvMEYDyHrI55Zj7liT+NO1DR7fU73T7i5eQ/YJjPHEpGxn2lQWGMnGSRyOas3lv9ssZ7bzZIPOjZPNiIDpkYyuQRkfSi7s31DTRf1/X/AATnfCv/ABN9X1XxI/MdxJ9jsj/07xEjcP8Aefefcba4W5lmk1bX7SxaTzdD1abWnSM/e2rEVU/7waXj/Zr1nTrC30rTLaws02W9tEsUa+iqMCiPTbGG6ubmGyt457sAXEqxKGmwMDecZbA45o2d10X+Tv8Aerhute//AALfdocNol9pF34E1Ge+18aPaarql20N9HeLbvzM2Njt3wv5ZrK0O1NxZ+MdC8Pas3iCzmsC0eoyMskjXDoy+U0y8ScBTnsDivRJPDWhTabFp02i6dJZQsXitmtEMcbHOSq4wDyenqau2lnbWFslvY28VtAnCxQoEVfoBwKTSaa8rfgNSad/O/43OO8I+PPDB8I6XDLq1nZ3MMEdvJZTShJkkUBSnln5jyOwq/4n/wCJxruk+HF5ikf7dej/AKYxEFVP+9Jt+oVq2G0DR31Mak+k2LXwORdG2Qyg/wC/jP60tro9va61faoHkkubxY0YuQRGiA4VcDgZLHnPJNU3eXM/X+vmSlZWX9f0huv6smhaBealIu/7PGSkY6yOeFUe5YgfjXN6hpL6L8HNVtblg922nXE11J/fmdWZz/30T+GK6bVNHt9Y+xi7eTy7W5S5EakBZGXO0NkcgHDYGOQKtzwQ3VvJBcxJNDKpSSORQyup6gg8EVDV4td/6/r0RcXaSfb+v69Ty7xF4j0fV/hdZeG9Iv7XUdW1K2t7WG1tpRKyN8uSwUnaFAJOcdK6jxupS18OITuK61aAn15NbunaBo+juz6TpNjYs4wzWtskRb67QKtz2tvdeX9qgim8qQSR+YgbY46MM9CPWtG7y5vO/wCJmlaPL5NfejjfHN7a6d4s8HXWoXMNrbx3s++aeQIi/uGHLHgcmoIdUs/FXxY0640CdLy00eynF1dwHdGXl2hYww4J+Utxmux1LRtM1mNI9X060v0jO5FuoFlCn1AYHFTWdla6dbLbafbQ2sC/digjCKPoBxUx0d/62sVLX+vO5PXl8PhP/hI/iP4tk/t/XNK8ma2Xbpd55CyZhHLDBya9QqGKztoLieeC3ijmuCDNIiANKQMAsRycDjmjrf8AroBxnwstPsGl69afaJ7nyNcuo/OuX3ySY2jczdye5qvoMvkfAu7l/uWd63Jx/FJXd29nbWfm/ZLeKDzpDLJ5SBd7nqxx1J7nrTF06xTT2sEs7dbNlZWtxEojIbO4FcYwcnPrmlJc0beVvwKi0pX87/iee3fha4g8N3+oLLG9kdAZ0gAO/wC1G2EbP6Y8tABz1Zqfba1p+neNPDl5q1/a2MMvhkgSXEyxoWLxHALHrwePavRGt4WtjbtFGYCmwxFRtK4xtx0xjjFULzw1oWorCuoaLp10tunlwie0RxGv91cjgewqm/f5v62kv1/AhK0VH+un+Ra0/U7DVrX7Tpd7b3sG4r5ttKsi5HUZUkZqzVbT9MsNJtfs2l2VvZQbi3lW0Sxrk9ThQBmrNJ+QzybxXcaP/a8et6B4zbVdUF5E1vohvI7u3dshdqQjJQ4yd3Y5r0fXPEWleGrGO81y8SzgklWJXcE5c9BwD6HmlsPDuiaVcNPpej2FlMww0lvapGx/FQDVq8sLTUYRFqFrBdRq4cJPGHUMOhwe49aFokge7ZT8QeINP8M6HNqurTeXbQgdBkuT0UDuTXNeENS0zWfEE2s3esaXPrN5AIoLC0vY5Ta24O7Z8pO5ieWI47DgZPX3+m2Oq2pttUs7e9tyQxiuIlkQkdDhgRVSw8L6Bpd0LrTND02zuFBAmt7SONwD1GQAaFvdg9rI1K898U6D/wAJD8UtPtP7V1PS9mjzSedplx5MjYmQbS2D8vOceoFehVEbS3N4t2beI3KxmNZig3hCQSu7rjIBx7Ure8n2/wAmh30a/rcxhpmkaF4TNj4i1E3+nIf3txr06S78tkB2cAHnAGfQVz3wx1TQ/J1jTdLvtP3f2vdSW9rbzJnydw2sqKfuY6EDFdvfafZ6naNa6laQXlu5BaG4jEiNg5GVIx1qnYeGdB0q6+06XomnWU4BXzbe0jjbB6jKgGqT1bf9bf5CeyS73/P/ADPJoPC+it8GPEGsy6dBLqTSXci3UiBpIykrBdjHlQMdsd62PHOrwS6xpWmy2Php7tdOFz9t8Tv+4CsQCiDu5K5r0oaVp40+SwFhaizk3b7YQr5b7jlsrjBySSfWm32i6VqaQrqWmWd4sBzELi3WQR/7uRx+FSlay9PyaG3dt+v4tM4T4V6pZ2HgvU7rUbzTLS0j1WYCW3kMdomduBGXxhSTwD61d+HGuaTdPrlra6nZzXE2s3c8cMdwjO8ZYYcAHJX36V1s2iaVcWc1pcaZZy207+ZLC9urJI3HzMpGCeByfQVDYeGNB0q6+06XomnWU4BXzba0jjbB6jKgGqvr8rfl/kTbS3nf8/8AMy4P+J58Qpp/vWmgxeRH6G5lALn/AIDHtH/AzT/G0slzp9toNqxW41qb7MSvVIcbpm/74BH1YVraPo9volk9vbPJJ5k0k8ksxBeR3YsxJAA746dAKG0e3fxCmsSPI9xHbG3jQkbI1LbmIGM5OFBOeiil2T/rr+enoPu1/X9b+pgfEmKOD4Va1DCojjjs9iqvAUAgAVQ8H2WgWmtK+m/EHUNeuGhZRZXOtR3K44JYIOcjHXtzXcXVpb31rJbXsEVxbyjbJFMgdXHoQeDVCx8L6Bpd0LrTND02zuFBAlt7SONwD1GQAaOrbB7JL+tjy6If2P8ADqy8QL8sMlteadff7kkknlOf92TA+khr07wl/wAiXov/AF4Qf+ixVw6Vp501tONhbGyYENbeSvlkE5IK4xyeasQwx28KQwRrFFGoVERQFUDgAAdBQtE1/XX/ADB6tP1/T/IJpY4IXlndY4o1LO7nCqB1JJ6CuI8KQyXHie41HwwjWXhiYMXjmX5LuY/8tYE4Ma+rdG7L/FXcSRpNE0cqLJG4KsjDIYHqCKVVCqFUAADAAHShaO4PVWFooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKo2n/IY1D/tn/wCg1eqjaf8AIY1D/tn/AOg0AXqKKKACiiigCj/zMP8A26/+z1eqj/zMP/br/wCz1eoAKCQASTgDqa5vxP4kuNOvrHRdJijOqaluFvLdfJBEB1Yn+Nh2ReT7Dmm6noetjwitlpviea3voyZJr+e1jnaYEMWXYcBRkjGOgAFS3aLkNK7SOjgniuYEmtpUmicZSSNgysPUEday7vxJZ2fiqw0CWK5a7v4pJYnSLMahOu5ux/zxkZ4/4XaP4ji8O6HfXPin7RpTWaldL/s6NdoK/KPNB3HHr3xWgZPEelfE3TrW98Q/btL1T7U6WX2GOPyAigqu8ZZsbuvHStGrSt6kp3jc7Oa4htwhuJo4g7hELsF3MeijPUn0qHUtRtdI0y41DUZfJtbZDJLJtLbVHU4AJP4VwXxM0rXrnUNHnsPEn2K0k1K2iitfsMcnlTZOJd5OTj+6eK6/w5putaZZyx+INe/tuZpNyTfY0t9i4+7hTg88596hapv+un+Y3o0v66i+HfFOjeLLGS88P3n2uCKTynfynTDYBxhgD0IrXrlPB3/Ie8Xf9hf/ANoRV51qHxbna6vNQt/F9pYtbSSLBoT6VJIJlQkAPPj5WbHY4GR7021p5pP8EFnr62PcKKwL4alreg2GqeHr/wCw3XlrcxxTDdDMGXPlyDrjnqOQeeelZEnxIsx4Jk1loltrkT/YkinkAha4zjib7rRggkuD0B6Hih6XT6AtUmup1sep2MuoyafFe273sKh5LZZVMiKehK5yByOfeo7nWtKs7+KxvNTs4Lub/VW8twqyP9FJyfwrzHwpdaBpfxUXyvEGn3095pAFxeLdRn7TdvPkqMHr0AUcgAViWa23irRtVitfCy6zrt5cXDXuq3qeXDY/OwQLKRuyqhPlSk9En6/g7f0x21a9PxVz3VmVELuwVVGSScACoLHULLVLRbrTLuC8t2JCzW8qyISODyCRXl8Hiu11nwr4d0DWtZtrAXenx3GqXF1crE0kPQRqWIy0hHJHRc+orb+Et/pknhi4sdOu7V2hvrphBBKpKRmZth2g8KRjB6VVvea/rR2/r0Jvon/WqO9qta6lY3yzmyvbe5FvIY5jDKr+U46q2DwR6GrNeTeEidE1C6vBxaa1f39pP6LcJNI0Tf8AAl3r+C1Ddr+hVj1S2uYLy1jubOaOeCVQ0csThlcHuCOCKlry3QNR1u58K+EvDfhq8h064uNJ+1z38sImMUabVARDwWLMOvYVq2Mvi2e61Xwpd+IYY9Tt4Ybq11mKwQl4mYhg0JO3OVI47HNW1rZf1YlPS7/q53MFxDdRebbTRzR5K742DDIOCMj0IIqSvL/hjonicaRZ3jeLc6al1ceZp39mxfvMTOG/eZ3DLZb2zivUKXQfVopalrOmaNGkmr6jaWCSHajXU6xBj6AsRml03WNM1mN5NI1G0v0jO12tZ1lCn0JUnFcT8Tkkk1jwssGhw6/IbufGnTuiJN+5bqXBUY+9yO1TW+qXHhbwHqmqP4Ls/DlzG4EVlbzROs7MVVGZowB95seuBSXUbWqO8orz6Wfxn4UvNNvte1611ixvbyK1ubVLFYfsxkO0NG4OWAYj73atbQtav7xvFguZ9/8AZ9/JDa/Io8tBErAcDnknrmhuyb7X/C3+aBK7S7/8H/I6uivLx4l8V3+m+BotKv7dL3W7SVrua4gUrlUVt+0AcjJIAwCcZ4q9Y+KdY8O2viu28SXkesz6DBHcxXKQLAZhIjEKyrwMFcZHY03pe/T9BLVK3U7e/wBUs9Ma1W+m8o3dwttB8pO+RgSF4HHQ8nirdeV6rp3iuPU/Ct/4j8RQXkM+sW5/s6CxWNIHKuflkzuYAZHPXNdNq2t32seJJvC2gzf2fNDEst7fSjDpG3aBD99j0342r7ninZ287/ohXV/Kyf4s66qsGpWlzqN1YwS77i0CGdApwm8EqM4xnAzjOenqKS5uYNH0eW5vJmMFnAXklkOWKquSSe54rnNE0fVpvBc80F9/ZOt6xJ9tluTAsxgZyCE2NwdsYVPwzS7/ANf11H2OqhuIblWa3ljlVWKMUYMAwOCOO4PaszWvElnoN7pdreRXLvqlyLaEwxbgrEZy3oPz/IGuE+HeheKfIa5HjHFjFqtyJ7L+y4v35WZg535yu4gnjpnitvxNJ4j0nxdpF5b+If8AiU3+pQ2jaX9hj+UFDuPmnLHJUnt168U1ry+dvxsLpLyv+B2c9xDawNNcyxwxIMtJIwVV+pNOllSGF5ZDhEUsxxnAFcF8XNP1e58I3Fxp+t/YrOFALi0+yJJ9oJkXB3k5XHt1rf8ADWkeIdMknbxD4n/txJFURJ/Z8dt5RGcnKHnPHX0qd0PYd4b8beH/ABe1wvh3UPthtgpl/cyR7d2cffUZ6HpW9XKaX/yVbX/+wdZ/+hS1x/i74jNB4uv9LTxdb+GY9OZUVW0t7t7pioYkkDCKMgcc8E+lNtaBZ6/10PW6K5LQdTvPHXw7tL+1v2029myRcWyZXzI3IztbqjFc7Tzg4zVvwt4lm1ia+03UoEi1PTHEV01ud8Dk9Cj9j6o3zD9adrNoV9LnRUUUUhhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABVG0/5DGof9s//AEGr1UbT/kMah/2z/wDQaAL1FFFABRRRQBR/5mH/ALdf/Z6vVR/5mH/t1/8AZ6vUAUtX0ex13TZLHU4FmgfnGcFWHRlI5Vh2I5FJpdhNY6Slle30uoMgZfPmADuuTgNjqQMDPfGavUUeQHH+GfB2s+Gb2CGHxXLc6Fbhli0yWxj3KpzgecDu4J9O2Koan4E8Wah4gj1WPx75L2rymzT+x4m8hJOq53fNwAMkdq7+igDD8ReG28ReH4rGXUJba7gkjnhvYkG5JkOQ+3p17e9V7LRPE8Hh68s7zxd9q1GZs2+of2bEn2ccceWDhuh6+tdJRR38w7eRxHhnwX4k0LXpb688Zf2hb3Uxnu7X+y44vPfZsB3BiVxhTgcce9JL4H8QWU8qeFPGk2kWEkjSizk0+K5EbMSzBWYghcknFdxRR2Ax9a0E67ZW9leX86WgP+lxQ4T7WMfdZhyqk9QMZHHSrNzoek3mnRafeaXZ3FlDjy7ea3V40wMDCkYGAcVfooA5OD4daDa+MU1y203ToY47VYo7SOxjUJKH3CYEdG7dM8dao3nw7vmu72HSfFV5pmjahK0t3p0cCOSX+/5ch5jDegB6mu6ooAxX8G+GpYoI7jQNNuBbwrBE1xaJIyoowq5YE4FV/CHg2w8I2c8dpFbNPNNJI1xFbLExRnLLGcZJCg4HPboK6KijrcLaWCuVPghG8IX+iPfNvubua7iuliwYJHlMqEDPO047jOO2a6qik0mO9jin+HssOiaJDpWuzafq2jW32aHUYoFYSIQNyvExIIOAcZ4Navhnwu+hzXd7qOpzavqt7tFxeTIseVXO1VReFUZPHqa6CiquTbSxx2k+DNY0LWt+meKpU0Q3LztpUljG/wB8lmUS53AZOeldjRRS2Vh9bmTqmh/2lrujaj9o8v8AsuWWTy9mfN3xlMZzxjOehqxrej2uv6JdaXqAY291GUfacMPQg+oOCPpV6ila6sO7vc4uw8C6mdSs5vEviq61u10+UTWlq9tHCFcDCtIy8yEdRnHPNN1L4fXl3rGoy2Hia807TNVbzL6xghQmR9oUlZTygIAyAOeea7aim9RLQ5TTvBH9nv4WI1DzP+Eft5YP9Tj7RvQLn73y4xnvU83g23u9T8RXF7cGW3122it5IFTaYgisuQ2TkndnoMY710lFD13BabHCWvw81I3mmXGteLLvVDpdzHLaxvbrGiovZgp+ZyON5z345rpNf8OWuvQxM7yWt9bNvtL6A4lt29Qe4PdTwR1rXooBaO5z3iPS77V7TTdKx51rLcI2pTkquY4/m27c/wAbBRgdia6GiigDjrLwXrGk+IJLjRvFUttpM9413NpkllHKGLNudRITuUE56dKg8TeCfEuv6wlzb+M/sNpb3KXNpa/2VHJ5EirgHeWBbqx5459q7iija3kHfzMS88PSav4Mk0LXdQe8lng8qa8jiWJnbrvCjIBzjj2qroWheJdNt7yLVfFraoZItlqzadHEbZsH5jg/P24Pp710tFHcDgdM8DeK7HxL/bFx47+0vL5SXSf2PEnnxIxITIb5fvMMgZ5rQ1fwdqsmsXOpeFfFE2hSXpVruI2kdzHIyqFDBX+6cAA464FddRQBivo2p3PhePTLzXpzeEBbjULeBIZJFzyFUZCEjjI5HWr+l6VZaLp0VjplulvbRD5UX9ST1JPUk8mrdFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAVRtP+QxqH/bP/0Gr1UbT/kMah/2z/8AQaAL1FFFABRRRQBR/wCZh/7df/Z6vVR/5mH/ALdf/Z6vUAUtX1ix0LTZL7U51hgTjOMlmPRVA5Zj2A5Ncp411y+Hwwm1Ux3WiTmaE7Wl2yRoZ1GWKnjK9R2yQa1PE/hu41G+sda0mVBqum7jbxXPzQSg9VI/gY9nXke44rL8afbvEPwxlxpF3FdyTQiSxaPzHUrOu7hc7l4JyOo5oW69V+YOxf0P4gaVr2tLpsFrqVq80bS2s15aGKO7QdWiJ5IwQeQKzTq/iyD4i6NaatLZ22nag10qWVsm9isaAqzyNzk5zhcAd81oa9ZXMvxF8J3EFtK9vbreCWVIyUi3RqF3EcDPbPWuX8Q+K7mTx/o17D4Q8USwaO93HM8emFhLvUIrRnOGGVzk44xTVrr5hbQ73X9dHh+3iu7iznmst+LmeEbvsy4++y9SvqRnHWsrx1rN7b+CBfeGdQjhnuJ7aO3ukVZVxJKq5AIIIw1X9U1bUzpNo2h6TLLeX6jYt2PLS1yuS03ORj+6Mknj3rmtV8IPongOPT9P+0X88mqWtzN5cZ27vtCM5SNeI0HJwBgDk+tK2tn3X5oL6XXZlseK728t/CUsL/Z5L7UGtNRh2g4dIpN6cjjDp1GOnvTr74o6LY308YstWurO1kMdzqVtZNJawMDhgzj074BrM1rR9QtPido/2Gynm0u7v/t8sscZZLaUQvG+4jhQ2YyM9w1U7DUNb8PeFZvBp8I6nfXwWaCC7hiU2cyuzEO8hPy8NyCP50rtpvr2+S/X/Mdknbpp+v8AwDV8bfEGbQ7nTYdL0rVrqOe4gdru1sxLDPExOY0YnlyBwP1rpvDniH/hIrOWf+yNV0ry5Nnl6nbeS78ZyoycjnrXOa7omo6V8P8AQLextpNSuNDntJZYYeXlWLhtgPU+gro/DniH/hIrOW4/sjVdK8uTZ5ep23ku/GcqMnI561Wi5ku/4aE66Py/zNivKLnXNXvfEuuQv8TNP8Nx2d+1vBZXNpbMxQKpDAuVJGWI79Oter1w3h/wjpl9q/iW51/w/aXEsmru0Et7ZK7PH5ceCpZeVzu6cZzUr4/k/wA0V9n5/wCZsa54ts/DFvZw3i3mqX9wn7q20+382afaBucIOAPxxzVeD4haRP4Y1HWhDexjS+Lyymg8u4hPoUYgZ59cVR8RtfeHfG1v4jt9GvNWsW082MsWnxiSaAiTerBMjIPQ46YFZFzomseJ9E8Y6oNKm06XWLSKCysrnCzOIgSGcZwrMTgAnjFDfut+oJK6Xp/wf6/zO6v9ftdOu9Kt545mfVZvJgKKCFbYX+bJ4GFPTNc3efFfRLS5vYEsNXun0+eSG8NrZ+YtuEODI7A4CHBx346VknVtZ8TeJPCkieFdW06x0+8JuJr6HYwfyXHCjJ2f7ZwMkCtHRNMu4PDPjZJLKaOa71G/eFWiIaZWX5SoxlgexHWh6KT7X/T/ADYR1sn5fr/kjf1rxlpei6bZ3bfaL1r8Zs7ayhMs1wNu75VHsc5OKx/AviC48Q+I/E08sOpWkKS2whs9RQxvB+65+QkhckZ465zWNFHqfhu28Ha42iajqEVroosbq1tId1xA7LGQfLOD1Ug+lavhWz1HVtW8Vz67plzpceqeR5cYkZXCeUV++uPmwBnaeCcVbVnK3n+f+WpKe1/60OgtfEsGo+IZdM0uCS7itsi7vUI8mB+0ef4m9QPu96h8ZX9xbaKllpshj1DVJlsrV1OGQv8Aecf7qBm/Cqvhez1LwzNF4cntRc6ZGhNlqECKm1RzsmUYw/P3gMN3wadaf8Tv4gXV4fmtNDi+yQ+huJAGlb/gK7F/4E1TZOy/r+ug7tXf9f11Mrxbr6+FfF3hj7Rd3hsvs9yjwRs8j3ThUCDaPvvk8Z7kmtjS/F//AAkei6hNoNhcR6nZnY2n6mht5EkIyocc4BHOah1uxnn+Jfhe6S1kkt7eG88yYRkpEWRQuW6AnnFV9P8AtOkeMPG2qTadezQFbWSFYICzXGyHkR9AxzxgHrRvHXz/ADC2unkL4M1PxBceJPEOneJby3uZLE2xRbWHZHH5kZYqufmI6cse3ati78Swab4hi0zVIJLSK5AFpeuR5M0nePP8LegPXtXE+F/E9yfiDrNzN4T8TW8GtS2yQyz6aUWHZHsJkOcKM85GeK6bxRZ6l4mlk8OwWgt9MkQG91CdFfKn+CFTnL8feIwvbJxTfT+ugaao6qioLK0jsLGC0haRo4ECKZZC7EAY5Y8k1PSYBRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAVRtP8AkMah/wBs/wD0Gr1UbT/kMah/2z/9BoAvUUUUAFFFFAFH/mYf+3X/ANnq9VH/AJmH/t1/9nq9QAUUUyKaKdC8EiSKGKlkYEZBwRx3BBFAD6KKZHNHKziKRHMbbXCsDtOM4PocEfnQA+iuV8U+PYPCdyyXmg67eQJCJpLuysxJAgyeGcsACMc/UVTl+JAHhnUdXXw3rNoLEw4j1SD7N53mOF+RvmzjOTx6etC12A7aigHIBooAKKKKACiiigAooooAKKKKACiiigAqK3tbe0V1tYI4Vd2kYRoFDMxyWOOpJ5JqrousW2vaWt/YiQQtJJGPMXByjlDx9VNX6ACiisnTdc/tDxDrOl/Z/L/st4V83fnzfMj39McY6dTQBrUUVm6LrttrsN3JaJKi2l3LaSeaAMvGcEjBPHp/KgDSorj7r4k6fb6LpOo2+k6xfDVvM+z29nbLJN8n3sqG/kTWn4e8Xaf4ksbqezjureWzbZc2l3CYpoWxnDKfUe9G1/IO3mbtFUdE1aDXtDs9Vs0kSC8iWWNZQAwBHcAkZ/Gr1D00BO+oUUUUAFFFFABRRRQAUUUUAFFUdb1e20DRLrVL4SG3tY/MkEa5Yj2FXQdygjuM0ALRRWH4o8Rt4etbUWunzanf3s/kWtpE4QyPtLHLHhQApJNAG5RWX4fv9W1HTTNr2i/2NciQqLb7UlxlcDDbl45549q1KACiiigAoorJXXM+Mn0H7P8AdsFvPP39cyFNu3HtnOfwo62Dpc1qKKKACiiigAooqhfaxbafqmnWE4kM2pSPHDtXIBVC5ye3AoAv0Vj+JNe/4R6ztJ/s32j7Tew2m3zNm3zG27uhzjrjv61sUbq/9f1qAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFUdZ1P+x9Jnv/ALFeX/kgH7PYxebM+SB8q5GeufoDXPeGviHb+J9UNla+H9ftArOklxeWQSGN06ozBjhu2PWhauyB6K7OvormPEfiy+0vVodI0DQZdc1KSA3LwrcJAkUW7buLtxkngD2Nb2mz3VzplvPqFn9hupIw0tt5ok8pu67hwceoo3Vw2dizRRRQAUUUUAFFFFABRRRQAUUVR0XV7bXdJi1GyEgglLBfMGD8rFTx9QaAL1FFFABRRRQAUVFczfZrSafbu8tGfbnGcDOKp+H9V/t3w5p+q+T5H2y3Sfyt+7ZuGcZwM/XFAGjRRVDRdYtte0tb+xEghaSSMeYuDlHKHj6qaAL9FY+h69/bV5rEH2byf7MvTabvM3eZhVbd0GPvYxz061sUdLgFFFFABRWbo2u22uC+NokqfYbySzk80AZdMZIwTxzx0PtWJe/EXT7TQdO1SLTNVvV1Kd4ILa0t1kmLJuz8u7p8hPBNAHW0Vg+G/GGn+Jorv7LDeWlzZEC5s72AxTQ5GRlfcA96v6Jq8Gv6Ha6pZpIkF1H5iLKAGA9wCR+tAF+iiigAooooAKKKKACiiigAorlPEnizV/D+tWkS+G/tWlXE0MDaj9uRPLeR9uPKwWOMitnXr7VNP0tp9D0j+17sOALX7SsGQep3txx6UdLh1saVFYvhLX5PE3hq31Sey+wySvIj2/m+ZsKSMhG4AZ+76VtUbAFFFFABRRXJ+HfFmr6n4muNF17w3/Y00VqLpD9uS48xC+wfdGByD37ULV2DZXOsooooAKKKKACiiigAooooAKKx01/f41l8P/ZseXYLefaPM65cpt249s5z+FbFHS4dbBRRRQAUVlHW8eMF0L7P1sTeefv9HCbduPfOc/hWrR0uHWwUUUUAFFFFABRRRQAUUUUAFFFFABRRVXUp7q10y4n06z+3XUaForbzRH5rdl3HgfU0AWqK53wh4kvfEUOoDVNI/si7sLr7NLb/AGlZ+ditncoA6N2zVWTxZq9r45tNEvvDfkWF9LJHbal9uRvM2Rl8+UBkdMckUdbB0udZRVDXZtTg0K7l0C2iutSSMm3hmbajv6E5H8x9RU9g91Jp1s+oxJFdtEpnjjbcqPj5gD3AOaALFFFFABRRRQAUUUUAFFFZOm65/aHiHWdL+z+X/Zbwr5u/Pm+ZHv6Y4x06mgDWooqgdYth4hXRsSfamtTdZx8uwMF6+uTR5AX6KKKACiiigAooooAKKKKACiob1rhLCd7GNJblY2MMbthWfHygnsM4qroM2q3Gg2kviG2htdSaPNxDA25Eb0Byf5n6mgDQooooAKKKYs0TyvGkiNJHjegYErnkZHagB9FZesa1/Zl1ptpFB9pudQuRCke/btUAs7k4PCqM+5IHGa1KACiiigAqjaf8hjUP+2f/AKDV6qNp/wAhjUP+2f8A6DQBeooooAKKKKAKP/Mw/wDbr/7PV6qP/Mw/9uv/ALPV6gDjvHl5qFuLSKSSay8PykjUr+0+aaIdh/sIe8gyR7dapfECysbD4SyW2hiO2tFktvIa3xgAzIQwPc989+td6yh1KsAykYII61x/jPwkt38O7nQPD2noEkmjZbaNwi485XfBJAAxuOM/Sku3mvzH1uY6eHNM8H/EHw8ug3Fz9s1Jpl1BZrp5WuoxEW81wT1DAcgAc1e8UhdK8UW9x4TY/wDCSXZUzWEQzFdRA4LzjOEA7Sde2G6VueHfA/hvwnJJJoGlR2kso2vJvaRyPTc5JA9q1bXS7Kyurq5tLaOKe8cPcSqPmkIGBk+wHSq7f18vQnv/AF8/UwviIWPwy10yAK/2F9wU5AOOx4zWf8Tgx+Et8EbYxW3wwHQ+bHzXXalp1rq+m3Gn6hF51rcIY5Y9xXcp6jIII/Co9T0ex1jSX03UYPOtH27o97LnaQw5BB6gd6X/AACk7NeX/AOCTwzZ+D/iH4Zk0mW7afVDcRahNPcvI13ti3hmBOM7hngCuMTT/EHicXur2/hG6v8AWPtEyQaxH4hWFrVlchVWHIChcAbT159a9xutJsr3ULG+uYd9zYM7Wz72Hlll2twDg5HHOawNZ+GHg7X9Skv9U0SOW6kOXkjlki3n1IRgCfelrdB0/rzOi05rptLtTqCBLswoZ1BB2vtG4ccdc1hfEf8A5Jrr+P8Anyk/lXSRxrDEkcYwiKFUZ6AVBqWnWur6bcafqEXnWtwhjlj3FdynqMggj8Kctbih7trnJab8OrOz1XTNes9QvBqsbB726mmeRr1CpBRlLBVGSCMDjA4rz6aw1vxVqWr6gvhG51bUIb2eC21KPxAts1nsYqipFkbduAeevXvXuyKERUUYVRgD2rl9c+GvhHxHqLX+r6LHNdP9+VJZIi/udjDJ9zQ99AjpGzOfvLGbxP4g0Lw740aVIv7F+13VolwY1ubkMqsGKH5gvJwDjnNYH2XTLP4efEWz8PsH063uAkASUyqoEUe4BiSSAd3evStZ8E+HfEGnWdjrGmR3MFkAtuGdg0YAAwGBDYwBxnnHNUvDfhdNNufElpcadDFpV7coLeABSjwiBEI2joMhhg4oevMl1v8An/SBaOL7W/IzvE17av4o8CWyXEbTteGURqwJKeQ43Y9Mkc1w13Y6z4q1vWb0+ELnWby2vp7e2v4/EC2rWQRiqBIsjbgAHnqTnvXp+k/Drwnoc8M+laNFbzQzefHKHdnV9pX7xYnGGPy9Pam678N/CXiTUDfazo0c90ww0qSyRF/rsYZPuaT3v6/p/kC0VvT9f8zI1/Qta1/wboNpqYhmvY0V9R0uW9MAviI8MvmR55DEHuM9aPDOheG9Z8M6n4Wn0e8tLe2uV+1aXdXbSeSxCsuyRXJ2HAPB654ro9W8F+H9c0e10vVdNS5s7NQtujOwMYAwMMCG6Ad+ataH4e0nw1p/2LQrGKzt924qmSWPqSckn3JqtG5eYtbLyPP/AIYeAvC39l22tppw/tS1vLhRMLiTKFZXVQV3Y4XHUVzl3Y6z4q1vWb0+ELnWby2vp7e2v4/EC2rWQRiqBIsjbgAHnqTnvXqK/D3wsniZfEEekRx6mshlE8crqN56tsDbSTk9qj134b+EvEmoG+1nRo57phhpUlkiL/XYwyfc1Oul/wCttSurt/W+hz19aXmv6j4W8N+Mnlijn0ySe+t459n2q4QINjMh5AyzYB/lU/w2sNH0vxN4tsvDewafBcW6IElMgVvK+YbiSThs966bVvBnh/XNGtdK1XTY7mzswq26M7AxgDAwwO7oB3571b0nw/pWheb/AGRZR2glVFdYydpCDC8ZwOD2696u+r+f53/4BFtv66GjXE+AbmC2sPEwuJo4zb63ePNuYDy1LZBPoMc121c1rHw78Ka9qw1PVtFguLzjMm5l346bgpAb8Qajv5q35f5FaW+d/wA/8zz7TRrI8O/Dw+HBZDUCt20X9oB/KKlSSTs5+70/Cuo8B+bcQeJb7V5c69LcGLUYFj2JAUTCKgycqV5DE85rsX0fT3urC4NsqyacGFrsJURBl2kBRxjHHI4pE0Wwj1W61JLfbd3cSwzyB2AkVc4yucZGTzjPbNOWvNbrccXazfQx/hx/yTTw/wD9eMf8q6auMsfhH4I03ULe9stE8u4tpVlif7XOdrKcg4L4PI712dVJ3dyIqyscP4vvH0TxjYarD/rJtLu7aMf35QY3jX8Tmsm01lpNYS/8Qzs0+gaLdpfyQqFbzPNCF1A4BYRFh2+YV32qaDputTWUup2q3D2E4uLYlmHlyDo3BGfocioo/DOjxajqV8thGbjVUWO9ZiWEygYAKk46HsOe9RZ2t6/jf/N/gX/wP0/y/M8f022fSvFvhvUNP8K3WhLqN9Gpv5tb+0SXsTqch4ck89c9j+FdR4y8L/2h4mu9W1PTG8R6dCibIbbUmgn04quWKpuCtnhuSD+ldHpnwz8H6PdpdadokMM8cyzJL5jsyOOmCWOB7dPapdZ+HfhTxBq39p6vo0NxecZk3uu/HA3BSA3A7g03srf1t/XQS3bfb+v61NbQby21Dw9p93YSyy201ujRPMfnZdowW9/X3qp4y/5EXXf+wdcf+i2rXggitreOC3jSKGNQiRooVVUcAADoKZeWcGoWM9neJ5lvcRtFKmSNysMEZHI4PalU95O3UdN8rTfQ8kj8MWnh/RvBviO1nu5NZuryyhnu5bl28yKUYaPbnaFAOAAOwrXTw5o/jnxX4jbxZJLcyaXdiC1tftLxLaxeWrCQBSOWJY7jnpXcTeH9MuNPsbGa23W+nyRS2yeYw8to/uHOcnHvnPes/XvAXhjxPfR3muaRDdXMYAEu5kJA6A7SNw9jmqk7t+r+W3+T+8mKtFLyX6/18jzjVtFsfEHwWutT1YSalcaObqLTb6SZ9zRLNtVzggNwo5IPSvRfCvgnw14X33fhqxFs13EoeRZ5JA69R95iO/atr+zLH+yzpotIRY+V5P2YIBHsxjbt6YxWV4d8DeHfCd1cXHh/ThZy3KhZSJpHDAHIGGYgfhR1/r+tQeq/r+tDfry/xr4N+0+NdCm/4SPxBD/aN/INkV9tW1xC5zCNvyHjHfgmvUKqXemWd9d2dzdQ75rGQy27biNjFSpOAcHhiOc0utx9GjhvEmlDTLLw54Zu9b1ObTdQv3jvLu7uiZpRsZ1iMgAwGYBeMccVTOiWHhHxZcaL4WaWOyvNFupruw895ViZcBJAGJILbiPevQ9X0fT9e02Sw1i0ju7WT70cg4z2I7g+45ql4e8H6B4Vgli0DTIrRZv9YwLOz+xZiSR7ZqWrprvf8rDvZp/1vc4G/vrVPg34Oga4jEs8+nLEm4Zcq6FsD2wc1Z/4RDTfFvxM8Wx661xPZwfZCLRJ3jjZzCPnbaQSRjj6mult/hl4OtLiWe20K3jlklWUuGfKsrBht5+UZA4XAPTpW9baTZWep3uoW8Oy6v8AZ9pk3sd+xdq8E4GB6Yq27tt9b/jb/IlaaLsl+J5dp93c6l4B8IaRf39xHaahqM1ldTrKVkkjjaXZGX6jdsUccnpWp4T0Pw/4d+Leo6f4YjSKJNIQ3EaztLslMx4JYkg428V1svg3QJ/Df9gT6akmmb2cQO7HDFixIbO4HLHkHvT9F8JaF4edH0XTo7Rkh8gFGblN27nJ5Oe5596E/ev6/lYJaqy/rW/5aGzXnV1oOl+N/H+u2Xip5bmLS1gFnY/aHiRVZNzS4UgsSxIz2xivRawPEPgfw34rmim1/SoruWEYSTcyMB6EqQSPY8VPUroea3Mc1/4V07SotTumtIPFwsrK/WXMvkAMAVfuRllB9q6fw/oVl4R+KjaVoQmgsrzSGupoXneQNKswXf8AMTyQxzXXN4a0drGwsxYRx22nTrcWsURKLFIucHCkZ6nrkHPNWDpNk2trq5h/05Lc2yy724jLBiuM46gHOM1Sdn/Wvu2/PUT1/r+83+Whcry/xz4F8MXvj/QLnUdPDNq13LHeObiRRLtgOwcMNvKr0xmvUKzde8O6T4m077DrtlHeW+4MEckFW9QQQQeexqX3GcT428MadoXgTTtG8PpJptu2s2uxo5Gdo2aQZYFiTnvRZaFaeC/iRBb+HxcLHf6VcTXMctw8vnyxsm1zuJ+b5jyPWuqs/BXh+w0SDSLTT/Lsbe5W6ii86Q7ZVbcGyWyeexOK0pNKsptYg1WSHN7bxPDFLvb5UYgsMZwclR2os9de/wD6Tb8xf1+N/wAjwvStN8Ta1plv4g0nwjcz65MRMuvDxCmWbdkgwkgBf4dhxgcV7+pJQFhhscj0NclefCzwZf6q2pXGhx/amfzC8U0kYLZznarAZz7V11VfSwutzE8YWN1qfhW7srC+SxuZwqRyySFFJ3D5Cw5G4ZXI55rlvBNpp3hvXLvSYNAutD1KW1NwbcXzXVvcqrY3qxYkNkgchTg967jVdJsNc0yXT9WtUurSYAPFJ0ODkfQ57is7w74K8O+EzIfD+lxWjyjDybmdyPTcxJx7ZxUrqN7I8b03TvEuvaaniDTvCN1c67MTImur4hQFW3Z2+SSAFH3dh7cV6B4g0ZPEXxK06w1Ka4htn0WV7mC3lMfnASoPLZl525OTgjOK1NQ+FvgzVNUfUbzQ4zdO+9njmkjDNnOSqsBnPtXRHS7NtYj1Uw/6bHA1usu48RlgxXGcdVHOM09NL9L/AJNA+v8AXVHEal4D/sLwZfw6HPJKLG8XVNKtnLH7M0YBMQYkkhsN/wB9/jV6yuYfFvjmz1G3PmWGk2CzRHPBnuFyPxWMf+P12nWs7RdB03w9aSW2j2otoZJDK6h2bLEAdWJPQAAdABgUa/16W/L8ge39ev8AXqeI22n+I/E1rPrdr4QurzW3ll8nWU8QpG1u4cgKIcgKq4xtPX8a7zXdHbxD480Gy1aa4t1k0edryG2l2eb88W6MsvO3d1wecdcVr6t8L/BuualJf6locclzKd0kkc0kW8+pCMAT710B0myOqQaiYf8ASreBreKTe3yxsQSMZweVHJ54ojZJX/rRoJattf1qmZnhXwpB4RhvbTTriQ6dNMJba1cswtRtAZQzEkgkE/jWxZ39pqMJl0+6guo1coXgkDqGHUZHcelTkAgg8g1m6H4e0rw1ZSWmh2aWkEkrTOisTlz1PJPoPyp77h6GlRRRSAK5LwCN1r4hGSM69ecj/fFb+s6NYeINJn0zV4PtFnOAJI97LuwQRypBHIHesTQvhr4T8NaqmpaJpP2a7RWVZPtMr4BGDwzEfpQt3ftb8v8AIHsrd7/mv1ONHw/3fE2Ww/4S3xSMaSs/2kal++5mYbN237nGceteq2lv9ksobfzpZ/JjVPNmbc74GMse5Pc1ENLsxrLaqIf9Na3FsZdx/wBWGLBcZx1JOcZq3T+yl/W7B6yb/rZGH4y0V9e8J3lpbnbdqontXHVZkO5D+YA/GsHTtQj8ceINCukX/RdNtBfzJ/duZAURD7qBIfriun1+91Ww03zdB0katdFwvkNcrAAp6sWYdvTrVDwV4bfw5o8wuxD9vv7mS8vDACIxI5ztXPO0DAH596Ud3/Wv9fkge39bf1+bOIsPDWh+LND1XxL4mvbj+1oLm5U3IvHjOneW7BFVQQFwoU8jnNXPDt/dX3ijwTeaqx+1XOgTl2fgyNmI5+pHNdPqPw68JavrX9rajodvPe5DNISwDn1ZQdrfiDV3xB4R0HxTawW2u6bHdRW5zENzIU9gVIIHA46cUo6Jf10a/UJat/11T/Qw/A91Be+LPGc9pMk0R1GJQ8bZBIhUHn2IIrtazdH8PaT4fE40axjs1nKmRYshSVUKOOg4Hbr1PNaVPol5L8hHhE1hrfirUtX1BfCNzq2oQ3s8FtqUfiBbZrPYxVFSLI27cA89eveum1PRLjxF4v8ACmn+JnnhlfRZW1CGCbZ5zAxbo2ZD90tycHnFdRrnw18I+I9Ra/1fRY5rp/vypLJEX9zsYZPua2YtB02G+s7yO22z2NsbW3fzG+SI4yuM4P3RycniiOiSf9aNDlq21/WqZw/hrwrpF6nirwjeW8k+iWeoRG3tXuJP3YMSPgNu3Y3c4zVf4XeBPCw0bT9fg08f2rBNMPPFxIdjLI6YK7tv3eOleiWelWVhe3t3aQ+XPfyLJcPvY72ChQcE4HAA4xWPF8PfC1v4mXxBb6RHFqayGQTRyuo3EEE7A23Jye1C3XyFbR/13PLrux1nxVres3p8IXOs3ltfT29tfx+IFtWsgjFUCRZG3AAPPUnPeus1ux1LUz4DsNcuLiyv5zIl69tKBJuFuS4DLnGcEEj1ODXQ678N/CXiTUDfazo0c90ww0qSyRF/rsYZPua1xoOmq2mEW3OlAiz/AHjfugU2evPynHOaSXu8r8vw/r59SnrJv1/E4rVvDf8Awrvwn4l1DwncTQW8topisy7OIJQSGlDux5IYH225+mB4X0DXrHxFpOoaR4NuNIjkmU398fEKXa3cLAhi6Z5OSGBHcdK9jlijnheKZFkjdSro4yGB6gjuK5bTvhj4P0jW4tX03Rlt72Fy8ciTy4UkEcLu29CeMU43UrsUtY2OSudF0DxTF4p1rxrK0smm309tAkt28UdoiABMKrAZbrznJNdv4A/5J14f/wCwfD/6AKW98CeGdR8QDW73R4JtRAH75t3JHAJXO0kepGeK2NPsLbS9Ot7Cwj8q2to1iiTcW2qBgDJyT+NEdI29Pwv+YS1lf1/H/Ir65oWneJNJl0zWrf7TZylS8e9kyQQRypB6gd689+GHgLwt/ZdtraacP7Utby4UTC4kyhWV1UFd2OFx1FepVza/D3wsniZfEEekRx6mshlE8crqN56tsDbSTk9qFpK4PWNjibfwZpnibVPGlzrL3UyW2oyfZ4EnaNIpBEh8wBSMt0HORx0qjq+o6trPhXwPp8lhNrcWo2LS3VqNRFmbt0RAA0h6/eLbQck89q9atdFsLM35trfZ/aEpmuvnY+Y5UKTyeOAOmKpXfg3w/feHLfQbzTI5tNtlCwwuzExgDAw2dwOO+c1KVopeS/Bajb96/r+Jznw10vW9IuNSt77QpdD0lhG1nZyakt4I25D7WByAflOD3zXfVieG/Bug+EY7hPD1j9jW5KmUedJJuIzj77HHU9K26tu5KOK8BTw2/wDwlaTypG0OuXUkgZgNinBDH0BHOa5C2bVH8I+BH8PfZPtz6jcvbm+DiEgrMctt+bG08Y9q9A1r4eeFfEOqLqOsaNDcXYxmXcyb8dNwUgN+Oa1pNF06WTT2a1Rf7NbdaKhKLCdpTgDAxtJGDxSWyv0t+A3u/O/4nH+A/tNzqXiS91+VP+Eh8xLe8t4o9kUKIpMfl8ksrBidx5PTHFa/w2/5Jtof/XqP5mtkaNYDWZNVWDbeywC3klDsN8YOQCucHBJ5xn3rmrT4R+CLG/hvbXRNlxBKssb/AGuc7WByDgvjrQvPy/C4HZ15z8QNHh13xppNleSSi1/su9kmjjcp5wUxEKSMHG7B98V6NVK50exvNQivrmDfcxQyQI+9hhHxvGAcc7Rz14qZJvbz/Joadvw/M8m8FiDQJ9J1q7u7uRr3wzNdX8rys7OI2j2YBOBtUkDH9TWdYW507xJ4d1XTfC13oqahfwqNTuNcE8t5E/UPDknkHJ9K9gtvCui2qWqQ2K7LS0ayhV3ZwIGxuQgk7gdo65NZmnfDLwdpV2t1YaHDFOkyzpJ5jsyOpyMEscDPYcH0rS/vJ/1u3+RFvda/rZL8zmY/B2m+LfiF4vXXWuZ7SCW32WiTvHHvMK/vCFIywwAM8daqaPezXXh74bXF9O0jjUZIjLI2ScRyqoJPU4AFen2uk2VlqF7e20Oy4v2Rrl97HzCq7V4JwMD0xWdP4K8PXPhmPw/caYkulxHdHAzudhyTkNncDknnPepWiSXl+BT1vfz/ABMG21OzT4t+IbgXCPHZaNCLgxnd5ZV5GIOO4BHFefLH9l1LRNf0nwte6Yt7qFv5etXWuCSa6jdwCHg3HO4HkDpXsOj+DvD+gFjo+lw2u+AW7hckOgJOGBPJyTyeT61nWnwu8GWN0bm00GCObzVmVxI5KMrBgVy3y8gcDAPTpTjpJPt/m3/X6g9U13/ysL8Q/wDkA2H/AGF7L/0etdXXLa78NfCfiXVX1LW9J+03cihWk+0ypkAYHCsB+lSz/D/wzc+F7fw7Npm7SraQyxW/2iUbWyxzu3bj95up70l8NvP/AC/yG7X/AK8yh4As4dQ+Gxs7pA8FxNexSKe6tcSgj9aw7R5tV8N6d4GunL3UF8bK/wAnk2tuQ+4+zqYl/wCB10em+B9D8FRXuo+ENC3agbdlWH7Y487uE3SMQuSBzik8KaFfjXNS8T+ILK3stT1FUiW1gk8zyIkHAZ+jMT1I4wFoW/8AXTb+vMTb/F/jv/XkdaAFAAGAOABXDfE61N8nhu0FzNa+frUUZmt32yIDG4O09jjvXc1yPxA8MN4rt9FsntPtdnHqcct4nm7MQhWDHOQe46c0dV6r8x7J+j/IzPD+i6b4U+J50jw28kdpcaY1xe2pneUJKJFCOdxJDMC31xWqn/JZZv8AsAp/6UNWnoPhHQvDFnLa6Fp0dpFN/rdpZmf6sxLHqe/esK3+D3gW1uYriDQ9ksTh0b7XOcMDkHl6admvK/43/K5L2fnb8LfnY5XxjDqHiL4iajps3haTxJa2EMJt7YayLJYty5Mm3ILEnIz0G3FaLy32l/C6HTfGGm6g91dX32S0sItQUzSqWLRxtOp6YGCcg4Fdj4i8EeHPFjRP4g0uO7kiGEk3sjgem5SDj2pv/CC+Gz4WXw42lo+koxdbd5HbaxJOQxO4HJPOe9SlaNv63/ruU9Xf+tv67HD/AA3t5tH+IF7pS6C/hy3bThM2n/2qL1S4kAEmcnacEjFRHQrXw/rqeIPEljPf7r4PF4jsNTdiqvL8iSQlgAvIU7QwxXoGheCfDvhmcTaFpcVnL5RhLozEspIOCSTu5A5OTVOD4aeD7bW/7Xh0K3W83+YHLMVDZzkITtBzzwKpPWL7f5k9Gu/+RxfjaG/8Q/EO70uXwxJ4ktLK1heC0GsCyWMtkmTGQXORjPQY967X4e22t2fhf7N4itZbSaK4kEEM10tw6QZyimRT82MkZ64Aq34i8FeHvFnlHxBpkd20Qwj7mR1HpuUg49s1c0LQdN8NaSmm6LbfZrSNmZY/MZ8EnJ5Yk9felHRNf1uOWrT/AK2NGvL/AAv4Y0TxfYyeJ/EdzPcawt1Lul+2PH/Z5SQhY1UMAoAAPI5znvXqFc1ffDrwnqWujWLzRIJL4OHMm5lDMO7KDtY/UGhaSuD1jY53W/Ddp4o+L81lqsk5sV0WN5baKVo1n/fOAHKkHAznAPXFc/Pe3+k/Du/0nSvPmt4fEr6ZHH9s8l1tt3EYmb7oPC5PQNXra6TZLrb6usOL54BbNLvbmMNuC4zjqeuM1WHhnRhp9/YtYRyWuozvcXUUhLrJI5BZuSccgdMY7UraW/r4r/loNu7v/Xw2/PU4PwHoWuaL4sRrbwjN4c0aW3kFzE2sreJJJwUcLnKtwRkdQaXwv4Y0TxfYyeJ/EdzPcawt1Lul+2PH/Z5SQhY1UMAoAAPI5znvXV+H/h54X8Lak2oaDpf2S5eMxl/Plf5SQSMMxHYdqL74deE9S10axeaJBJfBw5k3MoZh3ZQdrH6g1V9U/wCtybaNHNeN7/VdN8cSXGiRFphomJZUTzHgiNwN8ip/GyjkLn8+h7Hwpp2k6d4egGgyCe1nHnm6372uWbkyM38THv8AlxjFXjplodYGqGH/AEwQfZ/N3H/V7t23Gcde+M0zStFsNEimi0uD7PFNK0zRiRigZjk7VJIUE84XApR0jb+t2/68/wAG9Xf+tkv6/q90gMpDDIIwQe9eYI02neH9U8BW7lLpr8WVkc/MLSfMm8f7iCUf8Ar06VnSF2jTzHCkqmcbj6Z7Vx3h/R9V1Txa3ivxRpVvpd1Fa/ZLSzjnE7opJLO7gYJ5wAOgJ9aFq9duv9fh8x3stN/6/wCH+Rmah4f0rxF48/4RjWzIdK03S4XstNSZoklJZlZztILbQqgc8Z965/Ugtj4H8W6TZ3UlzpOmapapaSSymTygXiZ49x7Kx/DNemeIvB+geLI4k8QabHeeT/q2LMjL6gMpBx7ZqaDw1o1t4fbQ4NNt00x0KNbBPlYHrn1Pv1oTa1/re/8AwBNJ6dP+BY5zxBd28vxZ8IW0c8bzxxXkjxqwLKrRjaSPQ4OPpWHo/gTTvFy+IpdZuLuQx6zeJZos7JHaNvz5iqpGWyc5OegFdho3gDwv4engn0fSIraa3ZmjlDuzgsu05YkkjHY5A7Vsafpdnpa3C2EPlC5uHuZfmLbpHOWbknGfQcUafg/zuF3a3n+j/wAx2m201lpVpa3V013PDCkclwy7TKwABYjJxk89ap+J7a4vfDGoWtnfrp1xPCY4rpm2iNjwOeoyeMjnnitWq+oafaarp81jqMCXFrOu2SJxkMKJXlccfdaPP/BWmad4X8Vrp82hXGi6ne28hDRag11a3oUqWb5m3Bh1GVHBPJrnLXwpo134D1zxDq95dJd2d1fNZTG7dFs3WV9uxQQMlueckk16X4e8CeGvCtxJPoOkxWs0g2tLuaR8egZiSB7Cua8KfC3Ronm1TxFocb6s1/PMryzF1KGVih2hin3cds/jQ9X8v1Wwlovn+j3MTxZPq+val4f0m80GXXYZtHS7m08amLESzEgMzE4Lbf7o6bs11nw2sNb0zT7+11jS5dKtFnDWFpNfLdmKMqMqJAc4DDIB6Zrd8QeFdE8VWiW+v6fHeRxnKbiVZD3wykEfgap2fgDwzp/hy70G003y9NvW3zwefId54/iLbh90dD2p338/87/1uK23l/l/T6Ffwd/yHvF3/YX/APaEVJ4n/wCR68G/9fdz/wCkz0aL8MPCHh7V4dT0fSPs95Bny5ftMz7cgqeGcjoT2qG/+EvgnVNRuL++0Xzbm5kaWV/tcy7mY5JwHAHPpS6JdkvwK7+d/wAbjviV4Y0jX/CN9d6tafaJ9Ns7ia1fzXXy32ZzhSAeVHXPSqXir/kg0+OD/ZEX/oK1s6z8PvDHiC1sLfV9M+0RafF5Nqv2iVPLTAGMqwz90dc9KNP+H/hnS9CvdHsNM8qwvzm5h+0St5n/AAIsSPwIpNe7KPf/AIP+YJ+9Fvp/wP8AI5Q+F7Pwn4s8J3+nT3b3+pXLQX9zPcu5u1MLN8wJx1AIwBiuX8R6bb+JtY8SRXvh3Wtf1RruW30zULRm+y2wAAVCSwVdrZ3ZBBOa9qutHsb2exmuYN8mnyebbHew8ttpXPB54JHOa8i1L4f6jLreovqHgG11ue7u5Jk1SPWTaqqsflzEMHgYzgcnJ560PWX3/p93UUdF936/8A9Y8O6RFoPhyw0yCNYktoVQorFgG6tgkk4yTUfirUbXSfCepXuoPOltHbtva2OJORj5D2bJ4PY0nhXTL3RvCun6fql2by7t4QksxJO4+mTyQOmT6VoXtlbajYzWd9Ck9vOhSSKQZVgexqql22KnaKR434es5dD+ImgG18Kz+G01CSVZXfWvtTXieUzDfHkkcgHPrU9v4N07XdN8aapqsl1NLZ6nfNZItw6JbOvzb1VSAWJxyc9BXe6R8OPCeg3cN1pOjRW9xBIZI5hI7OrFSp5LE4wx46d8cVrW+gaba2d/awW22HUZZJrpfMY+Y8gw5yTkZ9sY7UparTez/QpPXXuv1/zOBbPi5vBuj+ILmY2F/oxvLiNJjH9smCx/KzAgkAMzYB/lV34bWGj6X4m8W2XhvYNPguLdECSmQK3lfMNxJJw2e9dJqfgnw7rGh2ekalpkdxY2SqttGzuDEFGAA4O7oB3571d0nw/pWheb/ZFlHaCVUV1jJ2kIMLxnA4Pbr3qm1dtdb/nf8NiLaL+uho15Re/DbwdcfFb7Fd6WDFd6dJeNGbqUeZN5wywIfPQ9Bx7V6vWJ4j8HaB4tjiTxDpsd55JPlsXZGXPUBlIOPbNR1T/rYvo0c14u0C2jm8G6Hpss+nWiXjwo1vIRIkYt5MqHOSMjIz15q3b/AAx0uwtdasNOmlh0vVrURPZM7yCObn98GZicnI4/2RXQweG9JtrfS4IbTbHpJzZL5jnyvlKevzfKSOc1PrF1f2WkzXGkad/ad4gHl2nnrD5nIB+duBgZP4U3az8wV7r+upwthezeL7bw3ot6MzWcjT6uh7PbNsCn/elw3uFNej1y/g3w/dadNqes6xBbwarrE4mnitzuSFVGFTd/EepJ7kmuopu/Xfd+pKt026ehw/xKms7mHTdEm0m71q6vpHaDT7e8+ypMEX5vMkyPlAOcetc14MubrSNF8bWsVt/wj6afAslvaSX/ANsSzcxMSRIM9wDjtXo3iLwponiu0jtvEGnpeRxNujyzKyHvhlII/Osu88EWOn+E9YsPB9ja2Fzf2vkjcCY2IBA3A5HRjzjnPOah3UZeZatzRPNPD/g7Ttf1rQJovCGt2l1byLcarqGpyOsc+EzlWL5Yl8EbQPcYrV8bxWfiDxDqs1r4Tu9dfS8RT3sutCyitHCA/u1LYOMgk461V0z4d6idSsf7P8FR+F7m2mjd9XXXGnJVSNwWMHksARzxzXo2pfDzwprGuf2vqWiW9xenG6Ri2HxxllB2sfqDVSV9vP8AT+uhEXbfy/r+rmZpOiWHjf4U6EvimFtQ/wBEjnJeV1YyBCNxKkEnBPWqujgL+z0QOg0SYD/vhq6HUvAfhvV9CstG1DTfOsLDH2aHz5F8vAwOQwJ4PcmotH+HfhbQbW/t9J0v7PFqMPkXS/aJW8xMEY+ZjjqeRg0S97m8yoPlcW+hwkfhi08P6N4N8R2s93JrN1eWUM93Lcu3mRSjDR7c7QoBwAB2FetXV/aWTQreXUFuZ3EcQlkC+Y56Kuep9hVSbw/plxp9jYzW2630+SKW2TzGHltH9w5zk498570av4e0rXZbOTVrNLl7GYT25YkeW478HnoODxVN3b9fw0/4JCVkvT8dSl4yu9bs/D7y+HYPNn3ASui75Yov4njjOA7gdFJH49Cvg600SHQUuPD032uK6JkmvHbdLcSd2kY87s8YOMdMDpW9VGLSbWza+m0yGK0ub075ZVTIaTGA5XIyfyzU7XK3sYukf8TvxtqWrn5rbTVOm2noXyGnYfjtT/gBrll8JaT4p8f+L/8AhIpJ5LK1lt2FsLloogxgXMjbSMkAcZOBzXoGgaPHoOhWumxSGbyU+eVhgyuTlnPuWJP41xx+Gml654717VvFOjrcxyywGxkadgGURANlVb+8P4hRbW3l+q/4cL9TY+G1zNdeA7NpriS6VJJooZ5DlpYllZUYnv8AKBzXVVHBBFa28cFtEkUMShEjRcKqjgAAdBUlNu7Egqjaf8hjUP8Atn/6DV6qNp/yGNQ/7Z/+g0hl6iiigAooooAo/wDMw/8Abr/7PV6qP/Mw/wDbr/7PV6gAorH8QSa5bJBeaCkN2sBJuLBxta4X/Yf+Fh2B4OcHHWp9D12x8Q6aLzTZCyhjHJG67XhkH3kdTyrD0o3A0aKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqNp/yGNQ/7Z/+g1eqjaf8hjUP+2f/AKDQBeooooAKKKKAKP8AzMP/AG6/+z1eqj/zMP8A26/+z1eoAx9f0vUNYSCztNRNhZOT9seEETuvZEbomect19Mdav6dp1npOnxWOm28dtbQrtSOMYA/+v796s0UAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABVG0/5DGof9s//AEGr1UbT/kMah/2z/wDQaAL1FFFABRRRQBR/5mH/ALdf/Z6vVUudPS4uBN500ThNmYn28Zz6Uz+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9RVH+y/wDp+vf+/wB/9aj+y/8Ap+vf+/3/ANagC9RVH+y/+n69/wC/3/1qP7L/AOn69/7/AH/1qAL1FUf7L/6fr3/v9/8AWo/sv/p+vf8Av9/9agC9RVH+y/8Ap+vf+/3/ANaj+y/+n69/7/f/AFqAL1FUf7L/AOn69/7/AH/1qP7L/wCn69/7/f8A1qAL1FUf7L/6fr3/AL/f/Wo/sv8A6fr3/v8Af/WoAvUVR/sv/p+vf+/3/wBaj+y/+n69/wC/3/1qAL1FUf7L/wCn69/7/f8A1qP7L/6fr3/v9/8AWoAvUVR/sv8A6fr3/v8Af/Wo/sv/AKfr3/v9/wDWoAvUVR/sv/p+vf8Av9/9aj+y/wDp+vf+/wB/9agC9RVH+y/+n69/7/f/AFqP7L/6fr3/AL/f/WoAvUVR/sv/AKfr3/v9/wDWo/sv/p+vf+/3/wBagC9VG0/5DGof9s//AEGj+y/+n69/7/f/AFqltLFLR5HWSWRpMbmkbJ4oAs0UUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAf/9k=\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c9e789ca-9191-4bf4-9c78-3bedf93190db" + "647d6f05-9083-49e9-b938-1d02ad29cd67" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1134,36 +1137,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:43 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZSE=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcB8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62a8463c-6fc2-4973-85f4-9565962909a4" + "b279b959-3e6c-41e4-a3e4-8cebf3836306" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1195" ], "x-ms-correlation-request-id": [ - "f6856922-4e44-4495-948b-98a96a0bc2e3" + "9a79612c-6fd5-4945-b603-c344ff24aeed" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041244Z:f6856922-4e44-4495-948b-98a96a0bc2e3" + "WESTUS2:20190411T020420Z:9a79612c-6fd5-4945-b603-c344ff24aeed" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:20 GMT" + ], "Content-Length": [ "558" ], @@ -1174,62 +1177,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888/attachments/newattachment6519\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues/attachments\",\r\n \"name\": \"newattachment6519\",\r\n \"properties\": {\r\n \"title\": \"attachment4219\",\r\n \"contentFormat\": \"link\",\r\n \"content\": \"https://apimgmtstkjpszvoe48cckrb.blob.core.windows.net/content/issue/newIssue8888/attachment/newattachment6519/attachment4219\"\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/issues/newIssue2091/attachments/newattachment8001\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/issues/attachments\",\r\n \"name\": \"newattachment8001\",\r\n \"properties\": {\r\n \"title\": \"attachment2024\",\r\n \"contentFormat\": \"link\",\r\n \"content\": \"https://apimgmtstkjpszvoe48cckrb.blob.core.windows.net/content/issue/newIssue2091/attachment/newattachment8001/attachment2024\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888/attachments/newattachment6519?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODgvYXR0YWNobWVudHMvbmV3YXR0YWNobWVudDY1MTk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/attachments/newattachment8001?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvYXR0YWNobWVudHMvbmV3YXR0YWNobWVudDgwMDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c456d3c4-cea4-471b-88a9-ed1ed60ec18b" + "9a4ccbcd-a604-470b-a436-6a6453db1725" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:43 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZSE=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcB8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "054bdc92-1605-4c9b-884d-64b88c444443" + "2f6a4fbe-1bdb-4333-bf3e-b8d9679be196" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11989" ], "x-ms-correlation-request-id": [ - "02fde17f-6424-43eb-be3a-684c245a9e9f" + "e3cd3dc0-e06b-4ed9-96bc-97182174bac3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041244Z:02fde17f-6424-43eb-be3a-684c245a9e9f" + "WESTUS2:20190411T020420Z:e3cd3dc0-e06b-4ed9-96bc-97182174bac3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:20 GMT" + ], "Content-Length": [ "0" ], @@ -1241,121 +1244,121 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888/attachments/newattachment6519?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODgvYXR0YWNobWVudHMvbmV3YXR0YWNobWVudDY1MTk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/attachments/newattachment8001?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvYXR0YWNobWVudHMvbmV3YXR0YWNobWVudDgwMDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e71a2452-f8ea-4c13-b474-5c0c38e11dcf" + "07efbe03-1da0-4e57-9f0c-76f92358a0c4" ], "If-Match": [ - "\"AAAAAAAAZSE=\"" + "\"AAAAAAAAcB8=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "487eb366-b048-4362-a371-18d493487f69" + "5dbbabdd-86ca-4b9d-8373-b9a2fee7fc6b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "0c4c1aa4-6172-439d-8b67-95c8aedc0d29" + "8a27a597-19c4-4108-b8b4-ba716d6e9c11" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041245Z:0c4c1aa4-6172-439d-8b67-95c8aedc0d29" + "WESTUS2:20190411T020421Z:8a27a597-19c4-4108-b8b4-ba716d6e9c11" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:04:20 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888/attachments/newattachment6519?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODgvYXR0YWNobWVudHMvbmV3YXR0YWNobWVudDY1MTk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/attachments/newattachment8001?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvYXR0YWNobWVudHMvbmV3YXR0YWNobWVudDgwMDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "acf18c6c-5917-4d55-a2ce-3ad07fc30f52" + "a4852634-11fa-43dd-b02f-5f4f467c1fa4" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "feadf60e-e570-48ba-bd5c-7bab6a9dd028" + "50f30995-f7ce-4dba-9660-ef86783d2eaf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "76e087af-b92c-4417-835e-00e6f164267d" + "dad69d30-c8d4-4d9b-9dd6-8f382306f1c6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041246Z:76e087af-b92c-4417-835e-00e6f164267d" + "WESTUS2:20190411T020421Z:dad69d30-c8d4-4d9b-9dd6-8f382306f1c6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:21 GMT" + ], "Expires": [ "-1" ] @@ -1364,55 +1367,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888/attachments/newattachment6519?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODgvYXR0YWNobWVudHMvbmV3YXR0YWNobWVudDY1MTk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091/attachments/newattachment8001?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTEvYXR0YWNobWVudHMvbmV3YXR0YWNobWVudDgwMDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78f7295c-7055-4b31-aa44-95fcfe264975" + "9a742ac4-2e3f-41fe-8691-c689137d2ee1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "80fd58bf-a38f-443e-9065-624f4900354e" + "29f43349-c02d-4545-a744-5e83a3717f44" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11988" ], "x-ms-correlation-request-id": [ - "fa67e9fa-0988-4f2d-8421-e4235ac05760" + "b4b1ba80-4092-4427-b4bb-11e43844aba4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041245Z:fa67e9fa-0988-4f2d-8421-e4235ac05760" + "WESTUS2:20190411T020421Z:b4b1ba80-4092-4427-b4bb-11e43844aba4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:20 GMT" + ], "Content-Length": [ "92" ], @@ -1427,58 +1430,58 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "750fbe24-d430-42b7-a1af-e87e5e052316" + "64c1ec11-6887-4f4f-a97b-48c262035ce1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:44 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZR8=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcB0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7bfc94d3-045c-4177-a250-c4f19aea9904" + "55721821-2dad-4e06-84ed-72162da5ad42" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11987" ], "x-ms-correlation-request-id": [ - "a893cfba-5eb5-4016-b670-7d609913279e" + "be43b2e8-b4cb-4930-8996-bd666a79076f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041245Z:a893cfba-5eb5-4016-b670-7d609913279e" + "WESTUS2:20190411T020421Z:be43b2e8-b4cb-4930-8996-bd666a79076f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:21 GMT" + ], "Content-Length": [ "0" ], @@ -1490,121 +1493,121 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a241b22a-be6a-41e0-97c2-b6c061049f3e" + "79c106e8-bab2-4954-97f5-5825dd858cbd" ], "If-Match": [ - "\"AAAAAAAAZR8=\"" + "\"AAAAAAAAcB0=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bc4ed633-82f9-456b-8bc4-0be80e5e9b23" + "010fd6df-26fa-416d-896a-e06e41965d52" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "0dece258-fbb2-447d-afe2-ca8ce934f291" + "71279abc-dc87-4712-add3-9195501b2fde" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041245Z:0dece258-fbb2-447d-afe2-ca8ce934f291" + "WESTUS2:20190411T020421Z:71279abc-dc87-4712-add3-9195501b2fde" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:04:21 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue8888?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTg4ODg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/issues/newIssue2091?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL2lzc3Vlcy9uZXdJc3N1ZTIwOTE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "219897bc-ffef-4830-8824-69855fd42670" + "09aee579-cd5b-41cd-a88f-73899259891a" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fe79ca22-cbc4-43ab-b1b2-1c1ce53584df" + "44839ca2-3a65-496b-b484-ec65bbd61e3d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14994" ], "x-ms-correlation-request-id": [ - "ac4f295b-035f-4921-b509-65a58466c6ef" + "4d6cdf7e-df90-4dd7-9200-10f898f07565" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041246Z:ac4f295b-035f-4921-b509-65a58466c6ef" + "WESTUS2:20190411T020422Z:4d6cdf7e-df90-4dd7-9200-10f898f07565" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:21 GMT" + ], "Expires": [ "-1" ] @@ -1615,15 +1618,15 @@ ], "Names": { "CreateUpdateDelete": [ - "newIssue8888", - "newComment675", - "newattachment6519", - "title9046", - "description3263", - "updatedTitle9659", - "updateddescription8458", - "issuecommenttext8449", - "attachment4219" + "newIssue2091", + "newComment8192", + "newattachment8001", + "title2214", + "description9766", + "updatedTitle5641", + "updateddescription6264", + "issuecommenttext6995", + "attachment2024" ] }, "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 dde8d06f52a7..0e2ee6d69453 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8519543e-4983-4445-9815-4c79616fb3d8" + "1afd1b57-5993-42ea-8db4-9d8964b330cb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:20 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f92a2d17-d892-428d-89ca-870993be694f", - "7bedb83f-9fc3-4853-8533-c5e114873776" + "902980ae-cc07-4b22-a32e-45fd376f79b4", + "fd35dd5a-8577-41d3-b1f3-77bd52111a24" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "f70de2cc-0785-4b7b-8860-872f7c64cd3d" + "5b498c7c-c3d9-4151-9fb4-6b5b1a30c644" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040720Z:f70de2cc-0785-4b7b-8860-872f7c64cd3d" + "WESTUS2:20190411T021439Z:5b498c7c-c3d9-4151-9fb4-6b5b1a30c644" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:38 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94ba8157-0151-42dd-b881-77b4ad459b96" + "b7e041b2-2bef-49ff-a599-5b8467610d34" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:20 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "be6fd8d2-3ce7-4a2d-89be-496a77579208" + "ef725a14-f689-4276-998a-3542359ed9b0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-correlation-request-id": [ - "c4b86069-2433-4cee-ab54-e000904ab937" + "8ead3eb3-d50c-4a8b-889f-c9335eb303d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040721Z:c4b86069-2433-4cee-ab54-e000904ab937" + "WESTUS2:20190411T021439Z:8ead3eb3-d50c-4a8b-889f-c9335eb303d9" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:39 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight1231?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDEyMzE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDIzNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"newloggerDescription2687\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"9234c751-0f73-4a17-bd3f-1409e0601b60\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"newloggerDescription4739\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"a91fcd4f-5e9b-4dac-a2cc-a361c9023840\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2380e284-7754-480d-8f42-190a62961543" + "892c267a-437d-4a14-bbb4-004494b989eb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,36 +168,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:21 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZB0=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAchM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6be3c737-79c6-4321-a354-9292e44242b8" + "f0084e69-8c40-4e9e-933d-33983f9875b0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "ea3da3fd-04d3-4a86-9ac4-1578b6e03f0a" + "2c558c15-50ba-441b-91a3-2cbd9c252418" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040722Z:ea3da3fd-04d3-4a86-9ac4-1578b6e03f0a" + "WESTUS2:20190411T021440Z:2c558c15-50ba-441b-91a3-2cbd9c252418" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:39 GMT" + ], "Content-Length": [ "556" ], @@ -208,59 +208,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight1231\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"applicationInsight1231\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"newloggerDescription2687\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5ca2dff9b5974412ac07db5f}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"applicationInsight2357\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"newloggerDescription4739\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5caea30fb597440f487b0e40}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a7a5975-799d-4184-8802-6c6e334351c1" + "9b41fdfb-8a92-48bf-91e1-51a919109d5a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:21 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55f865fd-0305-42f4-b92e-2af721a11f88" + "2c59cdfd-440f-4d70-8a44-629acaf40ab1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-correlation-request-id": [ - "44c56fdf-b41b-4b87-9fb3-82407eed839d" + "1d46d99d-9385-4af0-8ff5-aec9d98b18ba" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040722Z:44c56fdf-b41b-4b87-9fb3-82407eed839d" + "WESTUS2:20190411T021440Z:1d46d99d-9385-4af0-8ff5-aec9d98b18ba" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:40 GMT" + ], "Content-Length": [ "637" ], @@ -271,62 +271,62 @@ "-1" ] }, - "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/applicationInsight1231\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"applicationInsight1231\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"newloggerDescription2687\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5ca2dff9b5974412ac07db5f}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n }\r\n ]\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/applicationInsight2357\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"applicationInsight2357\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"newloggerDescription4739\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5caea30fb597440f487b0e40}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight1231?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDEyMzE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDIzNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94c602ef-02e1-4aff-9c70-769e4a0cdff6" + "e532531d-2a7d-42d5-a93b-a979f5d75348" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:21 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZB0=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAchM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86589ab6-4bf9-4a91-b44f-54cef8b4dea4" + "06584606-7bd3-4a25-b776-abafa471211d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-correlation-request-id": [ - "f1c5b3bf-3899-41c9-8cf2-295899e0b1ca" + "08b1f92d-6582-4b94-bc47-b710e503d757" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040722Z:f1c5b3bf-3899-41c9-8cf2-295899e0b1ca" + "WESTUS2:20190411T021440Z:08b1f92d-6582-4b94-bc47-b710e503d757" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:40 GMT" + ], "Content-Length": [ "0" ], @@ -338,58 +338,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight1231?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDEyMzE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDIzNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9934961f-7fc6-4154-aef8-6940e90bad82" + "f7786a45-c803-4143-afb4-171ffb6c8f93" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:22 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZB8=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAchU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91b42878-2a9d-4fc4-9c80-642451ef0a8d" + "723237d8-3194-4959-bd60-dc83cdbc16e6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11991" ], "x-ms-correlation-request-id": [ - "c25275e3-8653-4a3e-9dbb-3a24302544cd" + "c02d6039-5ed1-4bc2-a3a8-b9ef5d2dc5f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040722Z:c25275e3-8653-4a3e-9dbb-3a24302544cd" + "WESTUS2:20190411T021441Z:c02d6039-5ed1-4bc2-a3a8-b9ef5d2dc5f0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:40 GMT" + ], "Content-Length": [ "0" ], @@ -401,64 +401,64 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight1231?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDEyMzE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDIzNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"patchedDescription4238\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"patchedDescription453\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1c127ab5-075f-4c18-82a0-56f21e7e6709" + "81536722-1a7b-4318-99b2-0a6600748186" ], "If-Match": [ - "\"AAAAAAAAZB0=\"" + "\"AAAAAAAAchM=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "115" + "114" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:21 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bf1be860-7cea-4d67-8d79-fff1edcd9771" + "480ab35b-cedd-4fb3-bf3c-f56473c5b427" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-correlation-request-id": [ - "4a75487b-f3ee-4fd6-a788-35aaa6f41c83" + "f87be578-0dab-4285-9e64-08f1ca3cb066" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040722Z:4a75487b-f3ee-4fd6-a788-35aaa6f41c83" + "WESTUS2:20190411T021441Z:f87be578-0dab-4285-9e64-08f1ca3cb066" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:40 GMT" + ], "Expires": [ "-1" ] @@ -467,60 +467,60 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight1231?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDEyMzE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDIzNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1dd6c1f3-8e43-47fd-a87d-685fe2ccb88d" + "ac3573b5-79df-4d4e-a64d-4e24e0c18ab5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:21 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZB8=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAchU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c89976ed-ef77-4bf2-ad78-76657446509d" + "ad2dc409-7772-400c-8da0-5d3e5cb6d1a5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11992" ], "x-ms-correlation-request-id": [ - "899353f9-6acb-491c-9458-9540af935031" + "758cde65-2494-4775-88cd-cb6861b98950" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040722Z:899353f9-6acb-491c-9458-9540af935031" + "WESTUS2:20190411T021441Z:758cde65-2494-4775-88cd-cb6861b98950" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:40 GMT" + ], "Content-Length": [ - "554" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -529,59 +529,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight1231\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"applicationInsight1231\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"patchedDescription4238\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5ca2dff9b5974412ac07db5f}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"applicationInsight2357\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"patchedDescription453\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5caea30fb597440f487b0e40}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight1231?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDEyMzE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDIzNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c65ea08a-3955-4f3b-86de-de310b92761a" + "0e57e94f-ec5b-4bd0-9ca4-a4191185c00b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "937a0a6a-7b91-4144-bab6-2824ab99f61d" + "23145aa9-23f1-4599-80be-ebab20f26667" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11990" ], "x-ms-correlation-request-id": [ - "0f8ceffb-163f-4728-b418-ce9362a0e7ed" + "e5d9adaa-4342-465e-a08d-4cbe3dd50fa8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040723Z:0f8ceffb-163f-4728-b418-ce9362a0e7ed" + "WESTUS2:20190411T021441Z:e5d9adaa-4342-465e-a08d-4cbe3dd50fa8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:41 GMT" + ], "Content-Length": [ "82" ], @@ -596,121 +596,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight1231?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDEyMzE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDIzNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4111f370-b3a5-419c-8c1c-7490d9f2831a" + "ab4d4e25-df44-465a-81ff-33a9d7fde759" ], "If-Match": [ - "\"AAAAAAAAZB8=\"" + "\"AAAAAAAAchU=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:22 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f60684ee-0455-463b-9975-c377e02b5019" + "2c11dbfe-aa2d-482d-9d83-4d5aa8ed1267" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "385efe35-e0e9-42e1-bcd5-5f1cb3b36fec" + "eac9042c-1a6a-4c42-a12a-7fc2ed731970" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040723Z:385efe35-e0e9-42e1-bcd5-5f1cb3b36fec" + "WESTUS2:20190411T021441Z:eac9042c-1a6a-4c42-a12a-7fc2ed731970" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:14:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight1231?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDEyMzE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight2357?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDIzNTc/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d84cf81c-d971-4fc8-a717-a8098a3a0105" + "081b55dd-1ce1-44a2-aee9-a13e50ae5a83" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e7fd3c25-7737-4861-add7-a23496d5b45e" + "2e80ff1c-d481-4098-b840-52c9db5375dc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "e0e77f70-b9ad-4fc1-933e-0fff32c8ed19" + "e7988217-b810-43e4-a0fe-766d4c521ff2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040723Z:e0e77f70-b9ad-4fc1-933e-0fff32c8ed19" + "WESTUS2:20190411T021441Z:e7988217-b810-43e4-a0fe-766d4c521ff2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:41 GMT" + ], "Expires": [ "-1" ] @@ -719,57 +719,57 @@ "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=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38cd474e-8db5-4bff-b979-79fda4fa1c41" + "0105c3e3-6928-4e3b-9b97-4f59f7063fd5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d8cc6b8-5e85-48f0-9e59-e189ceb981f0" + "fb626d78-47f8-4360-97c4-b6a3041fa874" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-correlation-request-id": [ - "a754a9ec-54c1-4627-9a12-7a34062513e8" + "1666f326-559d-412c-b168-be47cad20113" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040724Z:a754a9ec-54c1-4627-9a12-7a34062513e8" + "WESTUS2:20190411T021442Z:1666f326-559d-412c-b168-be47cad20113" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:41 GMT" + ], "Content-Length": [ - "547" + "1597" ], "Content-Type": [ "application/json; charset=utf-8" @@ -778,67 +778,193 @@ "-1" ] }, - "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/5ca2dff9b5974412ac07db5e\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5ca2dff9b5974412ac07db5e\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5ca2dff9b5974412ac07db5f\",\r\n \"value\": \"9234c751-0f73-4a17-bd3f-1409e0601b60\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ]\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/5caea0bab597440f487b0da3\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5caea0bab597440f487b0da3\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5caea0bab597440f487b0da4\",\r\n \"value\": \"8265566f-dafe-46a1-ba11-55c9ef4bbf14\",\r\n \"tags\": null,\r\n \"secret\": true\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/5caea1d8b597440f487b0de6\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5caea1d8b597440f487b0de6\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5caea1d8b597440f487b0de7\",\r\n \"value\": \"9077a65a-e8ff-46a0-93d1-e4ac43ebb7bc\",\r\n \"tags\": null,\r\n \"secret\": true\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/5caea30fb597440f487b0e3f\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5caea30fb597440f487b0e3f\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5caea30fb597440f487b0e40\",\r\n \"value\": \"a91fcd4f-5e9b-4dac-a2cc-a361c9023840\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5ca2dff9b5974412ac07db5e?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzLzVjYTJkZmY5YjU5NzQ0MTJhYzA3ZGI1ZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5caea0bab597440f487b0da3?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzLzVjYWVhMGJhYjU5NzQ0MGY0ODdiMGRhMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "246af15d-dd1f-4df7-b20e-794bf9250e62" + "6aec5b17-1c68-4388-94f7-dfb2fe8baf22" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:23 GMT" - ], "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7954c248-a930-41b5-bb5b-6657e3f25b09" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "5db08186-4c45-4acc-9d06-749eb11ead83" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021442Z:5db08186-4c45-4acc-9d06-749eb11ead83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:14:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5caea1d8b597440f487b0de6?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzLzVjYWVhMWQ4YjU5NzQ0MGY0ODdiMGRlNj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5788833-85a8-475c-9a97-10cfc0891e0d" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7d504c1c-fba6-4592-8dfe-d36521c4c13f" + "fb2833a2-1382-4be0-802c-59a220082c2b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14996" ], "x-ms-correlation-request-id": [ - "92c18d04-f857-45a3-bdba-9c9d514aa3fd" + "b449c3e7-4af7-4ddf-9592-c9e9facc3fd8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040724Z:92c18d04-f857-45a3-bdba-9c9d514aa3fd" + "WESTUS2:20190411T021442Z:b449c3e7-4af7-4ddf-9592-c9e9facc3fd8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:41 GMT" + ], + "Expires": [ + "-1" + ], "Content-Length": [ "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5caea30fb597440f487b0e3f?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzLzVjYWVhMzBmYjU5NzQ0MGY0ODdiMGUzZj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2391e26-33c7-4315-a257-803782906077" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c18fc125-e26c-4aa0-9d32-27f23464192d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "1d3d5d12-7818-47f6-9dfc-06e178a78b3a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T021442Z:1d3d5d12-7818-47f6-9dfc-06e178a78b3a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:14:42 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -847,12 +973,12 @@ ], "Names": { "CreateListUpdateDeleteApplicationInsights": [ - "applicationInsight1231", - "newloggerDescription2687", - "patchedDescription4238" + "applicationInsight2357", + "newloggerDescription4739", + "patchedDescription453" ], "appInsights": [ - "9234c751-0f73-4a17-bd3f-1409e0601b60" + "a91fcd4f-5e9b-4dac-a2cc-a361c9023840" ] }, "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 63b98e88788b..42a89fbd3bab 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a07b3ff3-9124-4e06-8b7a-8280f7cc808b" + "b3958962-c6d7-4de3-9316-e8c36a93ab98" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:24 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55d3e645-ed1f-4a43-b910-215211ad4585", - "02ab1c28-9be4-468a-8c76-387494a58c91" + "28dbc92c-7ab0-43c3-99bb-8c95222faa5c", + "e9cc79ed-ff12-499e-ba8a-850efa13b96c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "b0bc662e-a74e-4782-8ab8-67c19334c863" + "e2714aba-a3e6-482e-9dad-b4bda95962f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040725Z:b0bc662e-a74e-4782-8ab8-67c19334c863" + "WESTUS2:20190411T021444Z:e2714aba-a3e6-482e-9dad-b4bda95962f8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:44 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02888b5a-f3db-4ca5-81b5-58c64001684a" + "6ae2ebdd-887e-4f22-9dd7-20896f1209b6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:25 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "05f260d9-1fa4-4964-8aa8-31077c6bdf40" + "8c7e29d0-1897-476c-bfea-7596add1171b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-correlation-request-id": [ - "67d872b0-53ed-4e1c-a982-4f94dfa6022d" + "a36c1081-cf4d-45c2-a6fa-6eea745ac850" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040726Z:67d872b0-53ed-4e1c-a982-4f94dfa6022d" + "WESTUS2:20190411T021444Z:a36c1081-cf4d-45c2-a6fa-6eea745ac850" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:44 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,23 +136,23 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace9432?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U5NDMyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2MTY/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"CentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2abe5a4d-7a64-495f-ac5b-6b7972964d3a" + "3984c2c6-7a4e-482b-a513-46aa00ae4acf" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" @@ -168,30 +168,27 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:26 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "87a55ef0-e989-443f-aeb5-64f2d5f5806c_M2CH3_M2CH3" + "debd5572-bb5a-4736-ae20-ae8f10e92b82_M10CH3_M10CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "45517b6a-a2e0-46da-9c8a-827efba7458a" + "8a09e374-0a61-4207-b978-09f1175e55a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040727Z:45517b6a-a2e0-46da-9c8a-827efba7458a" + "WESTUS2:20190411T021445Z:8a09e374-0a61-4207-b978-09f1175e55a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,8 +196,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:45 GMT" + ], "Content-Length": [ - "460" + "457" ], "Content-Type": [ "application/json; charset=utf-8" @@ -209,17 +209,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace9432\",\r\n \"name\": \"eventHubNamespace9432\",\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:eventhubnamespace9432\",\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/eventHubNamespace616\",\r\n \"name\": \"eventHubNamespace616\",\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:eventhubnamespace616\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace9432?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U5NDMyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2MTY/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" @@ -229,30 +229,27 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:57 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "0a120c77-4e2a-4239-b6c7-439f23df3395_M7CH3_M7CH3" + "4def4b78-7aeb-4561-a8f5-000f19221373_M3CH3_M3CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-correlation-request-id": [ - "3156721e-63f5-4046-9c6d-9b5d118973fb" + "98d245f8-c36b-4527-bcf8-0dde573864b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040757Z:3156721e-63f5-4046-9c6d-9b5d118973fb" + "WESTUS2:20190411T021515Z:98d245f8-c36b-4527-bcf8-0dde573864b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -260,8 +257,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:15:15 GMT" + ], "Content-Length": [ - "773" + "769" ], "Content-Type": [ "application/json; charset=utf-8" @@ -270,23 +270,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace9432\",\r\n \"name\": \"eventHubNamespace9432\",\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:eventhubnamespace9432\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-04-02T04:07:26.783Z\",\r\n \"serviceBusEndpoint\": \"https://eventHubNamespace9432.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"scaleUnit\": \"DM2-513\",\r\n \"dataCenter\": \"DM2\",\r\n \"updatedAt\": \"2019-04-02T04:07:54.74Z\",\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/eventHubNamespace616\",\r\n \"name\": \"eventHubNamespace616\",\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:eventhubnamespace616\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-04-11T02:14:44.95Z\",\r\n \"serviceBusEndpoint\": \"https://eventHubNamespace616.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"scaleUnit\": \"DM2-513\",\r\n \"dataCenter\": \"DM2\",\r\n \"updatedAt\": \"2019-04-11T02:15:13.957Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace9432/eventhubs/eventhubname7984?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U5NDMyL2V2ZW50aHVicy9ldmVudGh1Ym5hbWU3OTg0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616/eventhubs/eventhubname6350?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2MTYvZXZlbnRodWJzL2V2ZW50aHVibmFtZTYzNTA/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"CentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0d8f5143-1473-4912-a083-36794bbe1348" + "d9db88e8-2955-421b-a57e-31f0ad674e6e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" @@ -302,30 +302,27 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "3698e182-79b7-4e6b-b9a6-e831df2e500b_M7CH3_M7CH3" + "5d810c07-7980-4aa4-a2df-22de1ba02150_M3CH3_M3CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "5b8b4fa8-7039-4d59-8f95-4255f3c4179b" + "6d198d06-fdd8-4539-b930-3cf3ff22c913" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040805Z:5b8b4fa8-7039-4d59-8f95-4255f3c4179b" + "WESTUS2:20190411T021523Z:6d198d06-fdd8-4539-b930-3cf3ff22c913" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -333,6 +330,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:15:23 GMT" + ], "Content-Length": [ "501" ], @@ -343,23 +343,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace9432/eventhubs/eventhubname7984\",\r\n \"name\": \"eventhubname7984\",\r\n \"type\": \"Microsoft.EventHub/EventHubs\",\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"eventhubname7984\",\r\n \"messageRetentionInDays\": 7,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-04-02T04:07:59.32Z\",\r\n \"updatedAt\": \"2019-04-02T04:07:59.933Z\",\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/eventHubNamespace616/eventhubs/eventhubname6350\",\r\n \"name\": \"eventhubname6350\",\r\n \"type\": \"Microsoft.EventHub/EventHubs\",\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"eventhubname6350\",\r\n \"messageRetentionInDays\": 7,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-04-11T02:15:17.357Z\",\r\n \"updatedAt\": \"2019-04-11T02:15:17.713Z\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace9432/eventhubs/eventhubname7984/authorizationRules/sendPolicy2107?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U5NDMyL2V2ZW50aHVicy9ldmVudGh1Ym5hbWU3OTg0L2F1dGhvcml6YXRpb25SdWxlcy9zZW5kUG9saWN5MjEwNz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616/eventhubs/eventhubname6350/authorizationRules/sendPolicy9946?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2MTYvZXZlbnRodWJzL2V2ZW50aHVibmFtZTYzNTAvYXV0aG9yaXphdGlvblJ1bGVzL3NlbmRQb2xpY3k5OTQ2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d896d50d-de88-4629-90d5-625487189c8e" + "73922027-73b7-4cae-a3a7-a2dae0dbb714" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" @@ -375,30 +375,27 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "80506da9-ca24-4edd-ba6c-029892792b9f_M3CH3_M3CH3" + "4a44ba70-5966-4626-85d3-2b4455aed680_M3CH3_M3CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" + ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "a80c9438-68d0-418a-b8e6-b41abe9bfee3" + "f88a0125-96e7-48d9-b8c8-1a039284c3cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040815Z:a80c9438-68d0-418a-b8e6-b41abe9bfee3" + "WESTUS2:20190411T021529Z:f88a0125-96e7-48d9-b8c8-1a039284c3cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -406,8 +403,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:15:28 GMT" + ], "Content-Length": [ - "360" + "359" ], "Content-Type": [ "application/json; charset=utf-8" @@ -416,23 +416,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace9432/eventhubs/eventhubname7984/authorizationRules/sendPolicy2107\",\r\n \"name\": \"sendPolicy2107\",\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/eventHubNamespace616/eventhubs/eventhubname6350/authorizationRules/sendPolicy9946\",\r\n \"name\": \"sendPolicy9946\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace9432/eventhubs/eventhubname7984/authorizationRules/sendPolicy2107/ListKeys?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U5NDMyL2V2ZW50aHVicy9ldmVudGh1Ym5hbWU3OTg0L2F1dGhvcml6YXRpb25SdWxlcy9zZW5kUG9saWN5MjEwNy9MaXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616/eventhubs/eventhubname6350/authorizationRules/sendPolicy9946/ListKeys?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2MTYvZXZlbnRodWJzL2V2ZW50aHVibmFtZTYzNTAvYXV0aG9yaXphdGlvblJ1bGVzL3NlbmRQb2xpY3k5OTQ2L0xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b237528-b189-4fa1-8c5e-b402c89a4512" + "e5a84fc9-615b-41cf-aaf4-03b42cbd3187" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" @@ -442,30 +442,27 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:15 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "ef06808e-11cf-482d-b56c-8ad3512c4fe0_M3CH3_M3CH3" + "1d9e4c4b-b2a6-425a-bc43-5e0712a12090_M6CH3_M6CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "ce30544d-d85b-48ac-ad42-63e8dfd3455b" + "dad74bfc-4ce5-4686-a38c-8851dadcaae9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040815Z:ce30544d-d85b-48ac-ad42-63e8dfd3455b" + "WESTUS2:20190411T021529Z:dad74bfc-4ce5-4686-a38c-8851dadcaae9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -473,8 +470,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:15:29 GMT" + ], "Content-Length": [ - "576" + "574" ], "Content-Type": [ "application/json; charset=utf-8" @@ -483,68 +483,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://eventhubnamespace9432.servicebus.windows.net/;SharedAccessKeyName=sendPolicy2107;SharedAccessKey=Ts8lPKE2XGAvhFq+92HXSueVy2HIQ93E7J3w9iYIKvE=;EntityPath=eventhubname7984\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://eventhubnamespace9432.servicebus.windows.net/;SharedAccessKeyName=sendPolicy2107;SharedAccessKey=SJjP1fY5zJjVaBHQ1I8MEcZYQvj2bu57wFHZQ+AQoo0=;EntityPath=eventhubname7984\",\r\n \"primaryKey\": \"Ts8lPKE2XGAvhFq+92HXSueVy2HIQ93E7J3w9iYIKvE=\",\r\n \"secondaryKey\": \"SJjP1fY5zJjVaBHQ1I8MEcZYQvj2bu57wFHZQ+AQoo0=\",\r\n \"keyName\": \"sendPolicy2107\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://eventhubnamespace616.servicebus.windows.net/;SharedAccessKeyName=sendPolicy9946;SharedAccessKey=UgkjkMbhSpQPtIq+MAL9I70ih5hoJuZtzzqezDXi/TU=;EntityPath=eventhubname6350\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://eventhubnamespace616.servicebus.windows.net/;SharedAccessKeyName=sendPolicy9946;SharedAccessKey=K5lpWjggQufIUwo3j6Uf/d3fDK98ObHN9xx1kxCsRL4=;EntityPath=eventhubname6350\",\r\n \"primaryKey\": \"UgkjkMbhSpQPtIq+MAL9I70ih5hoJuZtzzqezDXi/TU=\",\r\n \"secondaryKey\": \"K5lpWjggQufIUwo3j6Uf/d3fDK98ObHN9xx1kxCsRL4=\",\r\n \"keyName\": \"sendPolicy9946\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7127?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjcxMjc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjc2NjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"newloggerDescription7603\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname7984\",\r\n \"connectionString\": \"Endpoint=sb://eventhubnamespace9432.servicebus.windows.net/;SharedAccessKeyName=sendPolicy2107;SharedAccessKey=Ts8lPKE2XGAvhFq+92HXSueVy2HIQ93E7J3w9iYIKvE=;EntityPath=eventhubname7984\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"newloggerDescription1135\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname6350\",\r\n \"connectionString\": \"Endpoint=sb://eventhubnamespace616.servicebus.windows.net/;SharedAccessKeyName=sendPolicy9946;SharedAccessKey=UgkjkMbhSpQPtIq+MAL9I70ih5hoJuZtzzqezDXi/TU=;EntityPath=eventhubname6350\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "93e09efe-c003-446f-b732-75b3a364c864" + "c1ad0a1b-574c-4535-a825-27a9378ab98f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "389" + "388" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:16 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZCY=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAchw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6d091409-009f-4b40-ac52-0dd2562c3cfb" + "f477126b-6d0a-497e-8d3a-4fb4524b7c1b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "afa1bf55-c1af-443b-84ac-41f1dc8b5ed9" + "1a590dc9-03d7-46a2-a522-e5244d961ffc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040817Z:afa1bf55-c1af-443b-84ac-41f1dc8b5ed9" + "WESTUS2:20190411T021530Z:1a590dc9-03d7-46a2-a522-e5244d961ffc" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:15:29 GMT" + ], "Content-Length": [ "565" ], @@ -555,59 +555,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7127\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"newlogger7127\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"newloggerDescription7603\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname7984\",\r\n \"connectionString\": \"{{Logger-Credentials-5ca2e030b5974412ac07db65}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"newlogger7665\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"newloggerDescription1135\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname6350\",\r\n \"connectionString\": \"{{Logger-Credentials-5caea342b597440f487b0e48}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1b3b066-e046-450a-998e-a63d42931c8c" + "d396e419-62d4-4c25-86c1-0024dcb8af99" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:16 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d2291d52-0522-432d-9c12-2a62c724d56f" + "d44f3dc1-3c11-4017-b60f-b28126ade9ff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-correlation-request-id": [ - "11763297-4fa9-48c0-84dc-661efbfcd664" + "b1fed936-54df-439c-9606-aa65cb431dd1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040817Z:11763297-4fa9-48c0-84dc-661efbfcd664" + "WESTUS2:20190411T021530Z:b1fed936-54df-439c-9606-aa65cb431dd1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:15:30 GMT" + ], "Content-Length": [ "650" ], @@ -618,62 +618,62 @@ "-1" ] }, - "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/newlogger7127\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"newlogger7127\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"newloggerDescription7603\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname7984\",\r\n \"connectionString\": \"{{Logger-Credentials-5ca2e030b5974412ac07db65}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n }\r\n ]\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/newlogger7665\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"newlogger7665\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"newloggerDescription1135\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname6350\",\r\n \"connectionString\": \"{{Logger-Credentials-5caea342b597440f487b0e48}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7127?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjcxMjc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjc2NjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5277f1d-ada0-440c-bfb5-691e13a6e06d" + "a4518bfb-0bf9-47e4-bc74-a42f01f889ef" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:16 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZCY=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAchw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72869520-6bc1-4787-8cc1-723a3dbb3982" + "909b5b32-f028-40fc-9c2a-e98d48df171e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-correlation-request-id": [ - "bc408b43-93cb-4e5e-b3b8-35eaaec8a167" + "ae84d309-74a0-422b-980e-aca308c2d237" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040817Z:bc408b43-93cb-4e5e-b3b8-35eaaec8a167" + "WESTUS2:20190411T021531Z:ae84d309-74a0-422b-980e-aca308c2d237" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:15:30 GMT" + ], "Content-Length": [ "0" ], @@ -685,58 +685,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7127?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjcxMjc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjc2NjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d7fecfa-1d9b-4a13-9cee-7f1c37324e73" + "b7c9f62d-3a8c-48d7-aa08-93fe57e00b9d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:17 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZCg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAch4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1ae37549-d1c7-4111-8742-dfeaeb66b08c" + "5463b056-4b63-497c-baaf-93b33ff36e5f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11991" ], "x-ms-correlation-request-id": [ - "abdd2d5b-220f-43b3-83ab-98dc7dca0dca" + "b293d121-62b9-47c0-b158-583c76ed144c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040817Z:abdd2d5b-220f-43b3-83ab-98dc7dca0dca" + "WESTUS2:20190411T021531Z:b293d121-62b9-47c0-b158-583c76ed144c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:15:30 GMT" + ], "Content-Length": [ "0" ], @@ -748,25 +748,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7127?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjcxMjc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjc2NjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"patchedDescription7798\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"patchedDescription7910\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ebb82eab-8582-4e16-99e1-208b48a42390" + "b8cffa44-d456-44d5-b652-ec46a5f76b82" ], "If-Match": [ - "\"AAAAAAAAZCY=\"" + "\"AAAAAAAAchw=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -779,33 +779,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:17 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dbaf083d-3e0f-4161-9491-f66ebfeefee7" + "56031596-8f97-4958-a7fa-9607ed06fbf0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "96453c25-2cd0-442a-8679-3142ca326ea3" + "809018e8-8cca-42ee-85b2-feffafc4dc7d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040817Z:96453c25-2cd0-442a-8679-3142ca326ea3" + "WESTUS2:20190411T021531Z:809018e8-8cca-42ee-85b2-feffafc4dc7d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:15:30 GMT" + ], "Expires": [ "-1" ] @@ -814,58 +814,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7127?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjcxMjc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjc2NjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebb051b5-860e-4c5c-a1ab-d3afb951f078" + "3a575dbe-578f-4031-9d07-67bec06a8d6f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:17 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZCg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAch4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9dd3c083-fecc-4f7b-a54a-3ecd052c4584" + "4760e06d-6be9-4c5a-a8ae-8d96f82c776e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11992" ], "x-ms-correlation-request-id": [ - "5b75a5e5-6142-4559-9bc1-c46255612bc4" + "1b31eaab-0831-4721-90b5-6dff7f091517" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040817Z:5b75a5e5-6142-4559-9bc1-c46255612bc4" + "WESTUS2:20190411T021531Z:1b31eaab-0831-4721-90b5-6dff7f091517" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:15:30 GMT" + ], "Content-Length": [ "563" ], @@ -876,59 +876,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7127\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"newlogger7127\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"patchedDescription7798\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname7984\",\r\n \"connectionString\": \"{{Logger-Credentials-5ca2e030b5974412ac07db65}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"newlogger7665\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"patchedDescription7910\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname6350\",\r\n \"connectionString\": \"{{Logger-Credentials-5caea342b597440f487b0e48}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7127?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjcxMjc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjc2NjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "effb345c-1427-4b40-8401-c731f06a991d" + "3781e649-dbae-4606-b781-2cb327dcb9b5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:18 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8046a8a3-4c42-4566-9463-eb8fa8c1fcd5" + "928d189b-3752-42e2-bb8e-0ff9eef88d37" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11990" ], "x-ms-correlation-request-id": [ - "2ccce5ae-feea-494a-a7b8-f7b4eadd860c" + "fa8d2f99-fb47-4206-ac45-e6cd37f0e198" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040818Z:2ccce5ae-feea-494a-a7b8-f7b4eadd860c" + "WESTUS2:20190411T021532Z:fa8d2f99-fb47-4206-ac45-e6cd37f0e198" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:15:31 GMT" + ], "Content-Length": [ "82" ], @@ -943,121 +943,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7127?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjcxMjc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjc2NjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b5757c9-113a-4970-a7e7-1c677db21104" + "db2b92e0-a9d7-4a46-8b24-0405819144a4" ], "If-Match": [ - "\"AAAAAAAAZCg=\"" + "\"AAAAAAAAch4=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:18 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f213da34-290e-4294-ac7b-0a4db3abeb22" + "89812b85-22bf-4be3-8851-55ac815ae7c2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "620a2c20-5618-4bcc-a058-3533859f66d8" + "06e216fc-33ca-4f98-a609-a4da5dbba086" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040818Z:620a2c20-5618-4bcc-a058-3533859f66d8" + "WESTUS2:20190411T021532Z:06e216fc-33ca-4f98-a609-a4da5dbba086" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:15:31 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7127?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjcxMjc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger7665?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjc2NjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c5ac54b-d7f4-4ef2-af34-679763736323" + "0b33be62-b9bb-4302-a536-d36a879b4981" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:18 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "06d9fd34-55fe-469b-bfb8-d2e8d493c15c" + "31ab4622-61ff-4e3a-b424-82795417ebd4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "e7fc9503-2358-48a9-8b41-3a66c87f7483" + "c6b0c3aa-f054-4397-9886-c58fcfca5dad" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040818Z:e7fc9503-2358-48a9-8b41-3a66c87f7483" + "WESTUS2:20190411T021532Z:c6b0c3aa-f054-4397-9886-c58fcfca5dad" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:15:31 GMT" + ], "Expires": [ "-1" ] @@ -1066,57 +1066,57 @@ "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=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32a19a0d-993d-4810-8388-e38f05cbbab4" + "62afcf0e-5f80-40a7-91bc-a3944f7d46c0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:18 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b54ea664-6d79-4fd6-863c-8b2d6e735d02" + "e2e6fd84-7abd-4699-8fe2-775e50f50514" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-correlation-request-id": [ - "148f2c75-4618-4898-9ebc-826174a310b8" + "9c07cc2d-07ce-40fa-8b52-c5e832d10f49" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040818Z:148f2c75-4618-4898-9ebc-826174a310b8" + "WESTUS2:20190411T021532Z:9c07cc2d-07ce-40fa-8b52-c5e832d10f49" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:15:31 GMT" + ], "Content-Length": [ - "694" + "693" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1125,86 +1125,86 @@ "-1" ] }, - "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/5ca2e030b5974412ac07db64\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5ca2e030b5974412ac07db64\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5ca2e030b5974412ac07db65\",\r\n \"value\": \"Endpoint=sb://eventhubnamespace9432.servicebus.windows.net/;SharedAccessKeyName=sendPolicy2107;SharedAccessKey=Ts8lPKE2XGAvhFq+92HXSueVy2HIQ93E7J3w9iYIKvE=;EntityPath=eventhubname7984\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ]\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/5caea342b597440f487b0e47\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5caea342b597440f487b0e47\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5caea342b597440f487b0e48\",\r\n \"value\": \"Endpoint=sb://eventhubnamespace616.servicebus.windows.net/;SharedAccessKeyName=sendPolicy9946;SharedAccessKey=UgkjkMbhSpQPtIq+MAL9I70ih5hoJuZtzzqezDXi/TU=;EntityPath=eventhubname6350\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5ca2e030b5974412ac07db64?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzLzVjYTJlMDMwYjU5NzQ0MTJhYzA3ZGI2ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5caea342b597440f487b0e47?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzLzVjYWVhMzQyYjU5NzQ0MGY0ODdiMGU0Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "904d48a6-7069-4e04-a991-c0b879ce284a" + "4fe7af64-1698-4c2a-8f29-98fee85d2e61" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "90bcc634-1deb-4860-be8c-79c46c04c2f1" + "e911f1bd-97c4-4b27-b606-00e658c83b25" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14996" ], "x-ms-correlation-request-id": [ - "9ed60c66-1b17-4092-ac23-229a6242d9a8" + "8195d33a-7922-47d6-a4a7-5f8bbc12710c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040819Z:9ed60c66-1b17-4092-ac23-229a6242d9a8" + "WESTUS2:20190411T021532Z:8195d33a-7922-47d6-a4a7-5f8bbc12710c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:15:32 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace9432/eventhubs/eventhubname7984?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U5NDMyL2V2ZW50aHVicy9ldmVudGh1Ym5hbWU3OTg0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616/eventhubs/eventhubname6350?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2MTYvZXZlbnRodWJzL2V2ZW50aHVibmFtZTYzNTA/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2ec1992-27f8-4375-b7d5-5dc7bd2e4920" + "7bd02966-ad8e-4433-8e45-e4e900659fa9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" @@ -1214,61 +1214,61 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-request-id": [ - "7936ffb3-79cf-4649-89dd-da92270ad798" + "c7e56f5a-0e6c-4869-9c71-128d7dec2300" ], "x-ms-correlation-request-id": [ - "7936ffb3-79cf-4649-89dd-da92270ad798" + "c7e56f5a-0e6c-4869-9c71-128d7dec2300" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040820Z:7936ffb3-79cf-4649-89dd-da92270ad798" + "WESTUS2:20190411T021534Z:c7e56f5a-0e6c-4869-9c71-128d7dec2300" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:15:33 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace9432?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U5NDMyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2MTY/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eaaaedbb-65bc-45f1-a75f-f01a08e477b9" + "8b1a4797-6bdc-4c19-8367-3f55e9762cd4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" @@ -1278,33 +1278,30 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:20 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace9432/operationresults/eventHubNamespace9432?api-version=2015-08-01" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616/operationresults/eventHubNamespace616?api-version=2015-08-01" ], "x-ms-request-id": [ - "9657d0c0-ad2a-4f3c-854a-86ceccbfecb7_M8CH3_M8CH3" + "904c709b-54a2-461a-90ce-8a314a197fbc_M6CH3_M6CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "8acf4eef-4d34-4484-b5c2-8b84bde6fe41" + "eaa4e6a3-b5c9-4915-9bf9-6792336f6928" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040821Z:8acf4eef-4d34-4484-b5c2-8b84bde6fe41" + "WESTUS2:20190411T021535Z:eaa4e6a3-b5c9-4915-9bf9-6792336f6928" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1312,24 +1309,27 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:15:34 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace9432/operationresults/eventHubNamespace9432?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U5NDMyL29wZXJhdGlvbnJlc3VsdHMvZXZlbnRIdWJOYW1lc3BhY2U5NDMyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616/operationresults/eventHubNamespace616?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2MTYvb3BlcmF0aW9ucmVzdWx0cy9ldmVudEh1Yk5hbWVzcGFjZTYxNj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" @@ -1339,30 +1339,27 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "a0cee835-9d45-4362-b3ee-b9d87abfa75a_M4CH3_M4CH3" + "046b1c67-82ac-4f63-8c45-6b44dc912d36_M0CH3_M0CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-correlation-request-id": [ - "0c49fde2-4c6c-43db-82bb-a438bfea2cd2" + "428816a7-c265-4d62-8a16-c89e1f339242" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040851Z:0c49fde2-4c6c-43db-82bb-a438bfea2cd2" + "WESTUS2:20190411T021605Z:428816a7-c265-4d62-8a16-c89e1f339242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1370,24 +1367,27 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:16:04 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace9432/operationresults/eventHubNamespace9432?api-version=2015-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U5NDMyL29wZXJhdGlvbnJlc3VsdHMvZXZlbnRIdWJOYW1lc3BhY2U5NDMyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace616/operationresults/eventHubNamespace616?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2MTYvb3BlcmF0aW9ucmVzdWx0cy9ldmVudEh1Yk5hbWVzcGFjZTYxNj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0" @@ -1397,30 +1397,27 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "4b3c9b2c-9309-42f7-bfee-0bafcc3a8090_M4CH3_M4CH3" + "02a55234-9f07-4045-b139-679970d282ec_M6CH3_M6CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ + "Service-Bus-Resource-Provider/CH3", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-correlation-request-id": [ - "bc288cd5-6c2c-4304-acc4-06a44283128c" + "f2f38012-fc62-484b-b01e-58c2c8ded4df" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040851Z:bc288cd5-6c2c-4304-acc4-06a44283128c" + "WESTUS2:20190411T021605Z:f2f38012-fc62-484b-b01e-58c2c8ded4df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1428,11 +1425,14 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:16:04 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -1441,12 +1441,12 @@ ], "Names": { "CreateListUpdateDeleteEventHub": [ - "newlogger7127", - "eventHubNamespace9432", - "eventhubname7984", - "sendPolicy2107", - "newloggerDescription7603", - "patchedDescription7798" + "newlogger7665", + "eventHubNamespace616", + "eventhubname6350", + "sendPolicy9946", + "newloggerDescription1135", + "patchedDescription7910" ] }, "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 02e3ab2abe1c..14da2a1c09a6 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bc5909a6-7389-417f-ba64-e0aaa68b0ccc" + "373f6fc0-fe4a-4df3-b9f4-2e1418e94141" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:01 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f38ff482-0b5c-42d3-a72a-b3938df31ec1", - "cdac0886-912a-4805-9645-f8d26ebf5c8d" + "d26ed5ea-298b-4d12-8b1e-706fb74c1f23", + "8e0180b6-ebef-4f7b-ae8f-4fb04994feb6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-correlation-request-id": [ - "e6b05b5e-db62-4651-957a-abfade38983a" + "fb096aae-2f9e-46b0-94e2-53202ddf179e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040902Z:e6b05b5e-db62-4651-957a-abfade38983a" + "WESTUS2:20190411T020501Z:fb096aae-2f9e-46b0-94e2-53202ddf179e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:00 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32f13b74-3141-446c-af47-23263f748bfb" + "2614f871-6a26-4a48-b224-a7e9a400f4d7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:01 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62779d81-792c-4e71-8093-fc839d21a594" + "3df3117e-7475-4bce-a1c4-c1b727825242" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11999" ], "x-ms-correlation-request-id": [ - "44cee703-c7be-41cf-a47c-00a0ef7c426c" + "540aca2d-5843-41de-86f7-d97044950111" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040902Z:44cee703-c7be-41cf-a47c-00a0ef7c426c" + "WESTUS2:20190411T020501Z:540aca2d-5843-41de-86f7-d97044950111" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:00 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b99b1411-263d-45ee-be65-40bd34f96a49" + "14c268f2-90b0-4585-ac77-05d4ec65ea4a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:02 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bd80768d-b31c-43db-974d-e84725dd73f9" + "f4a835fc-ed4e-4935-b338-213661475ec1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11998" ], "x-ms-correlation-request-id": [ - "2d51e474-3d32-4328-8728-b82dd8070544" + "b04e124b-3bfa-46e5-a0f7-3cc929a14c79" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040902Z:2d51e474-3d32-4328-8728-b82dd8070544" + "WESTUS2:20190411T020501Z:b04e124b-3bfa-46e5-a0f7-3cc929a14c79" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:00 GMT" + ], "Content-Length": [ "4550" ], @@ -203,55 +203,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso%40microsoft.com?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudEVtYWlscy9jb250b3NvJTQwbWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso%40microsoft.com?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudEVtYWlscy9jb250b3NvJTQwbWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc61443d-2ede-4f5f-9629-f0336f697f95" + "e31553ae-3aba-4662-a0e5-be0ddafb3eb5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:02 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b57ea6a7-ff12-4da4-9740-7a14393142ab" + "a52a23e0-ba9a-41af-ab13-cd258e08765c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-correlation-request-id": [ - "d5329d56-37ed-4335-9375-7081daf0a776" + "28fd366f-8bc7-464f-9164-60aa7a4a4058" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040902Z:d5329d56-37ed-4335-9375-7081daf0a776" + "WESTUS2:20190411T020502Z:28fd366f-8bc7-464f-9164-60aa7a4a4058" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:01 GMT" + ], "Content-Length": [ "424" ], @@ -266,55 +266,55 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso%40microsoft.com?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudEVtYWlscy9jb250b3NvJTQwbWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso%40microsoft.com?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudEVtYWlscy9jb250b3NvJTQwbWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca885aa1-0d11-49c8-970e-2df66c729333" + "1ec5b7cc-f798-47c9-ba8c-0ca82f58d443" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:02 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ddf1391e-168a-4a3c-b975-fd4c6cbe4bf9" + "6cef2d2d-34e1-482f-b097-43d65cd4c6d0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11997" ], "x-ms-correlation-request-id": [ - "d41a3207-403c-4021-9747-2f81cd75fc54" + "24bd656c-f564-48ad-88dc-76a17890b428" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040903Z:d41a3207-403c-4021-9747-2f81cd75fc54" + "WESTUS2:20190411T020502Z:24bd656c-f564-48ad-88dc-76a17890b428" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:01 GMT" + ], "Content-Length": [ "0" ], @@ -326,55 +326,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso%40microsoft.com?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudEVtYWlscy9jb250b3NvJTQwbWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso%40microsoft.com?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudEVtYWlscy9jb250b3NvJTQwbWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef4e0440-b8b6-4d35-bd21-acc12910f087" + "0afa73b8-eff6-4e38-abaa-26f1d5eac65a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e6db4e49-a09f-4a27-b645-a8b51c6b385d" + "56792a67-719b-4203-a440-274cbb26d134" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11995" ], "x-ms-correlation-request-id": [ - "c885cac1-576b-4153-919a-4773e7a991a5" + "c0b559ee-92f2-46ee-86b4-3f43a39a0317" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040904Z:c885cac1-576b-4153-919a-4773e7a991a5" + "WESTUS2:20190411T020503Z:c0b559ee-92f2-46ee-86b4-3f43a39a0317" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:02 GMT" + ], "Content-Length": [ "0" ], @@ -386,55 +386,55 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b12c5e7-6d42-433f-ab75-35aad061af59" + "854a4444-3e2e-4c33-9b19-87faf68b0b06" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:02 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "662a7e7d-6234-46c5-a1d1-17be7ad07ad1" + "b8628313-2c9e-4fc6-8702-824390c9c133" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11996" ], "x-ms-correlation-request-id": [ - "cecef5ad-6bf3-49b6-bb1a-6b699b568df9" + "12b28f56-8806-4cad-8326-d1d690089821" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040903Z:cecef5ad-6bf3-49b6-bb1a-6b699b568df9" + "WESTUS2:20190411T020502Z:12b28f56-8806-4cad-8326-d1d690089821" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:01 GMT" + ], "Content-Length": [ "839" ], @@ -449,60 +449,60 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso%40microsoft.com?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudEVtYWlscy9jb250b3NvJTQwbWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso%40microsoft.com?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudEVtYWlscy9jb250b3NvJTQwbWljcm9zb2Z0LmNvbT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a1d5a04-6401-4492-9a00-852f2ac78a74" + "a28ed3c8-5814-47cb-a38d-a66765a19161" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "44ae8eff-01e8-4eac-81ad-4e7cce4e11a2" + "6a7213a4-ad95-4f03-a75f-92eca6128409" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14999" ], "x-ms-correlation-request-id": [ - "d50e7a2a-3a3f-4bcc-ad2d-70e4d283dcc7" + "6da65222-794a-4716-87ec-e93244fd2168" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040903Z:d50e7a2a-3a3f-4bcc-ad2d-70e4d283dcc7" + "WESTUS2:20190411T020502Z:6da65222-794a-4716-87ec-e93244fd2168" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:05:02 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", 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 b6353d1a505a..a6310f2a5079 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f87feabc-3504-4f90-853a-baeb77f9d37d" + "b8bd598d-3cb0-4711-a55b-5b739ec26abf" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:57 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "25f42459-d802-4a29-a4f8-c127ad191116", - "a9a74be1-1be0-41bb-8638-59fe79a95461" + "c0611beb-b910-48a2-beb5-e350da23d7a4", + "eff47b92-ba80-4799-90ae-5f4ecbc0220c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "5bf11a0d-0f7f-441d-8398-dafcc23b0272" + "a921ba24-a7db-49d3-b45a-f00b977626fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040857Z:5bf11a0d-0f7f-441d-8398-dafcc23b0272" + "WESTUS2:20190411T020457Z:a921ba24-a7db-49d3-b45a-f00b977626fc" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:57 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc229002-a81c-4b9b-9992-6155ac44f6fe" + "3ad3836b-c38f-46bc-aaca-7e4870639c05" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:57 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a7563153-4b90-45fe-9f27-c5e88880f3e5" + "89ab9207-9894-4153-94d7-45678f877dd9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11988" ], "x-ms-correlation-request-id": [ - "051ce01c-bc92-45ad-8084-9b64a9ee06ef" + "73b08947-6084-40dd-b79f-fce5cae17e5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040858Z:051ce01c-bc92-45ad-8084-9b64a9ee06ef" + "WESTUS2:20190411T020458Z:73b08947-6084-40dd-b79f-fce5cae17e5e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:57 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23fdd088-df86-45f5-a201-6231eece3f1d" + "1c7a0e59-d3d6-4b5c-a777-4c484ec0d8bf" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "313993e7-244b-4b6b-8d9f-0a3181a7d2d0" + "fed2f7dc-7346-4f6d-aef7-43cdf9a636b8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11987" ], "x-ms-correlation-request-id": [ - "536c5496-92d3-459c-9138-f8ec8d7d465d" + "70e850d4-10d4-4305-b575-9c194c7120ce" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040858Z:536c5496-92d3-459c-9138-f8ec8d7d465d" + "WESTUS2:20190411T020458Z:70e850d4-10d4-4305-b575-9c194c7120ce" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:58 GMT" + ], "Content-Length": [ "4550" ], @@ -203,55 +203,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4edc5a4b-660d-431f-9ebf-576edf2a6c6f" + "2ca3a495-7ac4-4cd3-8f8c-150950a7cd44" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a515559c-23f3-46e7-827e-47c0aeb1e063" + "acbb7213-8687-49d8-bd8f-89355701bc0e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11986" ], "x-ms-correlation-request-id": [ - "52dfaeb2-eff7-41e2-942b-8a1b0cb2388f" + "da9b7986-c7d4-4f87-b8f4-0c2169084265" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040858Z:52dfaeb2-eff7-41e2-942b-8a1b0cb2388f" + "WESTUS2:20190411T020458Z:da9b7986-c7d4-4f87-b8f4-0c2169084265" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:58 GMT" + ], "Content-Length": [ "667" ], @@ -266,55 +266,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientUsers/1?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudFVzZXJzLzE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientUsers/1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudFVzZXJzLzE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76b1cec3-bd4b-4452-a1ca-e826d55d6992" + "dc9452a3-e1de-4e29-b308-17c74752a2b4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fcd6fe8a-461c-45c7-9ef9-8127ea29a179" + "6141c2b7-468e-4a44-a79e-2a2b3abf5f66" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "ef4b513a-8519-4207-82d8-3fc4705a131a" + "dbed04e7-7642-4b15-9222-140775f5358a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040859Z:ef4b513a-8519-4207-82d8-3fc4705a131a" + "WESTUS2:20190411T020459Z:dbed04e7-7642-4b15-9222-140775f5358a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:58 GMT" + ], "Content-Length": [ "515" ], @@ -329,55 +329,55 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientUsers/1?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudFVzZXJzLzE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientUsers/1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudFVzZXJzLzE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e2e530a-ed35-435c-932c-f92c545c6e33" + "dbb4efc3-ab43-4ceb-a0e5-ff75f4328ae3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0e084779-c65c-4d68-8470-f5f048a44f99" + "088562a2-7d14-489e-8778-d85f739a994c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11985" ], "x-ms-correlation-request-id": [ - "63489d2a-748e-44fe-93ef-3a357b7b35a5" + "7e40447c-0a8d-4050-a6f0-ab6d5515c469" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040859Z:63489d2a-748e-44fe-93ef-3a357b7b35a5" + "WESTUS2:20190411T020459Z:7e40447c-0a8d-4050-a6f0-ab6d5515c469" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:59 GMT" + ], "Content-Length": [ "0" ], @@ -389,55 +389,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientUsers/1?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudFVzZXJzLzE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientUsers/1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudFVzZXJzLzE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b86b4f7-d190-47ec-a0f5-4a76b6f92691" + "54478400-bd1f-46e6-acde-27ce75666be7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9bb69e6a-37af-4ad2-8784-60d9830305dc" + "39813460-5144-4e75-a7c8-4280fe150bb9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11983" ], "x-ms-correlation-request-id": [ - "72dc610c-d251-4939-988f-3842335727c0" + "eaf3aabd-4cf8-48ab-90c2-44e9b2d1bbe2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040900Z:72dc610c-d251-4939-988f-3842335727c0" + "WESTUS2:20190411T020459Z:eaf3aabd-4cf8-48ab-90c2-44e9b2d1bbe2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:59 GMT" + ], "Content-Length": [ "0" ], @@ -449,55 +449,55 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c517c0bf-e136-479d-adcf-bf0787eabf28" + "0c85eb1f-c491-4676-ba4a-6b0bff93ce02" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:08:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5d09f516-8f97-4397-aaa4-3f6cc959c59e" + "342de7c2-8cec-4f0a-9650-7e387ce20058" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11984" ], "x-ms-correlation-request-id": [ - "12e6c75d-0552-4a72-9350-de03946b5ef6" + "890de3e9-ce8a-40fb-817f-aae8aea3f3b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040859Z:12e6c75d-0552-4a72-9350-de03946b5ef6" + "WESTUS2:20190411T020459Z:890de3e9-ce8a-40fb-817f-aae8aea3f3b1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:59 GMT" + ], "Content-Length": [ "809" ], @@ -512,60 +512,60 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientUsers/1?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudFVzZXJzLzE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientUsers/1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ub3RpZmljYXRpb25zL1JlcXVlc3RQdWJsaXNoZXJOb3RpZmljYXRpb25NZXNzYWdlL3JlY2lwaWVudFVzZXJzLzE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1bb2f89d-3450-4fe6-84ff-4565926ec86f" + "005bea27-edfe-49ef-8b18-2d1152f86df6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4b58123a-780b-47ce-bc37-9113bd9827ab" + "4722bb21-89a6-4399-8822-487712c459b7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "2b6ba112-cba4-43fc-b8cb-f334d8dc6c67" + "252f6866-aa84-47dc-8c0d-b32d72d33c4a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040900Z:2b6ba112-cba4-43fc-b8cb-f334d8dc6c67" + "WESTUS2:20190411T020459Z:252f6866-aa84-47dc-8c0d-b32d72d33c4a" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:04:59 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", 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 4268c06c7cf5..60a167aa28ce 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "51b71a10-1736-4629-92db-4dec633ed391" + "f792cbad-394d-4cc9-bdac-a5df38956590" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:36 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ef58e0a0-aa14-4541-a32f-bec94f5b0a1c", - "ac05ad0b-4005-405b-9276-144ad97aa953" + "7b2d19b7-d939-4533-a0b7-4b055d3d928e", + "d982073a-5341-4217-a3c5-9fce8950064f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "545bd85a-774c-49a1-93d5-960655e98ebb" + "462e0b63-2fa2-4ca0-84d3-e49dcdb61ce6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040937Z:545bd85a-774c-49a1-93d5-960655e98ebb" + "WESTUS2:20190411T020448Z:462e0b63-2fa2-4ca0-84d3-e49dcdb61ce6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:47 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6da03fb-9725-43e5-976c-a34e125d9b02" + "02afd5db-2cbd-4a8e-b16b-dbd1d522b959" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:36 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3bfa81d2-adb1-43c5-bd4e-38aab3640e02" + "ccb2b3bd-b9d3-4808-98fb-2736e34a9a3b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "91eeed7d-e958-4448-bd13-36e8396c6e48" + "e11280c5-8332-4d10-8d05-e7add5d463a2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040937Z:91eeed7d-e958-4448-bd13-36e8396c6e48" + "WESTUS2:20190411T020448Z:e11280c5-8332-4d10-8d05-e7add5d463a2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:48 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId2354?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDIzNTQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7263?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDcyNjM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName2091\",\r\n \"metadataEndpoint\": \"https://provider8213.endpoint7934\",\r\n \"clientId\": \"clientId5944\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName1735\",\r\n \"metadataEndpoint\": \"https://provider5139.endpoint3062\",\r\n \"clientId\": \"clientId3690\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8ee489d2-8569-4f16-b749-e3b6b20b7bff" + "e182604a-31ee-467e-9e0d-144b180ce35e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,36 +168,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:37 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZGk=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcFU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d9a03ad-d833-475e-9263-bfb32d591585" + "c5f1e208-e451-4a29-bd37-b17c237e91d0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "c2aec358-e850-477f-ba02-647953fbb896" + "905c06eb-41cf-49e8-a8ab-8a4d6947d775" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040938Z:c2aec358-e850-477f-ba02-647953fbb896" + "WESTUS2:20190411T020449Z:905c06eb-41cf-49e8-a8ab-8a4d6947d775" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:49 GMT" + ], "Content-Length": [ "499" ], @@ -208,62 +208,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId2354\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId2354\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName2091\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider8213.endpoint7934\",\r\n \"clientId\": \"clientId5944\",\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/openId7263\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId7263\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName1735\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider5139.endpoint3062\",\r\n \"clientId\": \"clientId3690\",\r\n \"clientSecret\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId2354?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDIzNTQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7263?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDcyNjM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f61dcf46-d879-452a-9ac8-e5fa9f3d320b" + "bbd5051a-57cd-441b-abf1-5a7534698cee" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:37 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZGk=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcFU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "14b1b086-6c4c-436e-8baa-954552cbb40d" + "4ab1eac2-76fc-4442-9684-e7e8093d5c85" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "83e638e7-9733-44c2-903f-921d0840607e" + "76dbd594-9234-4481-8bcb-78237fb62c88" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040938Z:83e638e7-9733-44c2-903f-921d0840607e" + "WESTUS2:20190411T020449Z:76dbd594-9234-4481-8bcb-78237fb62c88" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:49 GMT" + ], "Content-Length": [ "499" ], @@ -274,59 +274,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId2354\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId2354\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName2091\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider8213.endpoint7934\",\r\n \"clientId\": \"clientId5944\",\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/openId7263\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId7263\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName1735\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider5139.endpoint3062\",\r\n \"clientId\": \"clientId3690\",\r\n \"clientSecret\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId2354?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDIzNTQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7263?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDcyNjM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "edc7b2a6-3935-43bc-9d63-df7ebec689cd" + "c662539f-fa71-4d10-82b7-df2087693f17" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd8fa7ee-d394-43f5-91c6-99428c4b081e" + "eeaf888d-a635-4052-8533-878f92898225" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "eb09d3a6-ea74-4d78-be5d-3da37c16f469" + "48eb66ad-4cdf-4c3b-b4c9-f9dba5b56c0c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040939Z:eb09d3a6-ea74-4d78-be5d-3da37c16f469" + "WESTUS2:20190411T020450Z:48eb66ad-4cdf-4c3b-b4c9-f9dba5b56c0c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:50 GMT" + ], "Content-Length": [ "97" ], @@ -341,66 +341,66 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId9893?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDk4OTM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName6029\",\r\n \"description\": \"description4774\",\r\n \"metadataEndpoint\": \"https://provider1183.endpoint6029\",\r\n \"clientId\": \"clientId8062\",\r\n \"clientSecret\": \"clientSecret3822\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName9411\",\r\n \"description\": \"description6293\",\r\n \"metadataEndpoint\": \"https://provider299.endpoint2043\",\r\n \"clientId\": \"clientId4765\",\r\n \"clientSecret\": \"clientSecret7567\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f254ea1e-c87d-45b1-88bc-63e3b27c49cb" + "da285837-69ad-4b44-99c5-0e454ddcdcee" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "240" + "239" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:37 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZGo=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcFY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b1bf1f13-65fd-4a86-9e35-2c39b0e8886a" + "d1c12568-7287-4248-990a-72694303581d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "e23d6380-97af-45aa-b2e9-2f6ad56e58f3" + "c61e0232-44c9-4f65-bf13-1a790ba27e06" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040938Z:e23d6380-97af-45aa-b2e9-2f6ad56e58f3" + "WESTUS2:20190411T020449Z:c61e0232-44c9-4f65-bf13-1a790ba27e06" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:49 GMT" + ], "Content-Length": [ - "526" + "523" ], "Content-Type": [ "application/json; charset=utf-8" @@ -409,64 +409,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId9893\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId9893\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName6029\",\r\n \"description\": \"description4774\",\r\n \"metadataEndpoint\": \"https://provider1183.endpoint6029\",\r\n \"clientId\": \"clientId8062\",\r\n \"clientSecret\": \"clientSecret3822\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId558\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName9411\",\r\n \"description\": \"description6293\",\r\n \"metadataEndpoint\": \"https://provider299.endpoint2043\",\r\n \"clientId\": \"clientId4765\",\r\n \"clientSecret\": \"clientSecret7567\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId9893?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDk4OTM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3abbdfc0-6853-438b-9cd4-37a8a6e0491d" + "e67d7974-c988-4626-8dcb-f805414a599b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:37 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZGo=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcFY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5390923c-e9c9-4258-b250-346961e47561" + "3b7af15b-eedd-42b7-8f10-a81073de6dfc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "a4973537-f3b5-41a5-988f-73b676254c02" + "160b7c96-544c-46d5-b6f9-f3e295743b64" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040938Z:a4973537-f3b5-41a5-988f-73b676254c02" + "WESTUS2:20190411T020449Z:160b7c96-544c-46d5-b6f9-f3e295743b64" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:49 GMT" + ], "Content-Length": [ - "526" + "523" ], "Content-Type": [ "application/json; charset=utf-8" @@ -475,64 +475,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId9893\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId9893\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName6029\",\r\n \"description\": \"description4774\",\r\n \"metadataEndpoint\": \"https://provider1183.endpoint6029\",\r\n \"clientId\": \"clientId8062\",\r\n \"clientSecret\": \"clientSecret3822\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId558\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName9411\",\r\n \"description\": \"description6293\",\r\n \"metadataEndpoint\": \"https://provider299.endpoint2043\",\r\n \"clientId\": \"clientId4765\",\r\n \"clientSecret\": \"clientSecret7567\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId9893?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDk4OTM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a65aad0d-59a1-41d2-8baa-e118d53f7b79" + "e40847d0-12d5-4d3f-ba8a-ef2758e71bc2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:39 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZGs=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcFc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "819b4b44-270a-40aa-a16d-78f647b77410" + "4254e1e4-eec1-4d3f-97fb-ca8da5b8a614" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "d5bf9980-0104-483a-8c12-43a3a5293fbc" + "02c96394-4c14-4efa-90a6-ebc8e08d0122" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040940Z:d5bf9980-0104-483a-8c12-43a3a5293fbc" + "WESTUS2:20190411T020451Z:02c96394-4c14-4efa-90a6-ebc8e08d0122" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:50 GMT" + ], "Content-Length": [ - "531" + "529" ], "Content-Type": [ "application/json; charset=utf-8" @@ -541,59 +541,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId9893\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId9893\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName6029\",\r\n \"description\": \"description4774\",\r\n \"metadataEndpoint\": \"https://provider6684.endpoint5809\",\r\n \"clientId\": \"updatedClient2136\",\r\n \"clientSecret\": \"clientSecret3822\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId558\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName9411\",\r\n \"description\": \"description6293\",\r\n \"metadataEndpoint\": \"https://provider5980.endpoint3000\",\r\n \"clientId\": \"updatedClient9576\",\r\n \"clientSecret\": \"clientSecret7567\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId9893?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDk4OTM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7308162-e7e5-4e53-8114-a012ddaead97" + "d32c8440-8308-4a02-9633-3e72ad3084d5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:40 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85448f32-16aa-4794-a210-8f0df85301cf" + "e5d1a970-823b-453b-a571-25d89ba503b1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "c36425fa-401c-416e-88d1-216a28265f0b" + "71e2430a-cdb1-4716-9ebe-b54c8e99a97d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040940Z:c36425fa-401c-416e-88d1-216a28265f0b" + "WESTUS2:20190411T020451Z:71e2430a-cdb1-4716-9ebe-b54c8e99a97d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:50 GMT" + ], "Content-Length": [ "97" ], @@ -608,57 +608,57 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3bc2259-f9c6-43d8-a0ad-555321f9b718" + "10e08e91-0825-408b-aed8-128edf029e9b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:38 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "97769147-daf3-44f2-b22d-707e9fc66422" + "98862adf-db74-4651-b1b9-3b13f483d9f4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "dc5d95e7-d7dc-4a90-8f42-00bb19a9d977" + "7ea0f6e6-5cd4-4670-a069-3d9cff0b6e4a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040938Z:dc5d95e7-d7dc-4a90-8f42-00bb19a9d977" + "WESTUS2:20190411T020450Z:7ea0f6e6-5cd4-4670-a069-3d9cff0b6e4a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:49 GMT" + ], "Content-Length": [ - "1149" + "1146" ], "Content-Type": [ "application/json; charset=utf-8" @@ -667,59 +667,59 @@ "-1" ] }, - "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/openId2354\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId2354\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName2091\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider8213.endpoint7934\",\r\n \"clientId\": \"clientId5944\",\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/openId9893\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId9893\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName6029\",\r\n \"description\": \"description4774\",\r\n \"metadataEndpoint\": \"https://provider1183.endpoint6029\",\r\n \"clientId\": \"clientId8062\",\r\n \"clientSecret\": \"clientSecret3822\"\r\n }\r\n }\r\n ]\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/openId7263\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId7263\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName1735\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider5139.endpoint3062\",\r\n \"clientId\": \"clientId3690\",\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/openId558\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId558\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName9411\",\r\n \"description\": \"description6293\",\r\n \"metadataEndpoint\": \"https://provider299.endpoint2043\",\r\n \"clientId\": \"clientId4765\",\r\n \"clientSecret\": \"clientSecret7567\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders?$top=1&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6eac2a94-d96e-4aab-a0d4-c52b30e3e673" + "d995825e-5a43-42f7-b645-b56cc423f831" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:38 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "020289b5-fbf4-4a54-b5e9-ac76e608eb79" + "a1ef8811-36de-4d19-8fda-8b0d79802276" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "3f1b654b-c748-46a8-aa14-505d76e7211b" + "86ca39b3-94eb-4fad-9093-a4b043b5d5a2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040938Z:3f1b654b-c748-46a8-aa14-505d76e7211b" + "WESTUS2:20190411T020450Z:86ca39b3-94eb-4fad-9093-a4b043b5d5a2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:49 GMT" + ], "Content-Length": [ "833" ], @@ -730,62 +730,62 @@ "-1" ] }, - "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/openId2354\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId2354\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName2091\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider8213.endpoint7934\",\r\n \"clientId\": \"clientId5944\",\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/openId7263\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId7263\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName1735\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider5139.endpoint3062\",\r\n \"clientId\": \"clientId3690\",\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=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId2354?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDIzNTQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7263?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDcyNjM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac41b40b-2af0-4c39-a857-400e7112e7c5" + "f93dd7fc-5062-4aa6-bce3-9cdf71b92cb8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:38 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZGk=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcFU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bd5b9528-45a4-489f-b8b0-f5533013f316" + "689e386a-7935-4d44-a35d-ab6e0babd10e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "eaef71c2-16da-4328-b660-3c3c334407ad" + "19a2ae32-e74f-4894-8554-8875ff439639" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040938Z:eaef71c2-16da-4328-b660-3c3c334407ad" + "WESTUS2:20190411T020450Z:19a2ae32-e74f-4894-8554-8875ff439639" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:49 GMT" + ], "Content-Length": [ "0" ], @@ -797,121 +797,121 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId2354?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDIzNTQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7263?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDcyNjM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d5e6966-b3d5-4691-84a7-a4fa96ea3470" + "478283ba-91a3-42e3-8350-fd4dbb4eefdd" ], "If-Match": [ - "\"AAAAAAAAZGk=\"" + "\"AAAAAAAAcFU=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eb98373c-4fd0-4650-bfc9-8c8727bbdf08" + "e80266e9-3d5a-4ef5-b45c-8501240d163a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "ba004f28-6d64-429b-9add-407bc6619064" + "0dc8c226-c5bf-49b9-889d-a0b7b561eaa4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040939Z:ba004f28-6d64-429b-9add-407bc6619064" + "WESTUS2:20190411T020450Z:0dc8c226-c5bf-49b9-889d-a0b7b561eaa4" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:04:50 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId2354?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDIzNTQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7263?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDcyNjM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d52c5acc-6a0d-443e-a871-f59df009674c" + "e8030502-99c0-4d50-b6e3-266206321337" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:40 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59ab2dcd-b99d-4847-90bf-08d6275483e3" + "74abbb2f-75f9-4a6f-a1e3-5738344b599d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "9573f2d4-655b-4848-b79e-cce440b2951c" + "b6a94ede-6fd9-4cdc-8c37-2a48d9cd2cf8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040940Z:9573f2d4-655b-4848-b79e-cce440b2951c" + "WESTUS2:20190411T020451Z:b6a94ede-6fd9-4cdc-8c37-2a48d9cd2cf8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:51 GMT" + ], "Expires": [ "-1" ] @@ -920,58 +920,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId9893?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDk4OTM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bea14db-ed62-4f2c-9388-ca24d13706b0" + "f18686ef-7307-4092-88e1-041e2610f6ae" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:39 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZGo=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcFY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1ec47c99-8b28-4c8b-9306-dff1bccaa6a6" + "f68e9ed0-8e5a-4dd6-82a0-2be4dbe71893" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "076a2db0-3c66-4e50-82e3-f743a79e36b5" + "4f23ef30-853d-4bdd-9cb8-bae4923a6092" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040939Z:076a2db0-3c66-4e50-82e3-f743a79e36b5" + "WESTUS2:20190411T020450Z:4f23ef30-853d-4bdd-9cb8-bae4923a6092" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:50 GMT" + ], "Content-Length": [ "0" ], @@ -983,25 +983,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId9893?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDk4OTM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadataEndpoint\": \"https://provider6684.endpoint5809\",\r\n \"clientId\": \"updatedClient2136\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadataEndpoint\": \"https://provider5980.endpoint3000\",\r\n \"clientId\": \"updatedClient9576\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2f77ecd9-3f0e-4d28-a821-3562e367dd09" + "19c9064a-f426-491e-af17-63ca45871cfc" ], "If-Match": [ - "\"AAAAAAAAZGo=\"" + "\"AAAAAAAAcFY=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1014,33 +1014,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7dd35c76-a5d7-4a60-bc5a-5aa565e6a867" + "f0344688-16af-47cf-b45f-1e073e6a7b34" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "dd6334ba-f0d4-4116-b3cf-440d74befb50" + "2d6df3a2-00a0-4acf-a2ea-34b9456ea756" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040940Z:dd6334ba-f0d4-4116-b3cf-440d74befb50" + "WESTUS2:20190411T020451Z:2d6df3a2-00a0-4acf-a2ea-34b9456ea756" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:50 GMT" + ], "Expires": [ "-1" ] @@ -1049,121 +1049,121 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId9893?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDk4OTM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36079df4-c5b5-4f90-b1d8-702dc526caef" + "81e8a5a1-f3f4-4fbe-81af-e026edaf7190" ], "If-Match": [ - "\"AAAAAAAAZGs=\"" + "\"AAAAAAAAcFc=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:40 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0c83a61e-24e7-4c71-bc2b-3b2b4955f8af" + "445056fd-27cf-4ed4-92cf-9aa67ae6e4e1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "23af0aac-1840-41d5-ac8d-4439ef73faf8" + "7d910dfc-5b58-4b5d-99fb-b41e0874d24c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040940Z:23af0aac-1840-41d5-ac8d-4439ef73faf8" + "WESTUS2:20190411T020451Z:7d910dfc-5b58-4b5d-99fb-b41e0874d24c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:04:50 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId9893?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDk4OTM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId558?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDU1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "055b6b17-ab05-475d-b245-295533d5c562" + "a4508fd0-5ed0-4eb3-8e14-fdf44dec1c59" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:40 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0d5f4757-b382-432f-8625-677c1ede551c" + "6d5d953e-b905-45b4-b82c-46a12d43a32a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "581e3e93-fabb-47c6-b193-f61f1099c655" + "2666f9bf-3c4a-448b-8f77-f1a8d9e1d70e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040940Z:581e3e93-fabb-47c6-b193-f61f1099c655" + "WESTUS2:20190411T020451Z:2666f9bf-3c4a-448b-8f77-f1a8d9e1d70e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:51 GMT" + ], "Expires": [ "-1" ] @@ -1174,23 +1174,23 @@ ], "Names": { "CreateListUpdateDelete": [ - "openId2354", - "openId9893", - "openIdName2091", - "clientId5944", - "openIdName6029", - "clientId8062", - "clientSecret3822", - "description4774", - "updatedClient2136" + "openId7263", + "openId558", + "openIdName1735", + "clientId3690", + "openIdName9411", + "clientId4765", + "clientSecret7567", + "description6293", + "updatedClient9576" ], "GetOpenIdMetadataEndpointUrl": [ - "provider8213", - "endpoint7934", - "provider1183", - "endpoint6029", - "provider6684", - "endpoint5809" + "provider5139", + "endpoint3062", + "provider299", + "endpoint2043", + "provider5980", + "endpoint3000" ] }, "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 298d413f8b22..195383f9092e 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c3f05c00-fafb-49d7-8d9c-1c2cb55bf66c" + "0d05aa6d-387e-46a1-b92f-f3eaaaf80302" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:59 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "be058b29-b5a1-46a5-8e48-fd44a91f0393", - "315e9041-705b-4c2e-af6d-1da30b13465d" + "4d4dce37-cb06-4985-adae-c3c7b0db6f26", + "4d953691-eea9-4832-bddf-5f3066230c40" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "4778e121-175f-4642-8959-042216eaadbc" + "f9bd710d-b33e-4615-9ed9-c3f8c444e993" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040659Z:4778e121-175f-4642-8959-042216eaadbc" + "WESTUS2:20190411T021425Z:f9bd710d-b33e-4615-9ed9-c3f8c444e993" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:25 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7d3d787-ee43-4427-aba1-eb02aa22795d" + "cf3f0faf-d1e8-4f04-826c-9f04fcd382cb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:59 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "69fe9016-9d53-4993-8a03-c5730c073e46" + "1e9ec78c-4d96-4a2d-a633-b03abc65d70c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "a935defb-ecaa-4153-9833-78e19c7d909e" + "51b57f41-bbdc-47e3-96c9-9938833a5d52" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040659Z:a935defb-ecaa-4153-9833-78e19c7d909e" + "WESTUS2:20190411T021425Z:51b57f41-bbdc-47e3-96c9-9938833a5d52" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:25 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,64 +136,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b54374c3-4274-410f-9354-25277a7a7e1b" + "ae2f751b-a126-4763-957e-ed8cf54c53a3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:59 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAYbs=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAb1Q=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a0c9a319-f00f-4b2b-ab47-71f52bcec293" + "3553d0cb-b53e-4be9-97e6-a2ab9f41f0c1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "a7ac9534-012d-45c5-81e0-9e0fd92d67b7" + "c6b22411-01d3-4013-af9b-818af5b63b32" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040659Z:a7ac9534-012d-45c5-81e0-9e0fd92d67b7" + "WESTUS2:20190411T021426Z:c6b22411-01d3-4013-af9b-818af5b63b32" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:25 GMT" + ], "Content-Length": [ - "1343" + "1328" ], "Content-Type": [ "application/json; charset=utf-8" @@ -202,64 +202,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"contentFormat\": \"xml\",\r\n \"policyContent\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\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/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fca97f4-db81-48e2-9da1-1ad1b186c1f1" + "418742f6-b54e-4fa8-956e-ec6e4dad0bf9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:00 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAYbs=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAb1Q=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bc97c23c-c224-4509-9534-e1fe44cf797e" + "bad8255a-865c-4bfe-a1f8-1d5290466114" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "c31a6234-bfab-481d-8a27-66a1efa9d71b" + "6825dbce-fcb1-498a-9ecf-44620287d89a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040700Z:c31a6234-bfab-481d-8a27-66a1efa9d71b" + "WESTUS2:20190411T021427Z:6825dbce-fcb1-498a-9ecf-44620287d89a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:26 GMT" + ], "Content-Length": [ - "1343" + "1328" ], "Content-Type": [ "application/json; charset=utf-8" @@ -268,59 +268,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"contentFormat\": \"xml\",\r\n \"policyContent\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\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/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be4553a3-5af0-48fe-bffb-b24bf60fd794" + "11cac346-98c7-4e60-9a98-f4b8473dd85b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:01 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "de49e404-a0c6-4184-83e2-e0aea014026f" + "946055c5-9c8c-4633-990a-f2ea8acb749e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "2b790db9-7663-41ad-915c-5c55f038ef4b" + "540ef364-5a14-4f83-af97-f0cb21d697eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040701Z:2b790db9-7663-41ad-915c-5c55f038ef4b" + "WESTUS2:20190411T021427Z:540ef364-5a14-4f83-af97-f0cb21d697eb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:27 GMT" + ], "Content-Length": [ "97" ], @@ -335,66 +335,66 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"policyContent\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d43da924-3296-4439-9ad4-ed4e155b5191" + "997c01be-f118-406f-9bdd-5390d843e54f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1064" + "1056" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:00 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAYbs=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAb1Q=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a4a8f64-f3db-4db4-ad1a-60089b796a0a" + "1087a9b3-c03b-476c-9b8a-0586ab2bc086" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "86ca4466-777a-4bff-8365-82c3d33ad3d6" + "9cfa9bde-9a02-4665-b45f-e3e1cc3ef9e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040700Z:86ca4466-777a-4bff-8365-82c3d33ad3d6" + "WESTUS2:20190411T021426Z:9cfa9bde-9a02-4665-b45f-e3e1cc3ef9e5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:26 GMT" + ], "Content-Length": [ - "1343" + "1328" ], "Content-Type": [ "application/json; charset=utf-8" @@ -403,70 +403,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"contentFormat\": \"xml\",\r\n \"policyContent\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\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/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"policyContent\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "66d25b69-c1b5-41bf-b8e5-542da95bad47" + "5f0920fc-44fc-4a2e-898b-bed6c267eabf" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1064" + "1056" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:01 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY+c=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcfI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9d843c7-cdce-4742-8065-ac18bc538105" + "70405d4a-98db-4adc-b1a8-fd07d304c26f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "30b7347c-bbc8-4800-bf16-c35885aaf87f" + "8f24593e-d5d4-437f-976d-2c90f1815ec3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040702Z:30b7347c-bbc8-4800-bf16-c35885aaf87f" + "WESTUS2:20190411T021427Z:8f24593e-d5d4-437f-976d-2c90f1815ec3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:27 GMT" + ], "Content-Length": [ - "1343" + "1328" ], "Content-Type": [ "application/json; charset=utf-8" @@ -475,62 +475,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"contentFormat\": \"xml\",\r\n \"policyContent\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\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/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "491f9b5e-e346-4252-8836-f87cc2a8e812" + "f72c8878-8ecd-4f4c-b238-a911237c8bf6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:00 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAYbs=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAb1Q=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87c38606-7834-4aeb-8f68-ff28d39583c3" + "df2dc399-aeac-4a3b-b489-079f6422d85d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "ae86d90f-283b-4d25-a49c-3ce67232b140" + "fb77a675-e8e9-4244-82b7-70a1757fb52d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040700Z:ae86d90f-283b-4d25-a49c-3ce67232b140" + "WESTUS2:20190411T021427Z:fb77a675-e8e9-4244-82b7-70a1757fb52d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:26 GMT" + ], "Content-Length": [ "0" ], @@ -542,118 +542,118 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ae6649a-00c9-4e2f-a422-d6e725280ca5" + "2cc4f4e5-46cf-41de-8ecd-5a8e0ea1eb00" ], "If-Match": [ - "\"AAAAAAAAYbs=\"" + "\"AAAAAAAAb1Q=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:01 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "359b0f27-3231-43d2-831d-7746bfe9bf99" + "1e788570-d212-4916-a649-8c7428f942a9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "8e1e4a2a-5e67-479b-8032-11517ed78cfe" + "189bcfe7-0f17-4718-b835-7901eac270ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040701Z:8e1e4a2a-5e67-479b-8032-11517ed78cfe" + "WESTUS2:20190411T021427Z:189bcfe7-0f17-4718-b835-7901eac270ee" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:14:27 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2018-01-01&expandApiVersionSet=false", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEmZXhwYW5kQXBpVmVyc2lvblNldD1mYWxzZQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02684896-37c0-4ab5-9597-f7b44b0b47af" + "f0e1c1b5-36e3-4678-ba3a-247ba0bff002" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:02 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "418d8648-e167-4eea-bb2f-1555883da670" + "7f56b219-f0b5-493c-be52-d2b082887801" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "27f28805-6c7f-45d6-9a68-e7dfdb84c56f" + "0cd7fd2c-2a3e-4338-b595-3d2866cb873c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040702Z:27f28805-6c7f-45d6-9a68-e7dfdb84c56f" + "WESTUS2:20190411T021427Z:0cd7fd2c-2a3e-4338-b595-3d2866cb873c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:27 GMT" + ], "Content-Length": [ "676" ], @@ -668,129 +668,129 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/%2Fsubscriptions%2Fbab08e11-7b12-4354-9fd1-4b5d64d40b68%2FresourceGroups%2FApi-Default-CentralUS%2Fproviders%2FMicrosoft.ApiManagement%2Fservice%2Fsdktestservice%2Fapis%2Fecho-api/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzLyUyRnN1YnNjcmlwdGlvbnMlMkZiYWIwOGUxMS03YjEyLTQzNTQtOWZkMS00YjVkNjRkNDBiNjglMkZyZXNvdXJjZUdyb3VwcyUyRkFwaS1EZWZhdWx0LUNlbnRyYWxVUyUyRnByb3ZpZGVycyUyRk1pY3Jvc29mdC5BcGlNYW5hZ2VtZW50JTJGc2VydmljZSUyRnNka3Rlc3RzZXJ2aWNlJTJGYXBpcyUyRmVjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/%2Fsubscriptions%2Fbab08e11-7b12-4354-9fd1-4b5d64d40b68%2FresourceGroups%2FApi-Default-CentralUS%2Fproviders%2FMicrosoft.ApiManagement%2Fservice%2Fsdktestservice%2Fapis%2Fecho-api/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzLyUyRnN1YnNjcmlwdGlvbnMlMkZiYWIwOGUxMS03YjEyLTQzNTQtOWZkMS00YjVkNjRkNDBiNjglMkZyZXNvdXJjZUdyb3VwcyUyRkFwaS1EZWZhdWx0LUNlbnRyYWxVUyUyRnByb3ZpZGVycyUyRk1pY3Jvc29mdC5BcGlNYW5hZ2VtZW50JTJGc2VydmljZSUyRnNka3Rlc3RzZXJ2aWNlJTJGYXBpcyUyRmVjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f40b50a-308b-42ae-8681-b869879a7097" + "f2a65344-d514-45df-9ce2-f4f148dc9f33" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:02 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "75a76b61-e64c-448e-a06f-eb983432abdd" + "82aaa5a8-ccb7-40f8-89f7-965bf2f5c210" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "9136f6db-7c9e-4749-8b80-3a95c4a80597" + "c573da2c-545f-49ba-9059-ae3fa183e5ba" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040702Z:9136f6db-7c9e-4749-8b80-3a95c4a80597" + "WESTUS2:20190411T021428Z:c573da2c-545f-49ba-9059-ae3fa183e5ba" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:14:27 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"policyContent\": \"\\r\\n \\r\\n \\r\\n true\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n true\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "30f7b04c-54bb-41eb-9b70-0085636a1e91" + "a1e17d3b-721b-4586-9287-11e7c5a3ef4d" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "336" + "328" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:02 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY+s=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcfY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d9f1af1-2606-420f-aa2c-02695e14dcd6" + "ee758ecc-ba87-4814-9fd2-f6e78a552c6b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "f37d1583-c5e0-486b-b7b4-bf660738a86f" + "b0d1b2c2-0c95-40d3-be9f-e13248373a6d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040702Z:f37d1583-c5e0-486b-b7b4-bf660738a86f" + "WESTUS2:20190411T021428Z:b0d1b2c2-0c95-40d3-be9f-e13248373a6d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:28 GMT" + ], "Content-Length": [ - "634" + "619" ], "Content-Type": [ "application/json; charset=utf-8" @@ -799,64 +799,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"contentFormat\": \"xml\",\r\n \"policyContent\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\ttrue\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\ttrue\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "741a8fd2-ac81-42f5-a081-c9d6da1553bd" + "0debf815-1a27-48af-afd4-2881ff7e80e6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:02 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY+s=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcfY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "321df0fe-7a0b-42d2-a53b-0fd034e0587f" + "f8fff33d-fefd-48b1-8ec6-fe3fd7e59fc6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "c4902d5a-1fe7-4596-be70-b137dc1067ba" + "3ba3d979-28f5-4b48-990a-8fe231226ad9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040702Z:c4902d5a-1fe7-4596-be70-b137dc1067ba" + "WESTUS2:20190411T021428Z:3ba3d979-28f5-4b48-990a-8fe231226ad9" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:28 GMT" + ], "Content-Length": [ - "634" + "619" ], "Content-Type": [ "application/json; charset=utf-8" @@ -865,59 +865,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"contentFormat\": \"xml\",\r\n \"policyContent\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\ttrue\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\ttrue\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0be74d03-e6bc-4495-be0a-2dd2ad25efe8" + "3f5a716b-da16-45cf-ad3b-4ff84701804d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff9ed992-3c22-4501-8d99-ae871c235324" + "c964e6bb-4cf8-4b40-b370-1b0a2b9644cd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "0401f10e-2705-4cc0-a5ad-0882775bc7b3" + "0edbce3c-128e-4cd9-b0ed-3b7b3d5eb37f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040703Z:0401f10e-2705-4cc0-a5ad-0882775bc7b3" + "WESTUS2:20190411T021429Z:0edbce3c-128e-4cd9-b0ed-3b7b3d5eb37f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:28 GMT" + ], "Content-Length": [ "97" ], @@ -932,58 +932,58 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "773e2b67-488a-49a9-8db7-8edc7b71a888" + "4191543b-94b0-4852-8a54-5d6f688ba0a0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:02 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY+s=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcfY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d0e5242d-31ad-409e-aa05-6aaac11ba13d" + "ab19cb1b-a305-46c1-aead-7527e73f7ae6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "72b258cd-5f3c-4644-985a-d9bc44e9223c" + "e252f4d5-0135-48cc-a6b1-e3d533f0e761" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040702Z:72b258cd-5f3c-4644-985a-d9bc44e9223c" + "WESTUS2:20190411T021428Z:e252f4d5-0135-48cc-a6b1-e3d533f0e761" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:28 GMT" + ], "Content-Length": [ "0" ], @@ -995,118 +995,118 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e54a4d01-b831-4a15-81c2-9ba3e6e70ad6" + "0d202662-1653-47cc-a5df-770ecf60ec30" ], "If-Match": [ - "\"AAAAAAAAY+s=\"" + "\"AAAAAAAAcfY=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9f9fbc5f-b57b-4879-ae48-b7834eca9965" + "129e37d2-19f1-4c54-adc1-29a7d8aab0fb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "f8919615-c62d-40e2-b482-644d7433aaa7" + "128ad5fb-bc7f-4505-bea9-e5ff34facda5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040703Z:f8919615-c62d-40e2-b482-644d7433aaa7" + "WESTUS2:20190411T021429Z:128ad5fb-bc7f-4505-bea9-e5ff34facda5" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:14:28 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "569aa5ee-989b-49e2-84fd-8e8a5c1f3db1" + "9810e154-9259-4306-89c9-bba690360200" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "515edf8d-6d5a-4d68-a9b7-a650a47a0e34" + "5cf8187c-6bbf-4e3b-87fb-e99983d7b759" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "143532e2-4db5-4701-b035-9bfb0c987e01" + "90912daf-8ba2-443c-b262-5e03bcef2492" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040703Z:143532e2-4db5-4701-b035-9bfb0c987e01" + "WESTUS2:20190411T021429Z:90912daf-8ba2-443c-b262-5e03bcef2492" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:28 GMT" + ], "Content-Length": [ "7418" ], @@ -1121,55 +1121,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9dc3f5e-5089-41c2-a070-c9ae6db6f0ba" + "c27db0b3-98df-4de2-b324-8808128f8aa3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9cd02ba-be58-4921-a298-84797a7438bb" + "5fd41051-feaa-4ba5-a625-1db9b96a2c0c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-correlation-request-id": [ - "14b7bc8f-de18-4eab-bce3-ff18ebe8510b" + "0e5ea198-8777-4742-9cf4-e90a3028c9c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040703Z:14b7bc8f-de18-4eab-bce3-ff18ebe8510b" + "WESTUS2:20190411T021429Z:0e5ea198-8777-4742-9cf4-e90a3028c9c1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:29 GMT" + ], "Content-Length": [ "97" ], @@ -1184,60 +1184,60 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2720a70-c1fe-4ad0-98ec-4c81b5535a70" + "37655ec7-f216-486e-99c4-3c766b229feb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:04 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY/I=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcf0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "828747fc-b2a0-4f5a-a56c-28d142122212" + "cb9861a9-bdc7-45b4-8d94-3ffc783f6ff9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], "x-ms-correlation-request-id": [ - "3c9fb47e-ef48-4f3f-9d15-aa857aa4dc3a" + "22c6481a-1ef1-47aa-be5a-04e4e4ac9027" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040704Z:3c9fb47e-ef48-4f3f-9d15-aa857aa4dc3a" + "WESTUS2:20190411T021430Z:22c6481a-1ef1-47aa-be5a-04e4e4ac9027" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:29 GMT" + ], "Content-Length": [ - "603" + "588" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1246,59 +1246,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"contentFormat\": \"xml\",\r\n \"policyContent\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\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/echo-api/operations/modify-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb185083-41ee-4c83-a163-53a994ee4466" + "bcc836b4-5c68-4a17-99d2-031e530dd332" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1ecee856-8230-45c1-b81c-6d2d876c377d" + "94c16954-47d7-481f-be46-b0dc25df094f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], "x-ms-correlation-request-id": [ - "3686024e-1cf2-4161-9a39-599d938898e1" + "92379eda-47f4-420c-a587-bc6169525675" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040705Z:3686024e-1cf2-4161-9a39-599d938898e1" + "WESTUS2:20190411T021430Z:92379eda-47f4-420c-a587-bc6169525675" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:30 GMT" + ], "Content-Length": [ "97" ], @@ -1313,69 +1313,69 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\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}", + "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "00d00667-4dbb-4b14-9135-9190a4543ae6" + "e6f873c0-af5a-4270-bd01-0b4afbc1f5b0" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "267" + "259" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:04 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY/I=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcf0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e4775d39-da4e-47a0-892c-c90ef65c10d8" + "6dec7f85-174a-4bca-b0c1-b3c95eb92ce4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], "x-ms-correlation-request-id": [ - "73cc4fdf-35ae-48da-ab10-11591feb7154" + "221cbdb7-5200-4637-8fd8-2ec85141a40f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040704Z:73cc4fdf-35ae-48da-ab10-11591feb7154" + "WESTUS2:20190411T021429Z:221cbdb7-5200-4637-8fd8-2ec85141a40f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:29 GMT" + ], "Content-Length": [ - "603" + "588" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1384,62 +1384,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"contentFormat\": \"xml\",\r\n \"policyContent\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\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/echo-api/operations/modify-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "caed2866-ca8f-4c18-8dc6-069ca7271e1e" + "388ebdd4-1b76-49ba-8a5c-ce96a507b41e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:04 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY/I=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcf0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b425b17-a367-46de-a6eb-da2a82e9bfae" + "c6fa3233-1052-45e2-9130-23d90da0c1e7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], "x-ms-correlation-request-id": [ - "26c4f543-d8f6-4633-b98b-41b01e05f45c" + "15d01e44-a6a4-481c-9347-24ff7da964bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040704Z:26c4f543-d8f6-4633-b98b-41b01e05f45c" + "WESTUS2:20190411T021430Z:15d01e44-a6a4-481c-9347-24ff7da964bc" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:29 GMT" + ], "Content-Length": [ "0" ], @@ -1451,118 +1451,118 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/modify-resource/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aee1dbde-13d0-4da6-bd09-61f9ff5d3e90" + "a9670ae3-006d-42ea-b90e-ac99b5033052" ], "If-Match": [ - "\"AAAAAAAAY/I=\"" + "\"AAAAAAAAcf0=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:04 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d87244e0-c5fb-4913-9b4b-f0c9498f984b" + "b44ae8a6-2152-422b-94ed-ed0c904ff02c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "179ab80d-4afd-42cb-af08-4e3f692c1ec1" + "71ed2eaa-28bf-4360-901e-7e81ea91fc11" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040705Z:179ab80d-4afd-42cb-af08-4e3f692c1ec1" + "WESTUS2:20190411T021430Z:71ed2eaa-28bf-4360-901e-7e81ea91fc11" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:14:30 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?$filter=name%20eq%20'Unlimited'&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8kZmlsdGVyPW5hbWUlMjBlcSUyMCdVbmxpbWl0ZWQnJmFwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?$filter=name%20eq%20'Unlimited'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8kZmlsdGVyPW5hbWUlMjBlcSUyMCdVbmxpbWl0ZWQnJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9ff9e31-ac64-494c-ae99-319d495c3ae0" + "7f5df338-ae9a-4fbb-989c-bae11a2e1e8f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "51bb23de-47cf-43e4-ba1e-017dfa70485d" + "f3f6248e-6693-4dac-88a7-b107568b36e8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], "x-ms-correlation-request-id": [ - "88cbae58-2d72-4a1b-8bd3-b0e6eef14d40" + "f73b0671-a138-4f60-b971-91be473a706d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040705Z:88cbae58-2d72-4a1b-8bd3-b0e6eef14d40" + "WESTUS2:20190411T021430Z:f73b0671-a138-4f60-b971-91be473a706d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:30 GMT" + ], "Content-Length": [ "656" ], @@ -1577,55 +1577,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc732dbe-ec26-4111-a841-32f1bb780dde" + "efcca0eb-0653-4d14-bd44-2bbb65f12aeb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "61ee9f5d-47fa-4135-99fb-ef4cc29c18e5" + "f9e08d75-b5ff-41ba-87ee-637c1a86cd7e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], "x-ms-correlation-request-id": [ - "509e8af8-3ff3-4015-93c2-159ae99ed5b6" + "bb3e71ed-09ba-4504-beeb-affede0128d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040705Z:509e8af8-3ff3-4015-93c2-159ae99ed5b6" + "WESTUS2:20190411T021430Z:bb3e71ed-09ba-4504-beeb-affede0128d1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:30 GMT" + ], "Content-Length": [ "97" ], @@ -1640,60 +1640,60 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "656238b1-e0eb-4a3b-92a4-6aed3888bf32" + "64fa3b42-e9b3-4051-9b9b-8c2e173b6f63" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:05 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY/o=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcgU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18d4c9e7-47e1-4404-9899-8a22791a3093" + "205a8196-f6d8-459a-a17d-9f9d470c7fe0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], "x-ms-correlation-request-id": [ - "adccb76b-caaa-4aa6-b477-139067ef86e7" + "f1b4fd93-6153-4896-b4b1-d7c31a731439" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040706Z:adccb76b-caaa-4aa6-b477-139067ef86e7" + "WESTUS2:20190411T021431Z:f1b4fd93-6153-4896-b4b1-d7c31a731439" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:31 GMT" + ], "Content-Length": [ - "641" + "626" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1702,59 +1702,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"contentFormat\": \"xml\",\r\n \"policyContent\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\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/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f4bae99-6d3a-4026-8f64-2a70aeae954b" + "ff3cb38c-e976-42dd-be12-7ce20050a960" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:06 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bf0e5df8-1b69-4fce-8932-9cd33bf8e158" + "a10a411b-baf1-48ed-b98b-097870fc6a45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], "x-ms-correlation-request-id": [ - "7eee8bba-aa6e-45c2-9de5-1a73ac586e78" + "26805faa-f6f5-4d31-a4e5-88eff5668563" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040706Z:7eee8bba-aa6e-45c2-9de5-1a73ac586e78" + "WESTUS2:20190411T021432Z:26805faa-f6f5-4d31-a4e5-88eff5668563" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:31 GMT" + ], "Content-Length": [ "97" ], @@ -1769,66 +1769,66 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\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}", + "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a462401c-97e8-4dff-a936-36aab0a1fa6d" + "a51a61bf-1911-4cd8-a04d-885187c16ef5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "334" + "326" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:05 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY/o=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcgU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7f97c19d-e357-4266-b293-73439f0772bf" + "aa774d63-340f-475d-8ad7-8ff8944fbc6d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], "x-ms-correlation-request-id": [ - "c5f9f047-aba7-4185-8943-7e9f62a18cc7" + "16a374be-bd53-4eb1-85e7-2e47d7fbbd00" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040705Z:c5f9f047-aba7-4185-8943-7e9f62a18cc7" + "WESTUS2:20190411T021431Z:16a374be-bd53-4eb1-85e7-2e47d7fbbd00" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:30 GMT" + ], "Content-Length": [ - "641" + "626" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1837,62 +1837,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"contentFormat\": \"xml\",\r\n \"policyContent\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\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/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74039fb1-1bdb-48aa-9adc-4efe8796139f" + "3e5ba33f-76b6-41ef-b9e6-0133d821bd7a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:06 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY/o=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcgU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "33ef9ddb-04b1-4215-88f2-174ed27eb795" + "6b418310-f440-4db3-a2f6-a293ad8f9618" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], "x-ms-correlation-request-id": [ - "1dcad6e9-e136-4ec8-ad91-a051505c4d44" + "d685f80c-a9e3-488a-bfee-31657a12e26f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040706Z:1dcad6e9-e136-4ec8-ad91-a051505c4d44" + "WESTUS2:20190411T021431Z:d685f80c-a9e3-488a-bfee-31657a12e26f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:31 GMT" + ], "Content-Length": [ "0" ], @@ -1904,63 +1904,63 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94eb57a4-8ec9-47d7-a961-fe52d474fdb7" + "cbfc45e5-6a94-4b0c-90d3-beb5e792c036" ], "If-Match": [ - "\"AAAAAAAAY/o=\"" + "\"AAAAAAAAcgU=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:06 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91bb824e-5e61-474a-b803-99d561fde279" + "d25bb0b5-7d15-4065-8991-6fdec3534d92" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "120a9e8b-da00-4bac-b591-10f43171e036" + "81594ee5-77bd-45e5-9fe3-66629d37c1c9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040706Z:120a9e8b-da00-4bac-b591-10f43171e036" + "WESTUS2:20190411T021431Z:81594ee5-77bd-45e5-9fe3-66629d37c1c9" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:14:31 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", 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 4d4a3e14cd50..400e436df0e0 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0c219dfb-8b0b-4642-93cb-aaee1cd1bee8" + "2c23a326-98ec-4983-9176-fbbe5c1e733e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:41 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f5c9183b-842e-4550-9ae9-073df6899813", - "44a40ef6-c040-46bb-9649-1fa875402e80" + "bf1cca5a-759b-44da-9621-c979c1479146", + "9acd3f5f-a0df-4feb-81c6-3d40a1473cd0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "5d3a76b6-d266-4bfb-83b0-0194bd25db48" + "e6536733-6b69-47ab-808c-fa68ff6c6fd8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040942Z:5d3a76b6-d266-4bfb-83b0-0194bd25db48" + "WESTUS2:20190411T020846Z:e6536733-6b69-47ab-808c-fa68ff6c6fd8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:46 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6fc478c8-4451-406b-a670-9d34a82b2586" + "41a50012-41e6-45d0-85f5-bd0c4a38c43c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:41 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f2e4688-84f9-4aa1-8fbb-505e64dec295" + "1251a62e-a41c-49b0-b885-344dc649b12f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-correlation-request-id": [ - "2d061b95-93d5-4d87-9245-100698b71213" + "50b43873-21ee-430d-a76a-85d0f39b338c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040942Z:2d061b95-93d5-4d87-9245-100698b71213" + "WESTUS2:20190411T020846Z:50b43873-21ee-430d-a76a-85d0f39b338c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:46 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,64 +136,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7328851f-5a7f-4f1a-bc18-393bb728a732" + "89f754c2-071a-4fe7-a608-b5893243ce69" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:41 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY+c=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAb1Q=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e4e666c7-fa53-4dcb-a8f1-50c39bac9415" + "1be766ed-ca51-44cc-9fe3-30e9c38034fc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-correlation-request-id": [ - "75f182a3-461a-4f17-89ca-dcb43e57d1d0" + "5d55c732-1d43-4825-b5a7-4f16ac8c8b4d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040942Z:75f182a3-461a-4f17-89ca-dcb43e57d1d0" + "WESTUS2:20190411T020847Z:5d55c732-1d43-4825-b5a7-4f16ac8c8b4d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:08:46 GMT" + ], "Content-Length": [ - "1343" + "1328" ], "Content-Type": [ "application/json; charset=utf-8" @@ -202,26 +202,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"contentFormat\": \"xml\",\r\n \"policyContent\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\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/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4572?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ1NzI/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ3MjE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description2127\",\r\n \"displayName\": \"display8765\",\r\n \"serviceUrl\": \"https://echoapi.cloudapp.net/echo\",\r\n \"path\": \"path4569\",\r\n \"protocols\": [\r\n \"https\",\r\n \"http\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description3509\",\r\n \"displayName\": \"display2757\",\r\n \"serviceUrl\": \"https://echoapi.cloudapp.net/echo\",\r\n \"path\": \"path8612\",\r\n \"protocols\": [\r\n \"https\",\r\n \"http\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5d2c069d-f073-488f-80be-711709b4a7f6" + "9641f623-b1bc-4bcb-a365-1bbe1652d56e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -234,36 +234,96 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:41 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZGw=\"" + "\"AAAAAAAAcPE=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "018d467b-3e11-4fd4-b972-eab6b9d9e624" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "d06c2f3e-d3f7-45f0-8d60-a64148dc28d2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T020847Z:d06c2f3e-d3f7-45f0-8d60-a64148dc28d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 02:08:47 GMT" + ], + "Content-Length": [ + "760" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"policyapi4721\",\r\n \"properties\": {\r\n \"displayName\": \"display2757\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"description3509\",\r\n \"serviceUrl\": \"https://echoapi.cloudapp.net/echo\",\r\n \"path\": \"path8612\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ3MjE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAcPE=\"" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aeace7fe-c773-4054-88c3-231743d28b67" + "781b0164-ed15-4214-bda6-2e46b297700e" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "x-ms-correlation-request-id": [ - "e33e2556-b927-40da-b476-bee973ac5fab" + "39521ff9-4c8d-466e-bc9c-7bafdf496bbf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040942Z:e33e2556-b927-40da-b476-bee973ac5fab" + "WESTUS2:20190411T020917Z:39521ff9-4c8d-466e-bc9c-7bafdf496bbf" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:17 GMT" + ], "Content-Length": [ "760" ], @@ -274,70 +334,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4572\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"policyapi4572\",\r\n \"properties\": {\r\n \"displayName\": \"display8765\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"description2127\",\r\n \"serviceUrl\": \"https://echoapi.cloudapp.net/echo\",\r\n \"path\": \"path4569\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"policyapi4721\",\r\n \"properties\": {\r\n \"displayName\": \"display2757\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"description3509\",\r\n \"serviceUrl\": \"https://echoapi.cloudapp.net/echo\",\r\n \"path\": \"path8612\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4572/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ1NzIvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ3MjEvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "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}", + "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"https://raw.githubusercontent.com/Azure/api-management-samples/master/sdkClientResources/ApiPolicy.xml\",\r\n \"format\": \"xml-link\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "54cf1389-9592-4a27-8ada-e5c3422dad5b" + "da659543-9dc8-487c-8923-992399eeb87a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "189" + "174" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:42 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZHI=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcPY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c586bf87-be2c-46b2-8014-745a16d7b93f" + "81f3296e-ec08-4ee3-bf68-a6e83ee7a9d0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "cdb790af-7e2e-4ea8-a4a8-83d15f9c9710" + "fe7e11e2-d624-4a71-a105-464f42b8a0f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040943Z:cdb790af-7e2e-4ea8-a4a8-83d15f9c9710" + "WESTUS2:20190411T020918Z:fe7e11e2-d624-4a71-a105-464f42b8a0f1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:18 GMT" + ], "Content-Length": [ - "819" + "804" ], "Content-Type": [ "application/json; charset=utf-8" @@ -346,62 +406,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4572/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"contentFormat\": \"xml\",\r\n \"policyContent\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\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/policyapi4721/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4572/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ1NzIvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ3MjEvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7fcfe9d-5298-4aa4-b540-77ad373e29cc" + "165d08d3-0a96-4765-8781-aad67b5fd922" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:42 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZHI=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcPY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89fa7bde-4789-4e7f-8580-11bd282e4c48" + "2f8bd6ef-edd0-4173-a7e7-536e11a85435" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-correlation-request-id": [ - "1a7abc50-2915-4713-8f4d-5f500bbead01" + "f9e8ccaf-4e2e-41b3-82cc-da04b5e0f905" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040943Z:1a7abc50-2915-4713-8f4d-5f500bbead01" + "WESTUS2:20190411T020918Z:f9e8ccaf-4e2e-41b3-82cc-da04b5e0f905" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:18 GMT" + ], "Content-Length": [ "0" ], @@ -413,118 +473,118 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4572/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ1NzIvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ3MjEvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7efd8cb3-51f8-4e76-8055-8088c98870b5" + "9c516a3f-ebe7-4b73-86c1-de68ab7ee31d" ], "If-Match": [ - "\"AAAAAAAAZHI=\"" + "\"AAAAAAAAcPY=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cd16a295-d757-4f8f-86e7-9c945a79c350" + "149d11e7-eb9f-420f-ab4c-6e3ebacad0f1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "c3137b81-1db0-4c07-917e-1495cae22790" + "b7311975-adea-474e-96eb-abd884241f4e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040944Z:c3137b81-1db0-4c07-917e-1495cae22790" + "WESTUS2:20190411T020919Z:b7311975-adea-474e-96eb-abd884241f4e" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:09:18 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4572/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ1NzIvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ3MjEvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f55afe35-f323-4c90-96d4-d18714e562a1" + "0f42d762-9e2a-45ef-a0ba-1c91c1cbb832" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f1dd806e-598a-45cd-aa20-cb6478c537c6" + "30f943fc-f01a-4ebe-8438-7f630241f664" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11995" ], "x-ms-correlation-request-id": [ - "5a31cdd5-4018-445f-80c8-ebde7d4f40d4" + "aaa63864-d396-46a7-9559-7456921fc059" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040944Z:5a31cdd5-4018-445f-80c8-ebde7d4f40d4" + "WESTUS2:20190411T020919Z:aaa63864-d396-46a7-9559-7456921fc059" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:18 GMT" + ], "Content-Length": [ "97" ], @@ -539,118 +599,118 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4572?deleteRevisions=true&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ1NzI/ZGVsZXRlUmV2aXNpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi4721?deleteRevisions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTQ3MjE/ZGVsZXRlUmV2aXNpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83413110-afff-4589-997d-5b1b37dd8f55" + "587757f4-8f5d-41af-9b1b-2f04cc8eb6c1" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ded268a4-0d9a-4cce-b3b3-ff3aaf0fa553" + "ece45018-db49-4341-a9d4-be6a3781b975" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14998" ], "x-ms-correlation-request-id": [ - "371925c5-5a36-4915-866e-f144ca11a86f" + "5405d5b1-59b5-4245-afeb-a54e23030401" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040944Z:371925c5-5a36-4915-866e-f144ca11a86f" + "WESTUS2:20190411T020919Z:5405d5b1-59b5-4245-afeb-a54e23030401" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:09:19 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?$filter=name%20eq%20'Unlimited'&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8kZmlsdGVyPW5hbWUlMjBlcSUyMCdVbmxpbWl0ZWQnJmFwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?$filter=name%20eq%20'Unlimited'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8kZmlsdGVyPW5hbWUlMjBlcSUyMCdVbmxpbWl0ZWQnJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae57522b-a7ab-4f17-acd5-f13ef0006b02" + "90ae2fb8-3ced-4bf9-9a53-06ebc4dc6db6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "61006b0b-048e-46e4-a8f0-33760135000a" + "2a1dcdec-e03d-41fa-a4de-c1fcc511136e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11994" ], "x-ms-correlation-request-id": [ - "4c26bd88-2ed1-43ce-be4d-ab2318ce07d0" + "31672800-e33f-424a-bd86-0086cb87ba9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040945Z:4c26bd88-2ed1-43ce-be4d-ab2318ce07d0" + "WESTUS2:20190411T020919Z:31672800-e33f-424a-bd86-0086cb87ba9f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:19 GMT" + ], "Content-Length": [ "656" ], @@ -665,55 +725,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7aefb5f-13f8-4fa2-b572-f260696a7ec3" + "6dddb81d-47af-47b6-af1c-92e7432cfd26" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3ace8ae8-5cae-4e29-bffc-f59d8addb31d" + "e80f36b2-685d-45a3-963c-de3c30af15a3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11993" ], "x-ms-correlation-request-id": [ - "08ae2155-0648-4a78-9b77-4c73ea63433e" + "b7d9019d-a0a7-442c-98bc-b577f85fa143" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040945Z:08ae2155-0648-4a78-9b77-4c73ea63433e" + "WESTUS2:20190411T020919Z:b7d9019d-a0a7-442c-98bc-b577f85fa143" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:19 GMT" + ], "Content-Length": [ "97" ], @@ -728,60 +788,60 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "014ace40-1f1a-47b1-acf8-1180455a4f42" + "3ca5dd14-eb18-43db-ae5f-abd1eedce92b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:46 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZH0=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcP8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b23a9dee-9c3e-4f8f-88b9-9d0a2db88f03" + "420c0c31-5391-4640-9b4e-cdebbe9ae7b9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11992" ], "x-ms-correlation-request-id": [ - "4fa8a703-97c2-407b-bc5b-8c9439f3401c" + "e1e0195e-a39e-4d58-8ca5-4d42c7363487" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040946Z:4fa8a703-97c2-407b-bc5b-8c9439f3401c" + "WESTUS2:20190411T020920Z:e1e0195e-a39e-4d58-8ca5-4d42c7363487" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:20 GMT" + ], "Content-Length": [ - "586" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -790,59 +850,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"contentFormat\": \"xml\",\r\n \"policyContent\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\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/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb92d538-62a2-449a-bd92-2c8b2bdb2aa5" + "9bc4541b-fe8b-4a3c-b6d2-09dc2fad5de0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:46 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "52581bb4-70c7-4705-b53d-ccf74d15a39f" + "82e1115d-8ca1-4b9e-99e4-5bfd534ccf89" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11990" ], "x-ms-correlation-request-id": [ - "81b21740-8daa-41fd-a953-a49b48a31556" + "6a56ee39-9020-46ee-9cfb-07466afb2a5f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040946Z:81b21740-8daa-41fd-a953-a49b48a31556" + "WESTUS2:20190411T020921Z:6a56ee39-9020-46ee-9cfb-07466afb2a5f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:20 GMT" + ], "Content-Length": [ "97" ], @@ -857,66 +917,66 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"policyContent\": \"https://raw.githubusercontent.com/Azure/api-management-samples/master/sdkClientResources/ProductPolicy.xml\",\r\n \"contentFormat\": \"xml-link\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"https://raw.githubusercontent.com/Azure/api-management-samples/master/sdkClientResources/ProductPolicy.xml\",\r\n \"format\": \"xml-link\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b6ca7641-5afe-4c2d-91aa-ace7d255ee91" + "3346f88c-ba96-4f21-ac41-f48b6dcd5698" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "193" + "178" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:44 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZH0=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcP8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5bc3f6c-8414-4ea5-8980-e086a4f2fac3" + "85db5189-7aa5-4364-acff-b87f00c1cf11" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "c7d347a2-505b-4671-9b39-0f425012a23d" + "3cb0925f-482c-45c5-a87e-f31527ec4c9a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040945Z:c7d347a2-505b-4671-9b39-0f425012a23d" + "WESTUS2:20190411T020920Z:3cb0925f-482c-45c5-a87e-f31527ec4c9a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:19 GMT" + ], "Content-Length": [ - "586" + "571" ], "Content-Type": [ "application/json; charset=utf-8" @@ -925,62 +985,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"contentFormat\": \"xml\",\r\n \"policyContent\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\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/unlimited/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f95ab2f-5c28-416a-a77f-41cd234ffc5e" + "43dde621-9047-452a-a251-2d9d7099588d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:46 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZH0=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcP8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b1d5ecd-0ac7-4cd3-8714-56cf289caeac" + "e3a16c3c-e40b-4649-8be8-1230b23cb5b2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11991" ], "x-ms-correlation-request-id": [ - "b82d3ac5-fd7a-43fc-aa59-003689715986" + "7b494ecc-5d8c-405c-b78b-6d7bd2baa7e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040946Z:b82d3ac5-fd7a-43fc-aa59-003689715986" + "WESTUS2:20190411T020920Z:7b494ecc-5d8c-405c-b78b-6d7bd2baa7e3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:20 GMT" + ], "Content-Length": [ "0" ], @@ -992,63 +1052,63 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited/policies/policy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy91bmxpbWl0ZWQvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23cb1c23-f879-457c-bf80-fcf0e64afae6" + "c215801b-53f3-4ed0-86ad-0dd5ec4048d4" ], "If-Match": [ - "\"AAAAAAAAZH0=\"" + "\"AAAAAAAAcP8=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:46 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d05eb375-e13d-45e2-bc93-c7324a228a77" + "43e933fe-dc9c-4b58-be96-b82c42f33790" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14997" ], "x-ms-correlation-request-id": [ - "0fb590ca-55b4-4893-921c-cc0ba98ca577" + "77544577-9c48-433a-953c-144eab9b76b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040946Z:0fb590ca-55b4-4893-921c-cc0ba98ca577" + "WESTUS2:20190411T020921Z:77544577-9c48-433a-953c-144eab9b76b7" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:09:20 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -1057,10 +1117,10 @@ ], "Names": { "CreateListUpdateDelete": [ - "policyapi4572", - "display8765", - "description2127", - "path4569" + "policyapi4721", + "display2757", + "description3509", + "path8612" ] }, "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 c982b38e1ec2..3e2f19c1cd2b 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ecc32fd5-c0c6-4b92-8e8b-0b8f8bd69dca" + "031fccab-2181-4ed8-a578-47c2c3fb881f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:41 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89158698-ad33-4085-8538-6abf1dab1ce0", - "5db7913a-df3b-4948-aa43-08c2e35651c1" + "9a76c79e-c811-4d42-a119-7818d66f9ec3", + "9484f92c-1555-4ddc-8e59-9ee0df9c691e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "6cd61b8e-51b5-4b97-9010-abae623a8a70" + "493af88d-1e55-4c6b-862d-0974005df4fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040642Z:6cd61b8e-51b5-4b97-9010-abae623a8a70" + "WESTUS2:20190411T020954Z:493af88d-1e55-4c6b-862d-0974005df4fd" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:54 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "185cc4b1-06a5-4425-a98c-a4900e6fc7fb" + "c75a10c8-ceef-4964-9aaa-1e25d60f899b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:41 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "543b0ee6-2633-43f6-991b-c7f1de60dd12" + "b13a6152-2dc0-4118-82fb-1c1617c25541" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11989" ], "x-ms-correlation-request-id": [ - "6d827315-fafd-402b-8034-96342dec7ddd" + "ce59a56a-c904-43af-9f8a-cec4c9229c53" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040642Z:6d827315-fafd-402b-8034-96342dec7ddd" + "WESTUS2:20190411T020955Z:ce59a56a-c904-43af-9f8a-cec4c9229c53" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:55 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?$filter=name%20eq%20'Starter'&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8kZmlsdGVyPW5hbWUlMjBlcSUyMCdTdGFydGVyJyZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?$filter=name%20eq%20'Starter'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8kZmlsdGVyPW5hbWUlMjBlcSUyMCdTdGFydGVyJyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba2996ff-41f7-4e94-affc-5d1e9dc71080" + "6db747d0-fcfb-45e6-a8a9-4db7ba78a4cc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "787173b0-8bc8-4663-9338-8f510457750a" + "e584a058-8330-4ef1-b169-36cf171ae965" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11988" ], "x-ms-correlation-request-id": [ - "71974ad4-6c29-4a70-9347-fe8e31fea00b" + "ee9fec60-fa2b-4433-bc15-073c42fc45bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040642Z:71974ad4-6c29-4a70-9347-fe8e31fea00b" + "WESTUS2:20190411T020955Z:ee9fec60-fa2b-4433-bc15-073c42fc45bb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:55 GMT" + ], "Content-Length": [ "647" ], @@ -203,55 +203,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/apis?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a03e15cf-81cb-4cf3-bb9e-8951dd400d24" + "15ad3f33-c93a-4d1c-a1ec-87a4a073b087" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ba4f8d58-31e4-4ddc-861e-de8b806e8253" + "bb746174-2055-407e-b36f-587dde1298d6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11987" ], "x-ms-correlation-request-id": [ - "e6991d80-6d3f-4960-81ef-1bbfeb08d42d" + "9b6cdcbd-8a0c-4ad4-91dc-1dd36aeb72b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040643Z:e6991d80-6d3f-4960-81ef-1bbfeb08d42d" + "WESTUS2:20190411T020955Z:9b6cdcbd-8a0c-4ad4-91dc-1dd36aeb72b4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:55 GMT" + ], "Content-Length": [ "702" ], @@ -266,55 +266,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/apis?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70cd6627-f4c9-41c0-9182-f92ce0934153" + "011acf57-f4af-4f6a-bea5-17da9de46bf4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "36e3695a-892d-4020-8aba-5e65cdb8e724" + "17d7689c-d5a2-4d58-8ec9-3abb39b4dec6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11985" ], "x-ms-correlation-request-id": [ - "2412dacc-aa5f-4e8d-90b6-09a543c11811" + "b0de0768-b5b6-4e6d-82c7-c1d012063ceb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040644Z:2412dacc-aa5f-4e8d-90b6-09a543c11811" + "WESTUS2:20190411T020956Z:b0de0768-b5b6-4e6d-82c7-c1d012063ceb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:56 GMT" + ], "Content-Length": [ "19" ], @@ -329,55 +329,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/apis?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2FwaXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d59c7acd-abb0-4a5a-9426-1f26e1063a51" + "10636581-0b84-49b5-971f-f90643a6bba0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3ca2c736-2711-4c35-a383-efb4c6ba0809" + "e8c708ca-cda9-4b08-be2a-d38d811ccd4d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11984" ], "x-ms-correlation-request-id": [ - "767b0fb8-3b98-40d4-b6e6-fe431aeda95e" + "84513540-05ad-4880-bf9c-7c149e35374b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040645Z:767b0fb8-3b98-40d4-b6e6-fe431aeda95e" + "WESTUS2:20190411T020957Z:84513540-05ad-4880-bf9c-7c149e35374b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:57 GMT" + ], "Content-Length": [ "702" ], @@ -392,58 +392,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3821e993-d933-4317-b85c-0096f0d65926" + "0e268f0b-f06d-4b1c-8401-33f420fd3a9c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:42 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAYcI=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAb1s=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ea561aa-9c9d-4c68-95ce-3280ba516fc1" + "4c41f71d-a691-4b6e-81ae-101813ed25b1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11986" ], "x-ms-correlation-request-id": [ - "2603249b-4880-41ca-9213-8eebc9e03636" + "33a31579-ee3e-415c-a6a3-34cbe8553a8c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040643Z:2603249b-4880-41ca-9213-8eebc9e03636" + "WESTUS2:20190411T020956Z:33a31579-ee3e-415c-a6a3-34cbe8553a8c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:55 GMT" + ], "Content-Length": [ "713" ], @@ -458,118 +458,118 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/apis/echo-api?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2FwaXMvZWNoby1hcGk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/apis/echo-api?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2FwaXMvZWNoby1hcGk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0af42ad1-a2e2-4789-a2d0-4ba6820dd4b1" + "06a64f34-6b37-479f-9046-aa6a9c512428" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2674672c-8cf2-4324-b33a-99c2f5fb39af" + "f537800c-fed6-40f5-b8e5-0fb5c1cb6d49" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "cc79ec2f-6ad3-4f5d-805a-7f5b27b9c0ef" + "2fdb43e9-3df3-437c-a973-feac682482b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040644Z:cc79ec2f-6ad3-4f5d-805a-7f5b27b9c0ef" + "WESTUS2:20190411T020956Z:2fdb43e9-3df3-437c-a973-feac682482b6" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:09:56 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/apis/echo-api?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2FwaXMvZWNoby1hcGk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/apis/echo-api?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2FwaXMvZWNoby1hcGk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34e330f0-e86c-4293-a316-b4ee98d67092" + "7fd94736-f2c9-4515-a4ff-3a0628d8d29b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:44 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAYcI=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAb1s=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "51885aab-14f8-4e82-abf5-4866227aea45" + "dd4e9be4-aaf9-402d-8bad-cb3c140b68b1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "757554f7-8b35-45fd-8d0b-6b56a725446e" + "9957c2ba-d1cb-4365-86c4-267faa9941f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040644Z:757554f7-8b35-45fd-8d0b-6b56a725446e" + "WESTUS2:20190411T020957Z:9957c2ba-d1cb-4365-86c4-267faa9941f8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:57 GMT" + ], "Content-Length": [ "586" ], 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 ac06d4045fb7..3ad2d6e33ceb 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fb14f596-fe14-4e48-a134-df40c127f859" + "b82b89f3-1d40-49af-a89f-653b895e2272" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:34 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b54540f7-44f6-43cf-bd5f-52df3f4c89a8", - "b7bdce74-b382-4afa-b47b-c24440866bbf" + "adb51d09-4a92-4566-8d6a-4414c882123c", + "47bdfd54-eabc-442c-b021-65597dd46cd4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "c5ca22aa-2495-4756-acc6-f91b139786c3" + "163644f8-96cc-4c42-b17a-e6d451de6316" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040635Z:c5ca22aa-2495-4756-acc6-f91b139786c3" + "WESTUS2:20190411T020949Z:163644f8-96cc-4c42-b17a-e6d451de6316" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:48 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84c558c0-147a-4a22-8d96-f58a971fe4de" + "f18439dc-baef-416d-a47e-fe393142ca92" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:35 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f6fc113a-5a93-4808-a166-94e4d305f610" + "4f8f2856-a99e-4423-8ebe-c3a976459716" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11992" ], "x-ms-correlation-request-id": [ - "4b2a2a4f-4642-445d-b65e-5a1be48a3560" + "1eb5af32-8b84-491b-90f7-34606970c4da" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040635Z:4b2a2a4f-4642-445d-b65e-5a1be48a3560" + "WESTUS2:20190411T020949Z:1eb5af32-8b84-491b-90f7-34606970c4da" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:48 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c51fe7f-adea-426e-90c6-e0707a00f6b6" + "bb7bdd64-2765-4e7d-b366-c021ef1f0b49" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6f69f525-ca09-42c0-a38e-418b54f14089" + "6761669f-5e80-4fa8-ab78-f126ccdf1a70" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11991" ], "x-ms-correlation-request-id": [ - "185d975e-30f6-4f9f-a9fa-7c56d14a1cbf" + "91d8f7a9-423b-478d-af83-2380c17d2707" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040635Z:185d975e-30f6-4f9f-a9fa-7c56d14a1cbf" + "WESTUS2:20190411T020949Z:91d8f7a9-423b-478d-af83-2380c17d2707" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:48 GMT" + ], "Content-Length": [ "1281" ], @@ -203,22 +203,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7501?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0NzUwMT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0Nzg2OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"productDescription1599\",\r\n \"terms\": \"productTerms6758\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\",\r\n \"displayName\": \"productName7221\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"productDescription5078\",\r\n \"terms\": \"productTerms6393\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\",\r\n \"displayName\": \"productName9357\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "98d3cf85-6094-4492-8e42-069f0b37e495" + "c06cfdfa-283b-433f-a57f-7757659e9246" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,36 +231,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:36 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY7U=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcUE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "45093e32-e12b-45d1-a9c7-08d13593dd76" + "6c2f1728-d5c3-4a37-94f9-96cb021722da" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "f602c20f-392c-4347-8921-779fd40708d6" + "8150aa82-0ccc-43ed-8fca-8127a3d705cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040636Z:f602c20f-392c-4347-8921-779fd40708d6" + "WESTUS2:20190411T020950Z:8150aa82-0ccc-43ed-8fca-8127a3d705cc" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:49 GMT" + ], "Content-Length": [ "1054" ], @@ -271,62 +271,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7501\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"newproduct7501\",\r\n \"properties\": {\r\n \"displayName\": \"productName7221\",\r\n \"description\": \"productDescription1599\",\r\n \"terms\": \"productTerms6758\",\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/newproduct7868\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"newproduct7868\",\r\n \"properties\": {\r\n \"displayName\": \"productName9357\",\r\n \"description\": \"productDescription5078\",\r\n \"terms\": \"productTerms6393\",\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}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7501?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0NzUwMT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0Nzg2OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b993a72-e793-4484-97f5-b84dc403a523" + "67038622-4b97-47a2-a8d4-6e8d384425f7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:36 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY7U=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcUE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "db3d219b-a412-433a-9a7a-27720ef0cdfc" + "4fc3b3d3-b83c-4b97-8f77-4608dd5a5583" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11990" ], "x-ms-correlation-request-id": [ - "88b6c198-5fa0-4b5b-a0b0-a371432f8bd2" + "7fa7261e-2823-42dd-889e-17dcdaaf29b5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040636Z:88b6c198-5fa0-4b5b-a0b0-a371432f8bd2" + "WESTUS2:20190411T020950Z:7fa7261e-2823-42dd-889e-17dcdaaf29b5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:49 GMT" + ], "Content-Length": [ "0" ], @@ -338,58 +338,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7501?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0NzUwMT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0Nzg2OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b24b7cbd-d0ad-4db5-a74a-3d04a4c8b236" + "728c8791-a43c-4835-9b4b-c7d9de2d5b4d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:37 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY7o=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcUY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "daa665f8-595c-429e-904a-287f12fafd48" + "5d82da88-4430-4dfe-a2f0-c9987b3ddfa2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11985" ], "x-ms-correlation-request-id": [ - "74fb63e7-0a3c-48cd-85ad-91351953a95d" + "85e2d7b3-b672-4f81-b244-e0a40ef597f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040637Z:74fb63e7-0a3c-48cd-85ad-91351953a95d" + "WESTUS2:20190411T020951Z:85e2d7b3-b672-4f81-b244-e0a40ef597f3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:50 GMT" + ], "Content-Length": [ "0" ], @@ -401,64 +401,64 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7501?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0NzUwMT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0Nzg2OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"productDescription2992\",\r\n \"terms\": \"productTerms3809\",\r\n \"displayName\": \"productName4286\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"productDescription662\",\r\n \"terms\": \"productTerms6105\",\r\n \"displayName\": \"productName6960\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c2f3b74b-248b-46b8-b7fe-fe750da1fa22" + "ba44331c-b68b-46dc-9137-42f42a8d1fc8" ], "If-Match": [ - "\"AAAAAAAAY7U=\"" + "\"AAAAAAAAcUE=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "146" + "145" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ae587da-f1a9-4727-91e4-d0d754a7134f" + "b1b8ae1d-4a89-4e50-92cb-37bc6104289f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "e612b28a-6163-4151-8dc7-23dd2da0403e" + "6d1f7421-9557-4e5b-a748-9490b430aeab" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040637Z:e612b28a-6163-4151-8dc7-23dd2da0403e" + "WESTUS2:20190411T020950Z:6d1f7421-9557-4e5b-a748-9490b430aeab" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:49 GMT" + ], "Expires": [ "-1" ] @@ -467,60 +467,60 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7501?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0NzUwMT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0Nzg2OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e268d931-7b90-42cf-8b08-0e6d936be11b" + "8c22aa7a-81e1-4041-a289-622611633773" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:36 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY7o=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcUY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "588aaf11-3e9b-4fd0-87b9-c6170fbecfb8" + "817dd8cc-e249-4189-9954-38cf8e3b712f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11989" ], "x-ms-correlation-request-id": [ - "cd4d5785-b11b-4c9a-9842-1e9932ec684f" + "a9de5498-6728-4097-bda6-2e7ff6c3ccca" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040637Z:cd4d5785-b11b-4c9a-9842-1e9932ec684f" + "WESTUS2:20190411T020950Z:a9de5498-6728-4097-bda6-2e7ff6c3ccca" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:49 GMT" + ], "Content-Length": [ - "539" + "538" ], "Content-Type": [ "application/json; charset=utf-8" @@ -529,59 +529,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7501\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"newproduct7501\",\r\n \"properties\": {\r\n \"displayName\": \"productName4286\",\r\n \"description\": \"productDescription2992\",\r\n \"terms\": \"productTerms3809\",\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/newproduct7868\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"newproduct7868\",\r\n \"properties\": {\r\n \"displayName\": \"productName6960\",\r\n \"description\": \"productDescription662\",\r\n \"terms\": \"productTerms6105\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7501?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0NzUwMT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0Nzg2OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff0c842c-53f8-40c4-8d1d-6468cbdb7f80" + "3723a167-e74d-4aad-b103-b11dc5d2a432" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:38 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1fc4a320-1acb-4370-b595-ff30b2d6a979" + "bea2f507-76b8-4ef2-8777-294305b93b4c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11984" ], "x-ms-correlation-request-id": [ - "17b020b8-c087-4f22-a5c4-b71c3bfb42a3" + "b4182b3a-2393-445d-b00f-c97b28e04f04" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040638Z:17b020b8-c087-4f22-a5c4-b71c3bfb42a3" + "WESTUS2:20190411T020951Z:b4182b3a-2393-445d-b00f-c97b28e04f04" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:50 GMT" + ], "Content-Length": [ "83" ], @@ -596,57 +596,57 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?$top=1&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8kdG9wPTEmYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8kdG9wPTEmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e4e509f-607e-4504-a0e1-63ec1177d92e" + "6dbb0ba3-8b84-4311-aea8-86b3fa6c6152" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f663f88-df76-4b96-a333-4c98f679a152" + "08cf24b3-7035-4829-8282-4250eefd51a8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11988" ], "x-ms-correlation-request-id": [ - "3efc2a06-c9e3-484d-a96a-cc0b3e83f6a0" + "77e124c4-4260-4f47-97ad-b5eb5a34d722" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040637Z:3efc2a06-c9e3-484d-a96a-cc0b3e83f6a0" + "WESTUS2:20190411T020950Z:77e124c4-4260-4f47-97ad-b5eb5a34d722" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:49 GMT" + ], "Content-Length": [ - "867" + "866" ], "Content-Type": [ "application/json; charset=utf-8" @@ -655,59 +655,59 @@ "-1" ] }, - "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/newproduct7501\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"newproduct7501\",\r\n \"properties\": {\r\n \"displayName\": \"productName4286\",\r\n \"description\": \"productDescription2992\",\r\n \"terms\": \"productTerms3809\",\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/newproduct7868\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"newproduct7868\",\r\n \"properties\": {\r\n \"displayName\": \"productName6960\",\r\n \"description\": \"productDescription662\",\r\n \"terms\": \"productTerms6105\",\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=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/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", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8lMjR0b3A9MSZhcGktdmVyc2lvbj0yMDE4LTAxLTAxJiUyNHNraXA9MQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?%24top=1&api-version=2019-01-01&%24skip=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8lMjR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAxJiUyNHNraXA9MQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7bb8c29-c14b-44d2-b5b7-b60923677cda" + "48690111-3446-415e-806c-bf8b65e532aa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3cda6ce5-cf74-4dc4-b40a-948c2579fbd1" + "87b22ddd-5743-4eae-afe3-aa5a2a184a32" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11987" ], "x-ms-correlation-request-id": [ - "1cb34873-f6e4-4948-a29d-aafa41e42faf" + "37248caa-8042-4d16-91e5-284202c23c62" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040637Z:1cb34873-f6e4-4948-a29d-aafa41e42faf" + "WESTUS2:20190411T020950Z:37248caa-8042-4d16-91e5-284202c23c62" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:49 GMT" + ], "Content-Length": [ "894" ], @@ -718,59 +718,59 @@ "-1" ] }, - "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\": \"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=2\"\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\",\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\": \"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=2019-01-01&%24skip=2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?%24top=1&api-version=2018-01-01&%24skip=2", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8lMjR0b3A9MSZhcGktdmVyc2lvbj0yMDE4LTAxLTAxJiUyNHNraXA9Mg==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?%24top=1&api-version=2019-01-01&%24skip=2", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8lMjR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAxJiUyNHNraXA9Mg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b2d6e55-c236-47e4-a7b7-0462e7aa6863" + "81896052-00d1-4804-8e60-1e3ab582cd58" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:37 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89af4f57-9398-42a0-94a2-71ecafc2d097" + "e47a180e-41f3-4331-9dae-f4e25fe53744" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11986" ], "x-ms-correlation-request-id": [ - "9683ba7a-74ae-429e-8d73-a646616d4d59" + "28f7be70-6759-4bfb-b968-b1e223589d29" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040637Z:9683ba7a-74ae-429e-8d73-a646616d4d59" + "WESTUS2:20190411T020951Z:28f7be70-6759-4bfb-b968-b1e223589d29" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:50 GMT" + ], "Content-Length": [ "656" ], @@ -785,121 +785,121 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7501?deleteSubscriptions=true&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0NzUwMT9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868?deleteSubscriptions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0Nzg2OD9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7a8617-5c35-4345-8cc7-6c4833ad62c0" + "28c73a46-36df-4067-b2c7-634ea6f97638" ], "If-Match": [ - "\"AAAAAAAAY7o=\"" + "\"AAAAAAAAcUY=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:38 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3ad61e93-d75a-4ad9-98f4-1736a6c03d7c" + "ad718e86-02e3-4c39-adba-fd822d33aa89" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "0da355b4-a9f9-424c-894e-304003b44a4d" + "59ecb00a-6e71-4d56-9914-9b99d38a2154" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040638Z:0da355b4-a9f9-424c-894e-304003b44a4d" + "WESTUS2:20190411T020951Z:59ecb00a-6e71-4d56-9914-9b99d38a2154" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:09:50 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7501?deleteSubscriptions=true&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0NzUwMT9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct7868?deleteSubscriptions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0Nzg2OD9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25954a26-7704-47e7-8871-89d0a21fb8ab" + "90454fbc-d41a-47ac-a0a3-bd1699b4f400" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:38 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "97a50983-0e72-479b-aeb3-46bafd1eaae7" + "f171a109-ec3b-403b-9ea1-12b393a1112b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14996" ], "x-ms-correlation-request-id": [ - "44efadd3-142d-4496-ac43-f03afa16b733" + "0304353a-ead7-41f8-9017-e784c3e93506" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040638Z:44efadd3-142d-4496-ac43-f03afa16b733" + "WESTUS2:20190411T020951Z:0304353a-ead7-41f8-9017-e784c3e93506" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:50 GMT" + ], "Expires": [ "-1" ] @@ -910,13 +910,13 @@ ], "Names": { "CreateListUpdateDelete": [ - "newproduct7501", - "productName7221", - "productDescription1599", - "productTerms6758", - "productName4286", - "productDescription2992", - "productTerms3809" + "newproduct7868", + "productName9357", + "productDescription5078", + "productTerms6393", + "productName6960", + "productDescription662", + "productTerms6105" ] }, "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 ccc926f86468..417983465eef 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ffedd0db-08cd-4c04-822d-45cfc5882c0d" + "2e3fd6b3-ee44-4cee-95f1-1404e4da7d4b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:30 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2df5ea36-ab63-4dd4-b3c9-c302aaf4278e", - "55b5e9bd-1b98-4ebd-b556-884974c821a7" + "5f32f37b-9719-40d6-9d3b-30cb4c63bd93", + "85c4bf90-8d36-47a5-afad-239e7771c3a9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-correlation-request-id": [ - "1d4056f2-5987-468b-8983-ed5905b44549" + "8b2fe635-dc5a-4975-977b-916b9749d579" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040631Z:1d4056f2-5987-468b-8983-ed5905b44549" + "WESTUS2:20190411T020945Z:8b2fe635-dc5a-4975-977b-916b9749d579" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:45 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b85e61e-b0e0-489a-b7a6-0a4ac938bed5" + "53d6e408-7c9d-4574-b63e-c1ac3d6cb9b4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:30 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43af210d-b3cf-4fa8-a561-8a97f5ade33c" + "921d7d7d-b7e3-498a-998c-949809e9f2db" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11990" ], "x-ms-correlation-request-id": [ - "4de23c20-a345-418b-8188-edf9ead4cf4f" + "a5e00823-53fd-4f15-ad97-90ec58c932a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040631Z:4de23c20-a345-418b-8188-edf9ead4cf4f" + "WESTUS2:20190411T020945Z:a5e00823-53fd-4f15-ad97-90ec58c932a8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:45 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?$filter=name%20eq%20'Starter'&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8kZmlsdGVyPW5hbWUlMjBlcSUyMCdTdGFydGVyJyZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?$filter=name%20eq%20'Starter'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8kZmlsdGVyPW5hbWUlMjBlcSUyMCdTdGFydGVyJyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc8a666e-3b36-43b4-b35f-bff9911a6b27" + "b9cfe8fd-7325-4ce5-8962-008ed2305ff7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d40e305b-37c4-430d-925d-439629c0bd69" + "6d8336a1-5b95-42d1-8a56-b07b4276389e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11989" ], "x-ms-correlation-request-id": [ - "72a1e691-9a37-43b1-871e-abc3b426ab5e" + "eedf76a2-568f-4c89-a086-9eb17106c13a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040631Z:72a1e691-9a37-43b1-871e-abc3b426ab5e" + "WESTUS2:20190411T020946Z:eedf76a2-568f-4c89-a086-9eb17106c13a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:45 GMT" + ], "Content-Length": [ "647" ], @@ -203,55 +203,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a075e499-d6ad-44f4-aa7e-23bd7e3b99f5" + "290ea1b4-5f2f-42fe-a85a-1e212826f17c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4080e1a5-c511-4c2c-806e-2188672c7efd" + "a7cc5d4a-ccf0-45e9-b542-bdafb50bad66" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11988" ], "x-ms-correlation-request-id": [ - "bc9ba9af-4f81-4a45-97ac-af6017ee9297" + "5c6e7e10-dad2-427f-814c-c130a8dae443" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040631Z:bc9ba9af-4f81-4a45-97ac-af6017ee9297" + "WESTUS2:20190411T020946Z:5c6e7e10-dad2-427f-814c-c130a8dae443" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:46 GMT" + ], "Content-Length": [ "1874" ], @@ -266,55 +266,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7bbb5e3-c0f5-40dd-a8f7-823cd73841de" + "6e7d2f97-4751-423b-abaf-c3f13801eb17" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:32 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6988c4e1-b36d-4b13-9824-aa2750bd3580" + "aeca90ca-f608-451b-b35a-433327474937" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11986" ], "x-ms-correlation-request-id": [ - "a8df9655-5fad-43ec-af73-d41e9fec615c" + "913a195c-186d-4938-8d0e-4043a404af86" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040633Z:a8df9655-5fad-43ec-af73-d41e9fec615c" + "WESTUS2:20190411T020946Z:913a195c-186d-4938-8d0e-4043a404af86" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:46 GMT" + ], "Content-Length": [ "1258" ], @@ -329,55 +329,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef77b660-43e2-41a6-8057-4b5c5c264577" + "ef2590b6-c6a7-4fe5-ae47-179697fada31" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:33 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "52c3c59b-0434-4399-a96d-4b0dab676a33" + "3ae7d96a-f763-4b67-a58d-adf221e1576f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11985" ], "x-ms-correlation-request-id": [ - "96fe01a0-0edd-4193-a51b-54846ab9b735" + "c023dbb7-0a6a-4c77-8407-16b346a4132b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040633Z:96fe01a0-0edd-4193-a51b-54846ab9b735" + "WESTUS2:20190411T020947Z:c023dbb7-0a6a-4c77-8407-16b346a4132b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:47 GMT" + ], "Content-Length": [ "1874" ], @@ -392,58 +392,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/guests?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3Vlc3RzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/guests?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3Vlc3RzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e053dae-86c6-4f49-9d4b-ce1cce0b5af6" + "d9d95681-0264-4e95-854d-d1970e8fbe5e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:31 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ "\"AAAAAAAACNk=\"" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "75bbe7fe-35a7-488e-b8bc-c4469b19d316" + "dff48fe9-9a64-4735-a3ca-29186346e5a7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11987" ], "x-ms-correlation-request-id": [ - "4c09119e-2dd3-4442-bcc5-d21a5e41dec6" + "4fb397cf-52f4-4b12-9289-fa971afaa173" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040632Z:4c09119e-2dd3-4442-bcc5-d21a5e41dec6" + "WESTUS2:20190411T020946Z:4fb397cf-52f4-4b12-9289-fa971afaa173" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:46 GMT" + ], "Content-Length": [ "539" ], @@ -458,118 +458,118 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups/guests?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcy9ndWVzdHM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups/guests?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcy9ndWVzdHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a336344f-bcdd-4208-91a5-f62006cb1664" + "e0cd9484-2a92-4c61-b5aa-c7bb634c123b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:32 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7496666a-a5f3-4eb4-a223-38f35bcc752e" + "cfa7ed71-a446-4e63-a36c-c6fd737cbc54" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "817fd12b-fd6b-4f6e-9c37-1585d78c1eb0" + "f8b7c0f3-80be-43ab-a935-e4301cf4a9eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040633Z:817fd12b-fd6b-4f6e-9c37-1585d78c1eb0" + "WESTUS2:20190411T020946Z:f8b7c0f3-80be-43ab-a935-e4301cf4a9eb" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:09:46 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups/guests?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcy9ndWVzdHM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/groups/guests?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL2dyb3Vwcy9ndWVzdHM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fef648f8-5b48-4260-acc5-b8f808b94682" + "60a1fd4d-2324-4621-a2a6-b041f993ab4b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:32 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ "\"AAAAAAAACNk=\"" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b44fe6b0-dc65-4aa3-96b9-c892d96beab9" + "0f555e0e-b641-4e6f-bfdd-444ddc5b9c36" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-correlation-request-id": [ - "c394d2b6-b5cb-4718-a2e6-87aeb91fca06" + "12aee182-39e8-4e66-98b9-203c696d5cde" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040633Z:c394d2b6-b5cb-4718-a2e6-87aeb91fca06" + "WESTUS2:20190411T020947Z:12aee182-39e8-4e66-98b9-203c696d5cde" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:47 GMT" + ], "Content-Length": [ "565" ], 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 9423dd7da837..957c2bfbd3d2 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ee9c8ab2-86c9-4ea9-9b46-ecccd2ea4aad" + "333b82da-6a43-4013-8dec-b1ee4259610a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:39 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a36e7102-539b-438c-b0e4-c20ac0421533", - "7b7c7679-48df-476f-b979-d9da310efe8b" + "aba2141f-aff0-4db3-840b-0c3ea83ecc46", + "f7ba81dc-0aa7-4171-811d-c391e7416819" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "f20dabb4-90ad-4348-8fbd-08469bdf6226" + "a07616fa-28ec-46df-9c98-d88161a38db0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040640Z:f20dabb4-90ad-4348-8fbd-08469bdf6226" + "WESTUS2:20190411T020952Z:a07616fa-28ec-46df-9c98-d88161a38db0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:52 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8a1b2da-aa8f-4a1d-ac30-fcab77c11a5d" + "870bab17-6ea7-47f3-8121-95e3a23491f1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:39 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "65fcb096-db74-4260-908b-acbdb158dca4" + "2d4cc288-0515-4c11-8d86-630cee69e007" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11989" ], "x-ms-correlation-request-id": [ - "26551443-1ffd-4bc6-9197-686bd40210e9" + "4a7137c2-47ac-4c4c-9410-6a75eb3e70b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040640Z:26551443-1ffd-4bc6-9197-686bd40210e9" + "WESTUS2:20190411T020953Z:4a7137c2-47ac-4c4c-9410-6a75eb3e70b2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:52 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?$filter=name%20eq%20'Starter'&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8kZmlsdGVyPW5hbWUlMjBlcSUyMCdTdGFydGVyJyZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?$filter=name%20eq%20'Starter'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz8kZmlsdGVyPW5hbWUlMjBlcSUyMCdTdGFydGVyJyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "afc3a150-57c1-4afb-8245-ab935df9fb6e" + "3576b871-0711-49f8-833f-f44a02f5843e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e96be776-0aae-4926-88fd-940b3aaf1341" + "76c729be-6cf5-4148-b060-9b14748425b0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11988" ], "x-ms-correlation-request-id": [ - "6dd452d4-9bee-4376-925c-17e9e90b8e82" + "25c86014-0073-47e9-9f37-e8479b24c83c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040640Z:6dd452d4-9bee-4376-925c-17e9e90b8e82" + "WESTUS2:20190411T020953Z:25c86014-0073-47e9-9f37-e8479b24c83c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:52 GMT" + ], "Content-Length": [ "647" ], @@ -203,57 +203,57 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/subscriptions?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/subscriptions?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9aef290d-364d-4386-be4b-53462415b98f" + "4d0ad763-8bde-4731-bd8f-f5a2b82adb27" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc5daaae-24b1-44f8-b456-b22ab83ac6db" + "d6ef67fe-0dd7-4e49-a818-42aa888cf1b5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11987" ], "x-ms-correlation-request-id": [ - "bfb46ead-e406-4887-b7c5-930b0bde768f" + "e866817b-40c7-4e49-acbc-36ae1b7cb1e7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040640Z:bfb46ead-e406-4887-b7c5-930b0bde768f" + "WESTUS2:20190411T020953Z:e866817b-40c7-4e49-acbc-36ae1b7cb1e7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:52 GMT" + ], "Content-Length": [ - "1149" + "1177" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,7 +262,7 @@ "-1" ] }, - "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}", + "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 \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/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 \"allowTracing\": true\r\n }\r\n }\r\n ]\r\n}", "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 301cbed7a60c..12a704b3d3b2 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "da692376-5ec5-49b8-a953-05e5d40a50fd" + "d07b4a10-d944-4e53-9775-577cba1508e4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:14:43 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bef297bb-dcb8-458e-bbd8-07e42142fc37", - "8905bf93-456f-4ca9-9804-9ebc87876408" + "a50fac34-0ef3-48dc-bb8c-eb9f3135cc09", + "8519017d-964f-4995-9f63-782e16044a40" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-correlation-request-id": [ - "fa3d722a-5071-4acb-9991-0246b24170cf" + "0cc84e40-9e0b-432f-b485-16fc611f393b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041443Z:fa3d722a-5071-4acb-9991-0246b24170cf" + "WESTUS2:20190411T021610Z:0cc84e40-9e0b-432f-b485-16fc611f393b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:09 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "826389c4-d04c-4a31-978c-dd60fef577bd" + "d11f5128-48da-4d65-ae26-be6a2bbb5505" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:14:43 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c6d33ed-78bb-41ca-8cbe-51dbf7a0bc1d" + "2fc247e8-c58f-4db9-b3c1-6fd87d391612" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11983" ], "x-ms-correlation-request-id": [ - "de8715a2-4b01-4b7b-8c27-20fc87f2a66d" + "5c94fd15-86de-48c1-ae0a-c132bb115aa8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041444Z:de8715a2-4b01-4b7b-8c27-20fc87f2a66d" + "WESTUS2:20190411T021610Z:5c94fd15-86de-48c1-ae0a-c132bb115aa8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:09 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,26 +136,26 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty795?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5Nzk1P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty5255?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5NTI1NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay4002\",\r\n \"value\": \"propertyValue2999\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay4307\",\r\n \"value\": \"propertyValue8292\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "34c76a4b-ece3-438c-aa8c-9dfe088616a3" + "9883a55c-1f34-46f5-a7c3-36b7773a09a7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,38 +168,38 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:14:44 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZTs=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcig=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8449d095-cebe-4d77-8d4a-8088ad5fd0d5" + "beff646e-553a-4d93-9708-14b894c7ed62" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-correlation-request-id": [ - "a9f6c523-5161-4aeb-b3b1-0201967133d8" + "41d84339-4247-4488-9eb0-29bb0eda43b5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041445Z:a9f6c523-5161-4aeb-b3b1-0201967133d8" + "WESTUS2:20190411T021611Z:41d84339-4247-4488-9eb0-29bb0eda43b5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:10 GMT" + ], "Content-Length": [ - "416" + "418" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,64 +208,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty795\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"newproperty795\",\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay4002\",\r\n \"value\": \"propertyValue2999\",\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/newproperty5255\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"newproperty5255\",\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay4307\",\r\n \"value\": \"propertyValue8292\",\r\n \"tags\": null,\r\n \"secret\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty795?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5Nzk1P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty5255?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5NTI1NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15d64ed0-ebcc-4d17-a245-2d68fc1758df" + "a9126e77-f399-4d3d-991d-26687cf8434d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:14:44 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZTs=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcig=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "07a46765-b06e-4f31-9a1b-2f89bdc45dd0" + "d4ae01f2-3d1a-4d8e-8693-4312c16231c6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11982" ], "x-ms-correlation-request-id": [ - "695e6bbc-c72c-4705-89d3-317efe58f7b6" + "3275169e-8cc2-4d31-828b-076959606577" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041445Z:695e6bbc-c72c-4705-89d3-317efe58f7b6" + "WESTUS2:20190411T021611Z:3275169e-8cc2-4d31-828b-076959606577" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:10 GMT" + ], "Content-Length": [ - "416" + "418" ], "Content-Type": [ "application/json; charset=utf-8" @@ -274,59 +274,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty795\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"newproperty795\",\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay4002\",\r\n \"value\": \"propertyValue2999\",\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/newproperty5255\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"newproperty5255\",\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay4307\",\r\n \"value\": \"propertyValue8292\",\r\n \"tags\": null,\r\n \"secret\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty795?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5Nzk1P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty5255?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5NTI1NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c5403da-b4b3-4e0a-8ee1-9ccedac0a885" + "bc1808c6-f83a-4bfb-a506-cb0896ef60f5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:14:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "27185c7c-9420-4086-9ae2-a2c32cd367fb" + "4515edde-b6c5-4082-a2a6-e2870d0d1bc9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11980" ], "x-ms-correlation-request-id": [ - "f3e7a47d-8fb5-4e5f-900b-7bdfeb5d6de2" + "440ab9ca-5958-4a82-b9c0-f63159bba38a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041446Z:f3e7a47d-8fb5-4e5f-900b-7bdfeb5d6de2" + "WESTUS2:20190411T021612Z:440ab9ca-5958-4a82-b9c0-f63159bba38a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:11 GMT" + ], "Content-Length": [ "84" ], @@ -341,22 +341,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty2623?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5MjYyMz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty7319?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NzMxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"secretPropertydisplay1330\",\r\n \"value\": \"secretPropertyValue6635\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"secretPropertydisplay1184\",\r\n \"value\": \"secretPropertyValue2447\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "51300ddd-6373-4756-b0b8-d4ea7ac7a6f9" + "4034aaf3-0dd2-4638-8018-4b27248f80ae" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -369,36 +369,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:14:44 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZTw=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcik=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "38b4bf58-0e17-46fc-90b9-4c303fc63128" + "74638780-511e-40ec-aec6-1feab791dea7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1191" ], "x-ms-correlation-request-id": [ - "59c5f83f-87cd-4e72-9157-02399619c300" + "47aa5ea6-ffd9-4bca-ad0d-6698189f04a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041445Z:59c5f83f-87cd-4e72-9157-02399619c300" + "WESTUS2:20190411T021611Z:47aa5ea6-ffd9-4bca-ad0d-6698189f04a4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:10 GMT" + ], "Content-Length": [ "455" ], @@ -409,61 +409,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty2623\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"secretproperty2623\",\r\n \"properties\": {\r\n \"displayName\": \"secretPropertydisplay1330\",\r\n \"value\": \"secretPropertyValue6635\",\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/secretproperty7319\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"secretproperty7319\",\r\n \"properties\": {\r\n \"displayName\": \"secretPropertydisplay1184\",\r\n \"value\": \"secretPropertyValue2447\",\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0d9f7c1-d9fb-466b-baf8-5f933c984da7" + "f4061ded-a348-4c4d-beab-b63af4ed46fb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:14:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dfaf768c-b124-4bd6-8319-79c89d0b0c86" + "955a13d5-8394-400b-ad71-6b2137244715" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11981" ], "x-ms-correlation-request-id": [ - "af36bd7b-f831-4565-92d8-a185ef13375b" + "4e9d7dab-89fb-4a59-bc41-c348e8c8b19b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041445Z:af36bd7b-f831-4565-92d8-a185ef13375b" + "WESTUS2:20190411T021611Z:4e9d7dab-89fb-4a59-bc41-c348e8c8b19b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:11 GMT" + ], "Content-Length": [ - "995" + "997" ], "Content-Type": [ "application/json; charset=utf-8" @@ -472,125 +472,125 @@ "-1" ] }, - "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/newproperty795\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"newproperty795\",\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay4002\",\r\n \"value\": \"propertyValue2999\",\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/secretproperty2623\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"secretproperty2623\",\r\n \"properties\": {\r\n \"displayName\": \"secretPropertydisplay1330\",\r\n \"value\": \"secretPropertyValue6635\",\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": true\r\n }\r\n }\r\n ]\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/newproperty5255\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"newproperty5255\",\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay4307\",\r\n \"value\": \"propertyValue8292\",\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/secretproperty7319\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"secretproperty7319\",\r\n \"properties\": {\r\n \"displayName\": \"secretPropertydisplay1184\",\r\n \"value\": \"secretPropertyValue2447\",\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": true\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty795?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5Nzk1P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty5255?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5NTI1NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e0a7ea5-d484-46c3-a9fb-505d51c0b46d" + "31c6d6ad-f322-4033-83fe-13b68029e8c9" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:14:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62852ff8-4294-4490-8704-b5e88da08ed9" + "1ce44bbd-39ec-4bbf-9269-14e2f4ff2069" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "fcdf8545-493f-4f74-a15c-16599850c3e9" + "c1f24e01-22c0-41a3-a74d-c42c3e6d8eb0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041446Z:fcdf8545-493f-4f74-a15c-16599850c3e9" + "WESTUS2:20190411T021612Z:c1f24e01-22c0-41a3-a74d-c42c3e6d8eb0" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:16:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty795?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5Nzk1P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty5255?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5NTI1NT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd6122aa-1461-46e1-b697-17d3fccc012e" + "e9d566b2-3b30-4146-add0-c8fc34dc265a" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:14:46 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c51c1b81-8ea7-4b44-a8ae-eb877e5d2314" + "64e292b3-005c-4187-838b-675ebf1c5b2b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14993" ], "x-ms-correlation-request-id": [ - "51908eeb-a65e-48a4-a22e-81ca1a4b4d03" + "7869b94d-ef3d-4421-b2c0-00f0a200c3d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041447Z:51908eeb-a65e-48a4-a22e-81ca1a4b4d03" + "WESTUS2:20190411T021612Z:7869b94d-ef3d-4421-b2c0-00f0a200c3d9" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:12 GMT" + ], "Expires": [ "-1" ] @@ -599,58 +599,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty2623?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5MjYyMz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty7319?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NzMxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52487980-2585-482e-bca6-6289e5a6184a" + "93cfffa0-0f60-4d41-b25c-153cee7c197f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:14:45 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZTw=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcik=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c867302-ac87-41e2-b14b-7d19d79f915f" + "61c6dbce-ef46-4609-8999-f36b52331263" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11979" ], "x-ms-correlation-request-id": [ - "1052c1f7-f949-4c4d-a81f-5865769a8a44" + "df2d0b8c-593c-4cc0-a84e-abe9bf2b9b90" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041446Z:1052c1f7-f949-4c4d-a81f-5865769a8a44" + "WESTUS2:20190411T021612Z:df2d0b8c-593c-4cc0-a84e-abe9bf2b9b90" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:11 GMT" + ], "Content-Length": [ "0" ], @@ -662,25 +662,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty2623?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5MjYyMz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty7319?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NzMxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1488d659-bbf6-4763-9e09-b54ffe5f7c62" + "089f646e-294d-4b87-94fb-da59e1da14d4" ], "If-Match": [ - "\"AAAAAAAAZTw=\"" + "\"AAAAAAAAcik=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -693,33 +693,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:14:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4733805b-788c-42e6-b09a-470392cc76a4" + "0715a37b-73f2-499f-a63d-96f1f66039bc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1190" ], "x-ms-correlation-request-id": [ - "ebae3487-c53c-4194-93f8-b21e3ebba9bc" + "1fd6d50a-b1d6-45c7-a103-ad1239a4faa5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041446Z:ebae3487-c53c-4194-93f8-b21e3ebba9bc" + "WESTUS2:20190411T021612Z:1fd6d50a-b1d6-45c7-a103-ad1239a4faa5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:11 GMT" + ], "Expires": [ "-1" ] @@ -728,58 +728,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty2623?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5MjYyMz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty7319?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NzMxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9dd14432-3318-4862-bf31-f4eab1f25b9a" + "9b44bbc6-2488-4c39-911c-2749db091022" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:14:45 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZT0=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcio=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "afde935f-b003-4b82-a03b-bb4916053c0c" + "03f94ce6-6606-4428-a8c7-46a09f6a8dde" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11978" ], "x-ms-correlation-request-id": [ - "d072b398-1f10-4bdd-b1a7-1f6d53991a0f" + "1d5144cd-6e12-4ca7-8f28-5e6ba311fd45" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041446Z:d072b398-1f10-4bdd-b1a7-1f6d53991a0f" + "WESTUS2:20190411T021612Z:1d5144cd-6e12-4ca7-8f28-5e6ba311fd45" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:11 GMT" + ], "Content-Length": [ "456" ], @@ -790,59 +790,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty2623\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"secretproperty2623\",\r\n \"properties\": {\r\n \"displayName\": \"secretPropertydisplay1330\",\r\n \"value\": \"secretPropertyValue6635\",\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/secretproperty7319\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"secretproperty7319\",\r\n \"properties\": {\r\n \"displayName\": \"secretPropertydisplay1184\",\r\n \"value\": \"secretPropertyValue2447\",\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty2623?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5MjYyMz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty7319?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NzMxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e15e9be-56e7-45f6-941a-5bc84be089c3" + "177614d3-9f15-46a8-9ce0-be714b073a12" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:14:46 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6117cd51-833c-4962-82c5-4a7078676697" + "516557b5-5d69-4fda-a0a7-a35f1586302d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11977" ], "x-ms-correlation-request-id": [ - "ef41abb4-7360-48b6-a514-1efce5ab287e" + "1b92ac3e-365c-49f2-94ee-5881c8f396e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041447Z:ef41abb4-7360-48b6-a514-1efce5ab287e" + "WESTUS2:20190411T021612Z:1b92ac3e-365c-49f2-94ee-5881c8f396e3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:12 GMT" + ], "Content-Length": [ "84" ], @@ -857,121 +857,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty2623?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5MjYyMz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty7319?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NzMxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d9c96f0-cf43-423b-ab5b-2cef46a2427e" + "4126e01a-7e8c-46c7-8850-fe7b32c8be6a" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:14:46 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "be38bda7-fde8-4850-a01e-ad026ab512e1" + "ce657690-6b15-4406-9c28-03cd96a3ec9c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14994" ], "x-ms-correlation-request-id": [ - "3889e796-be65-4d46-909b-d664220fe64a" + "89567256-319a-48af-ac62-4b37ff0ac8f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041447Z:3889e796-be65-4d46-909b-d664220fe64a" + "WESTUS2:20190411T021612Z:89567256-319a-48af-ac62-4b37ff0ac8f7" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:16:12 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty2623?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5MjYyMz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty7319?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NzMxOT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68362e37-0315-42ab-a4f8-29da7251668f" + "421d7a71-147d-41f0-8e84-e6ce5fe9031c" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:14:46 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd6ba534-3c81-4d6c-8cde-8f114b9d71fe" + "f3598562-02f6-4736-89c5-14d54132d143" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14992" ], "x-ms-correlation-request-id": [ - "b2eef747-a9c6-4c15-8458-55867ace2d5f" + "64794cf3-e7a6-4402-8138-798894229335" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041447Z:b2eef747-a9c6-4c15-8458-55867ace2d5f" + "WESTUS2:20190411T021612Z:64794cf3-e7a6-4402-8138-798894229335" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:12 GMT" + ], "Expires": [ "-1" ] @@ -982,12 +982,12 @@ ], "Names": { "CreateListUpdateDelete": [ - "newproperty795", - "secretproperty2623", - "propertydisplay4002", - "propertyValue2999", - "secretPropertydisplay1330", - "secretPropertyValue6635" + "newproperty5255", + "secretproperty7319", + "propertydisplay4307", + "propertyValue8292", + "secretPropertydisplay1184", + "secretPropertyValue2447" ] }, "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 20575f3af58e..e1d20e583545 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7f36d472-4d77-43cf-b88d-24b91d46314e" + "103b8f17-0a3d-4845-9811-96ac88818f7a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:24 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1d4ddbef-cbe4-4e96-8201-e5eff9c26dc1", - "8549ae3f-a1eb-4260-b545-628c240d2dce" + "74efd664-0812-4030-b282-628a6cba8acc", + "fb9d3592-c396-400d-8e76-a0e54ef7c4ae" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "610d53b0-d4c0-48c9-b1a8-26b230b07808" + "7d1dd20b-b2a7-4af3-8a30-3be04f7587a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040925Z:610d53b0-d4c0-48c9-b1a8-26b230b07808" + "WESTUS2:20190411T021614Z:7d1dd20b-b2a7-4af3-8a30-3be04f7587a1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:13 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "593556cc-d53a-4025-a1e0-e49c133e4d60" + "40908795-2ede-4f0d-bd25-d3a437dd78b9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:24 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f066cdd6-c567-41e7-8c7a-d611b2598ade" + "c7585c79-b94a-4242-960f-776c297543dd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "x-ms-correlation-request-id": [ - "19387af0-26cb-4322-8408-774901997fe9" + "5383a3e3-9a12-461a-94ce-14304f00f138" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040925Z:19387af0-26cb-4322-8408-774901997fe9" + "WESTUS2:20190411T021614Z:5383a3e3-9a12-461a-94ce-14304f00f138" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:13 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/regions?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZWdpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/regions?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZWdpb25zP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60bfea69-8f4c-408f-bed0-e1728c3e73c0" + "b2049ec3-9126-4c6a-a8f8-add4bcd72a43" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:24 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18db5120-57fd-4c94-9239-28f2b63e01af" + "693a6d46-09a2-4d1f-a894-5f90ad6a7a2f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-correlation-request-id": [ - "834e6aec-a9b0-4036-bb00-c057580bd602" + "f3cc2753-e908-4b78-bada-b1b7ec0b8d5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040925Z:834e6aec-a9b0-4036-bb00-c057580bd602" + "WESTUS2:20190411T021614Z:f3cc2753-e908-4b78-bada-b1b7ec0b8d5c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:13 GMT" + ], "Content-Length": [ "99" ], 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 07cadc9ee690..4f5cacdd98e9 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9cad8b1f-4b1e-4785-afc4-ed7b54aca196" + "8d3d7c87-9172-427a-b8c1-b6a1f8b2243f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:15 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "63b71c3f-6e9e-45a5-9214-d3e8d3c45f56", - "32ca4b9a-4034-4efd-85e1-36e34e589e14" + "c700d77b-c658-4e03-89e5-30115b7d332f", + "b6fe5277-3cb0-40df-a017-7e8a4d2eb54e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "192d0480-e11f-47b7-9a75-d3099759884b" + "1a607417-9fbd-48c5-b595-3490b84e90e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040916Z:192d0480-e11f-47b7-9a75-d3099759884b" + "WESTUS2:20190411T021615Z:1a607417-9fbd-48c5-b595-3490b84e90e6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:14 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bae6e9be-29f2-44a5-8612-b5b169dce74d" + "570d7a15-daf6-4b5f-b420-14b6bfff34a1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:16 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "25f39e98-81e5-43de-9a09-0d2e2eb619c4" + "a15855a5-ff2e-49a2-b745-7fa3a5966b85" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "ff0cb16f-443e-43fb-87f8-fda41f4a525e" + "cd2a9bf3-5335-4f4f-9860-0c8d416bd629" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040916Z:ff0cb16f-443e-43fb-87f8-fda41f4a525e" + "WESTUS2:20190411T021615Z:cd2a9bf3-5335-4f4f-9860-0c8d416bd629" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:15 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byApi?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5QXBpPyRmaWx0ZXI9dGltZXN0YW1wJTIwZ2UlMjBkYXRldGltZScyMDE3LTA2LTIyVDAwOjAwOjAwJyZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byApi?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5QXBpPyRmaWx0ZXI9dGltZXN0YW1wJTIwZ2UlMjBkYXRldGltZScyMDE3LTA2LTIyVDAwOjAwOjAwJyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fe424f8-a1a3-41fc-a28a-fad083b9aca4" + "147afda4-7730-4a9e-a2a9-a6bdf2b56f73" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:16 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1af80de5-7966-4402-90b5-10418ee492a2" + "c315dc09-3c70-45d0-a5a7-2ac77fcd838b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "78a2f6d8-6f00-4a02-a60a-57608bd32001" + "a9a47224-5f70-40f4-8a30-54619f1ea5d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040916Z:78a2f6d8-6f00-4a02-a60a-57608bd32001" + "WESTUS2:20190411T021616Z:a9a47224-5f70-40f4-8a30-54619f1ea5d1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:15 GMT" + ], "Content-Length": [ "426" ], @@ -203,55 +203,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byGeo?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5R2VvPyRmaWx0ZXI9dGltZXN0YW1wJTIwZ2UlMjBkYXRldGltZScyMDE3LTA2LTIyVDAwOjAwOjAwJyZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byGeo?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5R2VvPyRmaWx0ZXI9dGltZXN0YW1wJTIwZ2UlMjBkYXRldGltZScyMDE3LTA2LTIyVDAwOjAwOjAwJyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f6dd581-b54d-4850-8940-851843c5b0dd" + "68e70e09-0efa-45bd-baea-ec923947e81e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:16 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2da57341-e8cd-4796-946b-da7563a0d49f" + "cd344f97-dbd4-4ea0-b20e-9600a4b34531" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-correlation-request-id": [ - "69788722-0b9a-481c-88ee-40662bc5b987" + "2862e625-3bbc-435f-b204-26c245684d0e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040916Z:69788722-0b9a-481c-88ee-40662bc5b987" + "WESTUS2:20190411T021616Z:2862e625-3bbc-435f-b204-26c245684d0e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:15 GMT" + ], "Content-Length": [ "2627" ], @@ -266,55 +266,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byOperation?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5T3BlcmF0aW9uPyRmaWx0ZXI9dGltZXN0YW1wJTIwZ2UlMjBkYXRldGltZScyMDE3LTA2LTIyVDAwOjAwOjAwJyZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byOperation?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5T3BlcmF0aW9uPyRmaWx0ZXI9dGltZXN0YW1wJTIwZ2UlMjBkYXRldGltZScyMDE3LTA2LTIyVDAwOjAwOjAwJyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8193a2eb-746f-4706-a1ef-b4fa4694c408" + "20586a07-1ced-4680-aded-6d05e0c29075" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:16 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f3d6e7fd-f3c8-4c7f-b64b-617b14a6837e" + "d4534b73-1963-43e3-8da3-dea58b8ab5f8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-correlation-request-id": [ - "abb9ee86-dd17-4a12-954e-40ef26d5b028" + "b1f7cc3e-e02f-419c-ac0a-1bc94c45fc14" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040917Z:abb9ee86-dd17-4a12-954e-40ef26d5b028" + "WESTUS2:20190411T021616Z:b1f7cc3e-e02f-419c-ac0a-1bc94c45fc14" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:16 GMT" + ], "Content-Length": [ "2542" ], @@ -325,59 +325,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Create resource\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/create-resource\",\r\n \"callCountSuccess\": 2,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 2,\r\n \"bandwidth\": 17928,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 1444.0503,\r\n \"apiTimeMin\": 1218.5258000000001,\r\n \"apiTimeMax\": 1669.5748,\r\n \"serviceTimeAvg\": 180.69225,\r\n \"serviceTimeMin\": 179.00400000000002,\r\n \"serviceTimeMax\": 182.3805\r\n },\r\n {\r\n \"name\": \"Modify Resource\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/modify-resource\",\r\n \"callCountSuccess\": 1,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 1,\r\n \"bandwidth\": 623,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 44.5135,\r\n \"apiTimeMin\": 44.5135,\r\n \"apiTimeMax\": 44.5135,\r\n \"serviceTimeAvg\": 44.0843,\r\n \"serviceTimeMin\": 44.0843,\r\n \"serviceTimeMax\": 44.0843\r\n },\r\n {\r\n \"name\": \"Remove resource\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/remove-resource\",\r\n \"callCountSuccess\": 0,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 0,\r\n \"bandwidth\": 0,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 0.0,\r\n \"apiTimeMin\": 0.0,\r\n \"apiTimeMax\": 0.0,\r\n \"serviceTimeAvg\": 0.0,\r\n \"serviceTimeMin\": 0.0,\r\n \"serviceTimeMax\": 0.0\r\n },\r\n {\r\n \"name\": \"Retrieve header only\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-header-only\",\r\n \"callCountSuccess\": 0,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 0,\r\n \"bandwidth\": 0,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 0.0,\r\n \"apiTimeMin\": 0.0,\r\n \"apiTimeMax\": 0.0,\r\n \"serviceTimeAvg\": 0.0,\r\n \"serviceTimeMin\": 0.0,\r\n \"serviceTimeMax\": 0.0\r\n },\r\n {\r\n \"name\": \"Retrieve resource\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"callCountSuccess\": 293,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 293,\r\n \"bandwidth\": 84543,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 106.4471204778157,\r\n \"apiTimeMin\": 44.263600000000004,\r\n \"apiTimeMax\": 840.3682,\r\n \"serviceTimeAvg\": 72.188404095563143,\r\n \"serviceTimeMin\": 43.6993,\r\n \"serviceTimeMax\": 803.14410000000009\r\n },\r\n {\r\n \"name\": \"Retrieve resource (cached)\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"callCountSuccess\": 1,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 1,\r\n \"bandwidth\": 673,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 1,\r\n \"apiTimeAvg\": 664.3346,\r\n \"apiTimeMin\": 664.3346,\r\n \"apiTimeMax\": 664.3346,\r\n \"serviceTimeAvg\": 44.769000000000005,\r\n \"serviceTimeMin\": 44.769000000000005,\r\n \"serviceTimeMax\": 44.769000000000005\r\n }\r\n ],\r\n \"count\": 6,\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Retrieve resource\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"callCountSuccess\": 293,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 293,\r\n \"bandwidth\": 84543,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 106.4471204778157,\r\n \"apiTimeMin\": 44.263600000000004,\r\n \"apiTimeMax\": 840.3682,\r\n \"serviceTimeAvg\": 72.188404095563143,\r\n \"serviceTimeMin\": 43.6993,\r\n \"serviceTimeMax\": 803.14410000000009\r\n },\r\n {\r\n \"name\": \"Retrieve resource (cached)\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"callCountSuccess\": 1,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 1,\r\n \"bandwidth\": 673,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 1,\r\n \"apiTimeAvg\": 664.3346,\r\n \"apiTimeMin\": 664.3346,\r\n \"apiTimeMax\": 664.3346,\r\n \"serviceTimeAvg\": 44.769000000000005,\r\n \"serviceTimeMin\": 44.769000000000005,\r\n \"serviceTimeMax\": 44.769000000000005\r\n },\r\n {\r\n \"name\": \"Modify Resource\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/modify-resource\",\r\n \"callCountSuccess\": 1,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 1,\r\n \"bandwidth\": 623,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 44.5135,\r\n \"apiTimeMin\": 44.5135,\r\n \"apiTimeMax\": 44.5135,\r\n \"serviceTimeAvg\": 44.0843,\r\n \"serviceTimeMin\": 44.0843,\r\n \"serviceTimeMax\": 44.0843\r\n },\r\n {\r\n \"name\": \"Create resource\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/create-resource\",\r\n \"callCountSuccess\": 2,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 2,\r\n \"bandwidth\": 17928,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 1444.0503,\r\n \"apiTimeMin\": 1218.5258000000001,\r\n \"apiTimeMax\": 1669.5748,\r\n \"serviceTimeAvg\": 180.69225,\r\n \"serviceTimeMin\": 179.00400000000002,\r\n \"serviceTimeMax\": 182.3805\r\n },\r\n {\r\n \"name\": \"Remove resource\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/remove-resource\",\r\n \"callCountSuccess\": 0,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 0,\r\n \"bandwidth\": 0,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 0.0,\r\n \"apiTimeMin\": 0.0,\r\n \"apiTimeMax\": 0.0,\r\n \"serviceTimeAvg\": 0.0,\r\n \"serviceTimeMin\": 0.0,\r\n \"serviceTimeMax\": 0.0\r\n },\r\n {\r\n \"name\": \"Retrieve header only\",\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-header-only\",\r\n \"callCountSuccess\": 0,\r\n \"callCountBlocked\": 0,\r\n \"callCountFailed\": 0,\r\n \"callCountOther\": 0,\r\n \"callCountTotal\": 0,\r\n \"bandwidth\": 0,\r\n \"cacheHitCount\": 0,\r\n \"cacheMissCount\": 0,\r\n \"apiTimeAvg\": 0.0,\r\n \"apiTimeMin\": 0.0,\r\n \"apiTimeMax\": 0.0,\r\n \"serviceTimeAvg\": 0.0,\r\n \"serviceTimeMin\": 0.0,\r\n \"serviceTimeMax\": 0.0\r\n }\r\n ],\r\n \"count\": 6,\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byProduct?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5UHJvZHVjdD8kZmlsdGVyPXRpbWVzdGFtcCUyMGdlJTIwZGF0ZXRpbWUnMjAxNy0wNi0yMlQwMDowMDowMCcmYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byProduct?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5UHJvZHVjdD8kZmlsdGVyPXRpbWVzdGFtcCUyMGdlJTIwZGF0ZXRpbWUnMjAxNy0wNi0yMlQwMDowMDowMCcmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9be21ef-49e0-4c51-9a50-d4ee7a15f1c0" + "e905db13-89f9-4050-8853-38366996e3e6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:17 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62a3fcc6-90e3-4791-9fe7-1e426eeee792" + "dd9364cb-0c85-4d23-b693-cd43513d14cb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-correlation-request-id": [ - "c93811e9-a593-4599-9b78-c3fae8dd607c" + "ad8517b5-4f60-4c1c-8175-b065cb08c3d0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040917Z:c93811e9-a593-4599-9b78-c3fae8dd607c" + "WESTUS2:20190411T021617Z:ad8517b5-4f60-4c1c-8175-b065cb08c3d0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:16 GMT" + ], "Content-Length": [ "803" ], @@ -392,55 +392,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/bySubscription?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5U3Vic2NyaXB0aW9uPyRmaWx0ZXI9dGltZXN0YW1wJTIwZ2UlMjBkYXRldGltZScyMDE3LTA2LTIyVDAwOjAwOjAwJyZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/bySubscription?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5U3Vic2NyaXB0aW9uPyRmaWx0ZXI9dGltZXN0YW1wJTIwZ2UlMjBkYXRldGltZScyMDE3LTA2LTIyVDAwOjAwOjAwJyZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92a4b05b-3fed-4534-a682-7dfc62605ac6" + "b0a7e9f6-404c-4543-8dc2-cc895d4c63d0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:17 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fa76f6b7-4179-4b1c-96c4-cf83cd7e2fce" + "c7db82a4-8de5-4fb7-be36-8fcdf13e4a5a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-correlation-request-id": [ - "b3c59348-f04e-4a2d-9db0-303b3c0577dc" + "bf039355-3823-4ec2-bd8c-d6bbd7b2e349" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040917Z:b3c59348-f04e-4a2d-9db0-303b3c0577dc" + "WESTUS2:20190411T021617Z:bf039355-3823-4ec2-bd8c-d6bbd7b2e349" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:16 GMT" + ], "Content-Length": [ "945" ], @@ -455,55 +455,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byTime?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&interval=PT30M&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5VGltZT8kZmlsdGVyPXRpbWVzdGFtcCUyMGdlJTIwZGF0ZXRpbWUnMjAxNy0wNi0yMlQwMDowMDowMCcmaW50ZXJ2YWw9UFQzME0mYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byTime?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&interval=PT30M&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5VGltZT8kZmlsdGVyPXRpbWVzdGFtcCUyMGdlJTIwZGF0ZXRpbWUnMjAxNy0wNi0yMlQwMDowMDowMCcmaW50ZXJ2YWw9UFQzME0mYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0767cb10-451b-47eb-b70f-af27d3e907b0" + "3dc94b63-d167-406b-8dcf-846084e6cd39" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:17 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c354a4a7-1846-447b-9c0c-9f68c8c30672" + "8d75b0d6-2ed0-4291-97a3-e1b957509863" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11993" ], "x-ms-correlation-request-id": [ - "77fcf962-dfc8-4430-b1d5-62c295df3fce" + "7b576763-8013-4809-a375-5a131cc13bdb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040918Z:77fcf962-dfc8-4430-b1d5-62c295df3fce" + "WESTUS2:20190411T021617Z:7b576763-8013-4809-a375-5a131cc13bdb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:17 GMT" + ], "Content-Length": [ "12061" ], @@ -518,55 +518,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byUser?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5VXNlcj8kZmlsdGVyPXRpbWVzdGFtcCUyMGdlJTIwZGF0ZXRpbWUnMjAxNy0wNi0yMlQwMDowMDowMCcmYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byUser?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5VXNlcj8kZmlsdGVyPXRpbWVzdGFtcCUyMGdlJTIwZGF0ZXRpbWUnMjAxNy0wNi0yMlQwMDowMDowMCcmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e780c0-0cab-4687-853a-1a9ee218e22a" + "fe8e9eeb-0bfd-4ee6-92a6-82d6275853a6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:17 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ce26aae9-dccb-4103-958b-213ecc58bed4" + "b275b299-a392-4346-a553-2925476698b4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11992" ], "x-ms-correlation-request-id": [ - "1355346c-d67a-4d79-9185-e1725baa5dc9" + "2bd70090-09f4-440d-bfeb-2549645ac499" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040918Z:1355346c-d67a-4d79-9185-e1725baa5dc9" + "WESTUS2:20190411T021618Z:2bd70090-09f4-440d-bfeb-2549645ac499" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:17 GMT" + ], "Content-Length": [ "755" ], @@ -581,57 +581,57 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byRequest?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5UmVxdWVzdD8kZmlsdGVyPXRpbWVzdGFtcCUyMGdlJTIwZGF0ZXRpbWUnMjAxNy0wNi0yMlQwMDowMDowMCcmYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/reports/byRequest?$filter=timestamp%20ge%20datetime'2017-06-22T00:00:00'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9yZXBvcnRzL2J5UmVxdWVzdD8kZmlsdGVyPXRpbWVzdGFtcCUyMGdlJTIwZGF0ZXRpbWUnMjAxNy0wNi0yMlQwMDowMDowMCcmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bd3c8d8-9d56-48c4-a676-ca9112b81931" + "87f9cd88-82dc-4611-b17d-7b1bc5451f5f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11991" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43d8ca25-b845-4cef-851b-e711c7cdd830" + "491b7fd6-addd-4d22-9961-15ca50b244df" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "52f88ae1-5a9b-4275-afd2-6ee9db6f941a" + "e1624bcd-517c-4c1b-b158-5973fb641529" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040923Z:52f88ae1-5a9b-4275-afd2-6ee9db6f941a" + "WESTUS2:20190411T021622Z:e1624bcd-517c-4c1b-b158-5973fb641529" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:16:22 GMT" + ], "Content-Length": [ - "234170" + "238148" ], "Content-Type": [ "application/json; charset=utf-8" @@ -640,7 +640,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/interna-status-0123456789abcdef\",\r\n \"ipAddress\": \"131.107.174.154\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2017-07-13T23:23:53.5816069Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 876.451,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"7f4f12c9-82aa-4852-93dc-e6e819987bfd\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/favicon.ico\",\r\n \"ipAddress\": \"131.107.174.154\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2017-07-13T23:23:54.6285103Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.66980000000000006,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"a32bf026-fc60-4c0e-b543-cf76e9d9a665\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:19:42.3994478Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 398.7982,\r\n \"serviceTime\": 115.97420000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ff2971aa-4c77-4879-8d1a-af1032546153\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:19:47.8415987Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.521,\r\n \"serviceTime\": 44.6094,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a287f019-e668-4746-957a-e51cd966eeae\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:19:52.9030826Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8112,\r\n \"serviceTime\": 44.518100000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"717909b1-b991-4644-bfcf-4a85ffa74670\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:19:57.9425225Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.7115,\r\n \"serviceTime\": 45.4498,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7ff42c10-8e89-41b7-a540-2fa9f46d39cb\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:20:03.0128091Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.252700000000004,\r\n \"serviceTime\": 44.911300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e9d2eb4f-e6a3-4cf6-851f-a38dc7747262\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:20:08.0785122Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.985800000000005,\r\n \"serviceTime\": 44.7153,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"35b4f436-3e7c-446d-b6b8-28b65acb3edf\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:20:13.143713Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.6278,\r\n \"serviceTime\": 44.408300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2ce0e20e-8908-41f9-94a3-c3e57fac80b3\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:20:18.2068733Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.1638,\r\n \"serviceTime\": 44.8616,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5c43b6d7-724d-43a5-805b-6e99ad1374bf\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:20:23.2696227Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.495000000000005,\r\n \"serviceTime\": 44.280300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"798002d9-58b2-4b80-b98a-7da72579d451\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:20:28.3297958Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8877,\r\n \"serviceTime\": 44.5852,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b3f7f8e5-9db8-4bbe-8ff4-d431e78f93ad\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:50:32.4633311Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 405.77360000000004,\r\n \"serviceTime\": 109.71690000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"82a75278-2c11-4680-bb55-d03fec0d5394\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:50:37.9160813Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5173,\r\n \"serviceTime\": 44.4439,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5d78d33a-6a50-45fb-9c90-b8c1891100f6\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:50:43.0077901Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.6762,\r\n \"serviceTime\": 44.4478,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"77bd3850-03a8-4f49-b6d8-f0433a93bf55\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:50:48.1156987Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9489,\r\n \"serviceTime\": 44.6541,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9355f60e-3cf7-4846-a977-fe689d68c6a5\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:50:53.2042181Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.4067,\r\n \"serviceTime\": 44.131800000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"80907ca9-e6a8-410e-80eb-cd5f4e62560c\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:50:58.3066918Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.846000000000004,\r\n \"serviceTime\": 44.5929,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"28e09ded-0705-4834-8501-8ecbc9f87b5c\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:51:03.3974731Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.446400000000004,\r\n \"serviceTime\": 44.1625,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ecc3c86d-7d01-4901-87be-8338568cf51a\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:51:08.4886922Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0544,\r\n \"serviceTime\": 44.694700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6357137b-14c7-4af8-85c8-341addb269e3\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:51:13.568822Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7316,\r\n \"serviceTime\": 44.4906,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"057acf31-0a55-443e-b4bf-fcad483cb38d\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:51:18.6721766Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.322300000000006,\r\n \"serviceTime\": 45.0013,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"d8b574e3-a9b8-4c6f-bfc4-9b736ae0e5c3\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:22:38.8425726Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 513.3941,\r\n \"serviceTime\": 144.9402,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c9f30e98-5766-453b-9547-e3950db270e2\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:22:44.6249951Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.8006,\r\n \"serviceTime\": 48.8892,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4da586db-02fd-4f2b-b8cb-33b7b0ed2952\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:22:49.7161898Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.6471,\r\n \"serviceTime\": 49.384,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b93a6866-aa95-414e-8087-575bc8be84e4\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:22:54.7973344Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.646100000000004,\r\n \"serviceTime\": 48.4401,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f67299d8-8c30-4709-902d-19c23be5be88\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:22:59.8719881Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.426,\r\n \"serviceTime\": 49.208200000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1d3d81e0-f4b4-4fe6-b4e9-92ba4825bd80\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:23:04.9658545Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.6435,\r\n \"serviceTime\": 49.409600000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b5d5da7b-e060-459c-b41c-ffa1c34a0193\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:23:10.0450413Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.281200000000005,\r\n \"serviceTime\": 48.015,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"44e4696a-87c0-40f1-ac62-15d02de9a0f7\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:23:15.1534866Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.7181,\r\n \"serviceTime\": 48.464200000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"60eb1ee1-05b7-4486-bad4-796b6f6abe40\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:23:20.2208737Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.4065,\r\n \"serviceTime\": 49.1785,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8701de57-f906-44e5-b10f-d073113d02d0\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:23:25.325534Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.975,\r\n \"serviceTime\": 48.7391,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7d3ec426-e276-44d7-ae65-9215a8b23ca5\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:24:41.131193Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 400.59900000000005,\r\n \"serviceTime\": 115.8096,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"23ce3aab-4425-4998-94b5-7c41647f8a61\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:24:46.5938393Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.7385,\r\n \"serviceTime\": 44.725300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"64028abf-e352-4d04-a34f-db4d517ac401\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:24:51.654492Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2551,\r\n \"serviceTime\": 44.871300000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"94a067cb-01d2-4e94-bad5-7fb404b1c726\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:24:56.7197122Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2074,\r\n \"serviceTime\": 44.926300000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"296722d6-b4aa-445c-bad5-77a8a28eba4a\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:25:01.7845145Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8577,\r\n \"serviceTime\": 44.578500000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cb4d7375-651b-411b-b73a-3578ae62abe0\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:25:06.8677785Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.394200000000005,\r\n \"serviceTime\": 44.1156,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b5ad33a7-0660-4017-a3f6-4122b74b5cad\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:25:11.9252192Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7793,\r\n \"serviceTime\": 44.4543,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"013121c4-f22a-45ff-9a3c-be6011e92af4\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:25:16.9899732Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0878,\r\n \"serviceTime\": 44.7813,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8ab42698-ec95-4db2-99b4-5b950688c892\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:25:22.0759221Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8046,\r\n \"serviceTime\": 44.511,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b65f7778-ce58-4985-94ae-210b0aee92a3\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:25:27.1462223Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.611900000000006,\r\n \"serviceTime\": 44.3339,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"45d00fe4-b063-41bf-bcfe-f353d8399c24\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:53:49.7081666Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 416.1664,\r\n \"serviceTime\": 121.6342,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"929536c5-5aa3-4a7e-96d4-fc0cb3443352\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:53:55.1909294Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.3862,\r\n \"serviceTime\": 47.2434,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fa97ce55-5982-40a6-ab2f-6fc4e61d44bb\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:00.2672934Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.5686,\r\n \"serviceTime\": 44.1784,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"bd08b2e4-1b85-419a-98b8-027cdfdc319a\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:05.3266172Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.910700000000006,\r\n \"serviceTime\": 44.5521,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"bda398ec-87b1-4306-b969-e553d08d99df\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:10.3803959Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.923,\r\n \"serviceTime\": 44.565200000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0fb966cf-3d66-4fac-8142-83b7274dd28d\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:15.4608119Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.725,\r\n \"serviceTime\": 44.446000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5f2319fd-07c6-4ae5-9d26-a8f3b96d40c5\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:20.5463278Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.858000000000004,\r\n \"serviceTime\": 44.632000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ef096b07-38a1-47b6-af6c-6aa57e3ce8e6\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:25.6085877Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8243,\r\n \"serviceTime\": 44.5432,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"46d70e56-8351-4898-ae6f-1ad7bf648436\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:30.6699314Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8301,\r\n \"serviceTime\": 44.503,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fe22c4d7-4875-4b97-8063-88550a45f61e\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:35.7241991Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.109700000000004,\r\n \"serviceTime\": 44.824600000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"23b32b5e-021d-4c7f-aab0-8285c5289515\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:24:50.8075853Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 399.5978,\r\n \"serviceTime\": 125.7459,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4787e8ca-1f7b-4294-b4b9-59e9d975fcca\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:24:56.2497248Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.6199,\r\n \"serviceTime\": 44.5154,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c75df511-b8be-4c85-b409-0f0a031a8348\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:01.330314Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.974000000000004,\r\n \"serviceTime\": 44.656,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cdfb3a33-b0ca-46cb-acd4-e5ee2cfe98ff\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:06.4105139Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.1578,\r\n \"serviceTime\": 47.9313,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fb5ea6eb-0939-47d2-a1ca-88a06a8356b5\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:11.4755021Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2695,\r\n \"serviceTime\": 44.8877,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"750ce1ca-c1b1-4ea0-8083-66aae21516ab\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:16.5400396Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8846,\r\n \"serviceTime\": 44.5399,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2e569ed4-60a7-47e5-aa77-425f631990a4\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:21.6078033Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2592,\r\n \"serviceTime\": 45.029700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a0013396-4287-4704-972c-6f66ec1612d4\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:26.669011Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.6986,\r\n \"serviceTime\": 44.3716,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2f63266a-359a-44cb-8ce3-383dc881b56c\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:31.7335825Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8988,\r\n \"serviceTime\": 44.5996,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"d1a4afff-0fd4-4654-ad5e-652175808465\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:36.7935016Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.707,\r\n \"serviceTime\": 44.4471,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6a650828-ce9c-4a86-8c10-e3a4e5dbe96a\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:16.8872889Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 418.9957,\r\n \"serviceTime\": 128.09560000000002,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4d5caba4-de33-4a0f-9e9e-ae31eb90a904\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:22.391335Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.670700000000004,\r\n \"serviceTime\": 44.7684,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c772de9e-48f3-4791-adde-acdd171c5a62\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:27.4810659Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.691,\r\n \"serviceTime\": 44.374900000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c9793550-2675-4e70-94bd-0c227b02b5d4\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:32.577867Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.5401,\r\n \"serviceTime\": 44.2256,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c688c486-8931-4ccc-ba58-2bbfa08dd35e\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:37.6781146Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.3906,\r\n \"serviceTime\": 44.0679,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"11fa947f-a147-4111-9678-a7818115c0b6\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:42.7693347Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9373,\r\n \"serviceTime\": 44.5214,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5fafa288-3e18-4779-a6e3-dfe79deffa91\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:47.8397781Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.955600000000004,\r\n \"serviceTime\": 44.6109,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"220867e8-fa11-4f42-9367-1af90223b695\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:52.933633Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8119,\r\n \"serviceTime\": 44.5396,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cb3d3549-94b6-42c8-a329-423db0af93b3\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:58.0248285Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0944,\r\n \"serviceTime\": 44.7564,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"24b9591a-fc22-400c-b02b-49a9cbc324fe\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:41:03.1215636Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.79,\r\n \"serviceTime\": 44.504400000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"61cb3ec8-10bf-41c4-8d30-8be5687b3d81\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:29:29.4255542Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 369.48060000000004,\r\n \"serviceTime\": 105.357,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"3b6723dc-0cf8-4db8-89fa-31a4d4ea5f3b\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:29:34.8370135Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.7019,\r\n \"serviceTime\": 44.3739,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4ff7073e-527d-4e1a-8aab-0bf90e9e8a3c\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:29:39.8858181Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8166,\r\n \"serviceTime\": 44.513000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"35b9a17a-e4ac-4708-87a6-8b21b648a076\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:29:44.9392173Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 55.302800000000005,\r\n \"serviceTime\": 55.0266,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8aefa350-80de-4336-8e76-807637826583\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:29:49.9931275Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.5951,\r\n \"serviceTime\": 44.3688,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a08add3f-9822-4cd5-8167-fffdf722d7e9\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:29:55.0646679Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7676,\r\n \"serviceTime\": 44.4791,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8bd5c765-55c2-440c-b30e-297db797ff21\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:30:00.1063008Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9909,\r\n \"serviceTime\": 44.701100000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"de99f5b1-aa1c-4090-9369-12146938d3e7\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:30:05.1549098Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8536,\r\n \"serviceTime\": 44.527,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2f3309bf-0b40-48f2-a3a4-86bb87be47e0\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:30:10.198323Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.736000000000004,\r\n \"serviceTime\": 44.4515,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"3cc992b9-12ba-47d6-80e9-2bb00a98ccb5\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:30:15.2412968Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0081,\r\n \"serviceTime\": 44.684400000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"598b36e8-d370-4b26-8e14-5c3bbc2f7041\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:02:59.9748356Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 434.52680000000004,\r\n \"serviceTime\": 126.22470000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"438a78d2-1961-441a-b5bb-e113d268ce6b\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:05.4895983Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.2064,\r\n \"serviceTime\": 45.1893,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f4da2eec-3712-4fd1-9265-bf60c93d907c\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:10.5650717Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.824200000000005,\r\n \"serviceTime\": 44.5176,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"50124bbf-6854-4879-93cc-05521a2b5b40\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:15.6526403Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.851600000000005,\r\n \"serviceTime\": 44.557500000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"35441e10-70dc-4144-b3c9-5c2b738519ae\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:20.7338218Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.482400000000005,\r\n \"serviceTime\": 44.2541,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"20940695-bc73-4519-b104-76d071e067df\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:25.8205635Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7747,\r\n \"serviceTime\": 44.5255,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"dc296fb9-7326-4771-a8b0-9c5dced4d9f4\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:30.9571099Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 66.9139,\r\n \"serviceTime\": 66.295600000000007,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"28b359a8-fb20-4d52-9ee1-f06eff8a255d\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:36.1176147Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.9197,\r\n \"serviceTime\": 46.6809,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e465f965-7c4a-42aa-b6d8-a11ac7173292\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:41.1932468Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 328.78040000000004,\r\n \"serviceTime\": 328.4185,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"72d30834-71e5-4f7c-8d7b-6223eae19905\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:46.5721795Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 591.60070000000007,\r\n \"serviceTime\": 591.2077,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"664de22f-dcda-4d1d-93e1-24bc5ab8846d\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:36:38.3981596Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 438.7459,\r\n \"serviceTime\": 126.44720000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"905454b8-c5f4-4c8d-80c2-d99a5942fac7\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:36:43.8985519Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.9114,\r\n \"serviceTime\": 44.7442,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"04959572-5a4d-40a8-a900-5aa72dfbfdef\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:36:48.9593526Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9239,\r\n \"serviceTime\": 44.5934,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"89f65eb3-127b-4752-9761-074800388a17\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:36:54.0064911Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5,\r\n \"serviceTime\": 45.2569,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6788f084-6aaf-42b2-a58b-ff0fee7164d2\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:36:59.0714569Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.249100000000006,\r\n \"serviceTime\": 44.9373,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"d4dd89be-200f-43db-a52d-30c872b0f608\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:37:04.1365812Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.352900000000005,\r\n \"serviceTime\": 45.075700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"229c3890-54bf-4780-abe2-c8b7a6453828\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:37:09.174611Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9384,\r\n \"serviceTime\": 44.644800000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"71d44aea-441f-4770-9b84-e88dd23ca27a\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:37:14.2391001Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.007000000000005,\r\n \"serviceTime\": 44.771300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ac466766-a23f-4e7e-92da-14f34e5bc067\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:37:19.3090771Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.9878,\r\n \"serviceTime\": 45.7633,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"56a3d7f0-748d-4193-828f-445e70ba4114\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:37:24.3579098Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.952000000000005,\r\n \"serviceTime\": 44.7218,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7ab3e7a1-2b11-4afd-b73b-b0493c8c4208\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:20:39.6697246Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 364.9227,\r\n \"serviceTime\": 110.97970000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a4699a08-a2d0-4c26-a539-a8ba6a79d04e\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:20:45.0764887Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.7592,\r\n \"serviceTime\": 44.7278,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"246b0dc1-b738-4547-9eed-c8a14b97505e\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:20:50.1520958Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8359,\r\n \"serviceTime\": 44.5371,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"12720ec3-421a-4ea0-84dd-7f9bd28d2c3e\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:20:55.1856855Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9876,\r\n \"serviceTime\": 44.6678,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"033e48da-2d75-4726-90d3-6c52cf458171\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:21:00.2450141Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.338,\r\n \"serviceTime\": 44.0569,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7c103c97-b2fd-4888-ab16-b4b3c01f2a1c\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:21:05.2998319Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.2543,\r\n \"serviceTime\": 51.0415,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"49113c57-e06a-45e0-a1e2-95c1588834aa\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:21:10.3652566Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7304,\r\n \"serviceTime\": 44.505700000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4ad3c01d-f6a4-4c80-ba14-1ba899b44d08\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:21:15.4296636Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.445800000000006,\r\n \"serviceTime\": 44.1543,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b86fe156-aa1d-48b4-89c4-9a9b9e4b147c\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:21:20.495029Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 52.7391,\r\n \"serviceTime\": 46.5658,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6a3ab8ba-eae9-486b-a4a8-8b055726ed71\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:21:25.5901698Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.179700000000004,\r\n \"serviceTime\": 44.923,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b6a8e84d-941b-4cc9-b25c-762b5b0a730f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:22:30.3030768Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 507.6177,\r\n \"serviceTime\": 123.3345,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4d953c79-3221-45a1-a76a-200469808ea5\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:22:35.8705079Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5146,\r\n \"serviceTime\": 44.4272,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b3ce24d1-c1da-4ecf-8742-482e38ca340b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:22:40.9363149Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7078,\r\n \"serviceTime\": 44.3415,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9db80732-5d57-41f9-a6ef-563081f3aa12\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:22:46.0005709Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.878,\r\n \"serviceTime\": 44.535000000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ee05f4a1-d60b-49fe-8c49-86f10cebb2f6\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:22:51.1428034Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.4972,\r\n \"serviceTime\": 45.1886,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a9f636eb-0fa9-4665-a382-2e61b0138bb0\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:22:56.2047342Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9681,\r\n \"serviceTime\": 44.6495,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"597e8b45-e3b2-428a-a2ea-3c86dbfb1608\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:23:01.2695476Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9635,\r\n \"serviceTime\": 44.644000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"d8503d6e-0c7d-48a9-ae33-d6a05ec43528\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:23:06.3241822Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8097,\r\n \"serviceTime\": 44.486200000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4178f06d-ba88-4c7b-9976-865d58138157\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:23:11.433928Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.2795,\r\n \"serviceTime\": 44.056000000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"35ac7265-602c-4e0b-8f2a-f15e82d98739\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:23:16.4855156Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.4026,\r\n \"serviceTime\": 44.177,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2b8212ad-74d4-4908-8460-3cd1be3024a7\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:07.4613486Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 395.8116,\r\n \"serviceTime\": 138.3347,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"55e3ed79-b861-4c0c-b9cf-2731e38ebe49\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:12.9114949Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5981,\r\n \"serviceTime\": 44.6544,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cb905ccf-b832-4341-ae8c-e73760282cfc\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:17.9854083Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7808,\r\n \"serviceTime\": 44.5336,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a63e0a33-df0d-4cbb-8cba-b86fa1f48d11\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:23.0458301Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2563,\r\n \"serviceTime\": 45.0255,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5d3e95cd-1791-4e36-87f5-c0ff7093ca60\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:28.1036528Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.112700000000004,\r\n \"serviceTime\": 44.7856,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5c5316cb-a3be-46dd-97b3-52e77f029402\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:33.1857056Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8211,\r\n \"serviceTime\": 44.462700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0e0580df-1f3b-4e22-9f36-78a8ea641544\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:38.2480569Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.973400000000005,\r\n \"serviceTime\": 44.6374,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6d14612d-241f-44af-b95a-e5131ce360c1\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:43.2978427Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0844,\r\n \"serviceTime\": 44.7184,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f282f3d1-0f7a-48f2-a662-a19019eeda32\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:48.3426107Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.154,\r\n \"serviceTime\": 44.7695,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"09e66ac1-a0ed-4783-980b-64ec0f4eeb9f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:53.3968882Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.251200000000004,\r\n \"serviceTime\": 44.902,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"379b3d5a-225f-401d-9937-45268f174ed1\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:12.8515217Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 398.1062,\r\n \"serviceTime\": 121.47330000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"45aa1ba8-65ee-4cf3-9094-f8e4731317ae\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:18.2987239Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 304.712,\r\n \"serviceTime\": 303.6884,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"74b03343-b1e5-4a6b-8679-a055013122cb\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:23.6335632Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.173100000000005,\r\n \"serviceTime\": 44.8816,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1a12e39f-4e6c-4c69-b9fe-e1d8bb81b3e2\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:28.7087207Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9981,\r\n \"serviceTime\": 44.682500000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c6bb88f6-ad1a-424f-9714-37918141764f\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:33.7837016Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 463.56120000000004,\r\n \"serviceTime\": 463.23510000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0870e32b-0000-48d1-b472-8d343479e5d0\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:39.2839143Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0754,\r\n \"serviceTime\": 44.7648,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c1105a07-e831-43f1-b722-47dcf61da910\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:44.3328951Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0873,\r\n \"serviceTime\": 44.7849,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"3e421e48-4044-4d1a-acce-e4005cae6486\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:49.4186295Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.1498,\r\n \"serviceTime\": 49.7826,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"19f7d303-d6e0-4bd7-b287-f37576bf1dc1\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:54.5025262Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0163,\r\n \"serviceTime\": 44.7778,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"de832bf4-a658-4d75-8bd2-3302d72db1ef\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:59.5588223Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.624300000000005,\r\n \"serviceTime\": 45.3185,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"721cb51e-5606-4101-a022-faba581564db\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:02.5022138Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 406.3157,\r\n \"serviceTime\": 119.3263,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"74e3377a-327f-41b6-9a13-76d0221a8977\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:07.9600002Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.9132,\r\n \"serviceTime\": 50.7672,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"133e2c6d-7015-4f61-81d8-0cfd3429a091\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:13.0344772Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.8297,\r\n \"serviceTime\": 50.5576,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6ab19885-206d-45aa-a50b-fa19b2d87fcc\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:18.0968121Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.256600000000006,\r\n \"serviceTime\": 50.9742,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"bf3ae5ae-2114-4a59-b196-4e169f2fa2eb\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:23.1569668Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 579.7566,\r\n \"serviceTime\": 579.4876,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"d9c168c5-b1de-49fd-8d53-d8d24c39cfce\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:28.7854313Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 52.664300000000004,\r\n \"serviceTime\": 52.272600000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"87621258-32f9-4107-ac3d-51d93151494d\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:33.8648565Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.2584,\r\n \"serviceTime\": 50.965700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1c16ad2f-536d-4ce6-846d-540d4dab7833\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:38.9293607Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.326,\r\n \"serviceTime\": 51.039,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c94e7739-b331-47dc-8fa2-1e7148e1c371\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:44.0160642Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.8968,\r\n \"serviceTime\": 50.620000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b25460c2-b0f2-4668-8bf6-44fc38d54984\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:49.0962158Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 760.6194,\r\n \"serviceTime\": 760.28780000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fe26f0d9-77c6-4bc7-b8f1-b45f61a61137\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:45:54.291443Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 447.8064,\r\n \"serviceTime\": 156.6904,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"be9d3d9b-9821-4c77-bb34-5722653f77da\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:45:59.8117528Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 52.520500000000006,\r\n \"serviceTime\": 51.216300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5c39b007-502b-4d70-9b48-e363c7892700\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:04.8818152Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.060700000000004,\r\n \"serviceTime\": 50.7376,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"065879c8-1961-45bf-93be-0fabc796d17a\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:09.9448677Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.394000000000005,\r\n \"serviceTime\": 51.072500000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2429bbb2-1974-4ab8-ace2-befd9901703a\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:15.0190147Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.4009,\r\n \"serviceTime\": 50.9833,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"bd589320-cae9-413e-881f-5c233f742a03\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:20.1146928Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.2235,\r\n \"serviceTime\": 50.929700000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"58c5347a-5bbf-47d5-921d-7dfc3cb14f9c\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:25.1753919Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.179500000000004,\r\n \"serviceTime\": 50.883,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"bcc7ce2b-4bbd-4db2-ac7c-ba8a7be759ee\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:30.2288888Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.2971,\r\n \"serviceTime\": 50.9486,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4fe954f4-aa2d-48cf-8c96-b7d0ea06c43f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:35.3073287Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.7498,\r\n \"serviceTime\": 50.442800000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"14115e94-2416-4358-844a-d617eb10759f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:40.3737098Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.274100000000004,\r\n \"serviceTime\": 50.985800000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"24c81203-6f66-4056-8b68-50b57f849a90\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:08.3974551Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 447.3483,\r\n \"serviceTime\": 144.6286,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"05d73db7-4653-4a01-8a81-d1bf02a07f72\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:13.8954512Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 52.0107,\r\n \"serviceTime\": 50.919000000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0597cc32-56fe-47ca-a8ad-de12e4ff472f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:18.9746185Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.372800000000005,\r\n \"serviceTime\": 51.086400000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f0d72091-3180-401b-bf92-8fb6f01be83b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:24.0289678Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.718500000000006,\r\n \"serviceTime\": 50.7085,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"97bebc68-9c36-41e4-bd5f-188769f329cd\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:29.1060524Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.877700000000004,\r\n \"serviceTime\": 50.586600000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"af2c65e6-4b40-4af1-b172-cedc7e75479b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:34.1860982Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.189,\r\n \"serviceTime\": 50.916000000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c86fa959-9dc2-47ee-8f28-b07ec9570b29\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:39.2746173Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.7864,\r\n \"serviceTime\": 50.5264,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9919152e-7844-4725-9c35-fc0f75977584\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:44.3392177Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.9097,\r\n \"serviceTime\": 50.583200000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6e237b1e-1c31-42f1-8f74-69b8b48631b9\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:49.4107185Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.0702,\r\n \"serviceTime\": 50.737,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"04bc3d37-875c-46f9-9d39-1a59846c56f3\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:54.5854392Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 81.8165,\r\n \"serviceTime\": 81.2599,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0e76f31e-e2a3-456a-9f84-95f0ee1e1f08\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"13.84.222.37\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2017-12-18T23:59:27.7090827Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 605.1213,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"880542da-04db-4c61-908a-e4935fb7b365\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"24.16.12.23\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-02-17T01:48:26.5103607Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1408.3314,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"4f11a600-28f9-4a7a-8320-081d065b7e6f\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/favicon.ico\",\r\n \"ipAddress\": \"24.16.12.23\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-02-17T01:48:28.1168562Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.77660000000000007,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"03778e13-21a9-4be7-aa61-17f19e3eadbe\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:23:35.6396071Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 438.93210000000005,\r\n \"serviceTime\": 122.5634,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c0c6f122-0a6c-425c-a5dd-430cce1af78c\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:23:41.138847Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 321.0648,\r\n \"serviceTime\": 320.0695,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1211378f-19ca-47e0-9f76-545872c192ca\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:23:46.4925007Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0548,\r\n \"serviceTime\": 44.8068,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4c651dd8-08a7-4994-a876-961508b6c297\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:23:51.5553723Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.4615,\r\n \"serviceTime\": 44.2085,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c6bb068f-f3e5-409e-8e7d-90d2acdfbb41\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:23:56.6182093Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 552.9133,\r\n \"serviceTime\": 552.6203,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"32203413-afe7-48c5-ab74-eaf8cc06db00\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:24:02.2014953Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.915400000000005,\r\n \"serviceTime\": 45.6299,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"79fb3924-de3d-4763-bd43-609c53fbc025\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:24:07.2691159Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.458600000000004,\r\n \"serviceTime\": 45.2472,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"3be65a62-127d-4f6f-9cf9-8906e0d9806f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:24:12.3319698Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.395700000000005,\r\n \"serviceTime\": 45.158300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"3e70b19d-04e0-481a-836d-d4da94d13f2b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:24:17.3864336Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.1896,\r\n \"serviceTime\": 44.9606,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7ead71cb-1fd5-48b8-abda-24987b01ba6b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:24:22.4469264Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.124500000000005,\r\n \"serviceTime\": 44.8917,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e8b376a5-6b75-45fe-9d3f-bd58215b2f53\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:13.4598791Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 501.97150000000005,\r\n \"serviceTime\": 138.74790000000002,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b02d842d-04f5-4719-8293-a1ed0f51a85d\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:19.0300682Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.459500000000006,\r\n \"serviceTime\": 44.4287,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6b4f1c3e-c350-4201-89b2-4459daf496b1\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:24.1198522Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.3566,\r\n \"serviceTime\": 44.1545,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9aa3334f-e466-4673-ae3e-fe09d22ce527\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:29.172766Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.6377,\r\n \"serviceTime\": 44.3374,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8e651eeb-8eb8-4a4f-adda-cfd02927fc84\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:34.2621685Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.452400000000004,\r\n \"serviceTime\": 44.1133,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c5233ae6-955b-4df0-892c-fb2f55b28742\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:39.3416657Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.107800000000005,\r\n \"serviceTime\": 44.7882,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7836664d-4ce6-4361-a6d7-1e98ec4211e3\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:44.419073Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.864200000000004,\r\n \"serviceTime\": 44.5897,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9dddfb4c-64d5-4f01-8150-ebbe0965c660\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:49.4910192Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7023,\r\n \"serviceTime\": 44.4453,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4d462826-534a-4fba-943b-e276b25cbd32\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:54.5707344Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7397,\r\n \"serviceTime\": 44.4947,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fe68fa2b-ceb9-4c00-a473-272a3ca5f8fb\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:59.6347893Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7686,\r\n \"serviceTime\": 44.5283,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"400b2c7f-174b-45c7-a1df-938d94df870b\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/create-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"POST\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource\",\r\n \"ipAddress\": \"52.173.77.113\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 8846,\r\n \"timestamp\": \"2018-03-06T00:21:22.6262928Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1669.5748,\r\n \"serviceTime\": 182.3805,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070001\",\r\n \"requestId\": \"16284a1e-1168-4673-abbd-f72cc145a756\",\r\n \"requestSize\": 416\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource-cached?param1=sample\",\r\n \"ipAddress\": \"52.173.77.113\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 673,\r\n \"timestamp\": \"2018-03-06T00:21:37.8407091Z\",\r\n \"cache\": \"miss\",\r\n \"apiTime\": 664.3346,\r\n \"serviceTime\": 44.769000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070001\",\r\n \"requestId\": \"01dc66d3-53ed-4b10-9e45-55a3ae8372da\",\r\n \"requestSize\": 215\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=sample\",\r\n \"ipAddress\": \"52.173.77.113\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 623,\r\n \"timestamp\": \"2018-03-06T00:21:58.101651Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.5204,\r\n \"serviceTime\": 49.043600000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4e3615c3-1a50-4920-b133-e695dfe4da35\",\r\n \"requestSize\": 215\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=sample\",\r\n \"ipAddress\": \"52.173.77.113\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 619,\r\n \"timestamp\": \"2018-03-06T00:22:36.7630151Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.263600000000004,\r\n \"serviceTime\": 43.6993,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b6fbdef2-ecb9-45ca-8c0a-2f88400417d5\",\r\n \"requestSize\": 215\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=sample\",\r\n \"ipAddress\": \"52.173.77.113\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 621,\r\n \"timestamp\": \"2018-03-06T00:22:37.6557904Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.1075,\r\n \"serviceTime\": 44.6768,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"81643b9c-ac13-462f-afcc-4c0dae5cc703\",\r\n \"requestSize\": 215\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/modify-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"PUT\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource\",\r\n \"ipAddress\": \"52.173.77.113\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 623,\r\n \"timestamp\": \"2018-03-06T00:22:56.632653Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.5135,\r\n \"serviceTime\": 44.0843,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5daff206-55b4-4571-a5a7-369cea088dea\",\r\n \"requestSize\": 220\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:57:32.9983134Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 443.74870000000004,\r\n \"serviceTime\": 145.0343,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e540dbd9-e5a7-426c-86bd-694f87199028\",\r\n \"requestSize\": 245\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:57:38.5123495Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.449600000000004,\r\n \"serviceTime\": 46.354600000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"db78ea4b-3d6e-4121-a1b9-f8b30a499891\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:57:43.5899145Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.097300000000004,\r\n \"serviceTime\": 45.6918,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fb222074-4564-4414-94ef-a6f124b8e2ca\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:57:48.7050746Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.3292,\r\n \"serviceTime\": 44.961400000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"130adf1e-d245-4fd0-9380-7ece2ce9833c\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:57:53.7972278Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.8138,\r\n \"serviceTime\": 49.458600000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"47dc4b3f-67df-46d4-97cc-4f39bc350e8c\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:57:58.876912Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.6143,\r\n \"serviceTime\": 45.1518,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"74990ea2-3bc5-4c63-b25d-1074cc96a8a7\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:58:03.9616432Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.1632,\r\n \"serviceTime\": 45.816,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f26abcdf-a2b4-4ff7-83d8-f11e6c3ea545\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:58:09.0238097Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.3892,\r\n \"serviceTime\": 45.0384,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7b84d569-7a56-4b7c-97ad-46cb14054eb4\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:58:14.0982217Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.578900000000004,\r\n \"serviceTime\": 45.193000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1f204982-61ff-4df5-b86f-ef7f98e59000\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:58:19.1552064Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.3791,\r\n \"serviceTime\": 45.0306,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e1bb7279-1a3f-4d2c-aba4-e28f09895072\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:03:33.9046597Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 502.92010000000005,\r\n \"serviceTime\": 177.2782,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c7037320-8d09-4e2f-a844-88225032fbe1\",\r\n \"requestSize\": 245\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:03:39.4843419Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.4177,\r\n \"serviceTime\": 45.1438,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1358b55e-c9f9-4ff2-93aa-6e540e35b84c\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:03:44.556317Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.4699,\r\n \"serviceTime\": 45.124100000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1754c678-627a-4a22-9d0f-b2829888c82d\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:03:49.6190272Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.295500000000004,\r\n \"serviceTime\": 44.9345,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"95de0112-fc89-46ce-ad60-1a7b57f57389\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:03:54.6793269Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 47.0069,\r\n \"serviceTime\": 46.665200000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2ef549e4-3e35-4266-9a6f-ee3111b621d1\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:03:59.7603364Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.4697,\r\n \"serviceTime\": 46.1246,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9ce3db5d-ba5c-4711-9a55-ec531c6a2e59\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:04:04.8251708Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.4183,\r\n \"serviceTime\": 45.087,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cec18c96-483b-42d9-8b34-86f8db046e91\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:04:09.9111691Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 47.5384,\r\n \"serviceTime\": 47.21,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1b78809b-42b8-40e2-a7e3-2ad9814f21bd\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:04:14.9921966Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5717,\r\n \"serviceTime\": 45.2254,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cb23fb4f-40c3-4168-abfa-bbe0b3f2329d\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:04:20.1094454Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.8678,\r\n \"serviceTime\": 45.172900000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5c733927-ed33-43c9-8d15-9e7ff4b23aca\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:26.0236456Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 438.7103,\r\n \"serviceTime\": 130.7047,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"955ce345-4a88-4dcf-8f53-65b2a9a2ea4d\",\r\n \"requestSize\": 245\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:31.5211793Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.677,\r\n \"serviceTime\": 45.3455,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8cef10e2-6974-451b-8453-d48a02eccab1\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:36.5806191Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2734,\r\n \"serviceTime\": 44.9441,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2c894147-cc34-4b51-8890-b5bf86778d1a\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:41.6501915Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2291,\r\n \"serviceTime\": 44.9056,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c0d3a5e2-37fd-4594-99d3-85d8691b134a\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:46.7141306Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.458600000000004,\r\n \"serviceTime\": 45.0733,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"084d776b-a988-4f18-9465-42536420ffb9\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:51.7831264Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5916,\r\n \"serviceTime\": 45.2291,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b91c78ff-ab03-46f7-a8c3-2ff25bfcc304\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:56.8560678Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5809,\r\n \"serviceTime\": 45.2077,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"696700a7-778f-4276-8ed6-d023d598dacf\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:47:01.9197546Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.8277,\r\n \"serviceTime\": 48.481700000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8777ac4b-613e-49c1-853c-b5b1028aa315\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:47:06.9791547Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.7539,\r\n \"serviceTime\": 45.400000000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"721fbbfd-1955-4434-91ab-960882514591\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:47:12.0699932Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.6925,\r\n \"serviceTime\": 45.338300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ebda7389-34e3-45e4-8826-df94a92c2658\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:02.4243741Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 535.9414,\r\n \"serviceTime\": 156.6464,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"81e0394e-dc87-4692-ae36-7a6f706f50e0\",\r\n \"requestSize\": 245\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:08.0829756Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.375600000000006,\r\n \"serviceTime\": 45.0304,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"03add177-ccd6-4a46-957d-67e86502a1d1\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:13.1631893Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 803.5901,\r\n \"serviceTime\": 803.14410000000009,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9c7efa9e-fb79-4738-9b72-8d4dbe94d435\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:18.9996826Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.765,\r\n \"serviceTime\": 45.3701,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0cf7de42-5d73-4074-a4c2-37aa4e2b88a4\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:24.0698632Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.2269,\r\n \"serviceTime\": 45.819700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"791866cb-ecf5-4ede-ae5e-021cefe7a5ef\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:29.1294056Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.4129,\r\n \"serviceTime\": 45.024100000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4ee789cf-3f3c-4c6b-b116-b8c441608a80\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:34.2114081Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.914100000000005,\r\n \"serviceTime\": 46.4722,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f9ae6dd3-17d3-42b4-bbed-e7e823a5514c\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:39.2798684Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.478300000000004,\r\n \"serviceTime\": 45.0461,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"73ae6962-817f-4de3-ac82-da1faea53c89\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:44.3449364Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.371900000000004,\r\n \"serviceTime\": 45.930800000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8c51fa05-d73d-4af1-b739-91926aa0c028\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:49.4146075Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.711800000000004,\r\n \"serviceTime\": 45.2866,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e0a9c6b6-2260-483c-ad9f-b975d91beb0f\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:10:40.2716749Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 489.8204,\r\n \"serviceTime\": 149.1651,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"897a4fd5-e68b-46d4-94f8-dc05ad625a4e\",\r\n \"requestSize\": 245\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:10:45.8822351Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.797000000000004,\r\n \"serviceTime\": 45.450900000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f114bbe9-503a-4e13-b39d-3d88b2b9043d\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:10:50.957935Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.1867,\r\n \"serviceTime\": 49.771,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a71f5df5-ba3f-4e0d-9777-bf02d4b380ed\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:10:56.0170563Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.2212,\r\n \"serviceTime\": 47.8034,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"14482ec2-c42a-422f-a9d6-cc53850460a8\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:11:01.0963903Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 47.4153,\r\n \"serviceTime\": 46.969300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"3e7e41ca-b0fa-4334-ac74-8859b88e735c\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:11:06.1468514Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.6298,\r\n \"serviceTime\": 45.1113,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0a5a6b68-c871-4164-aa8e-20eb07b8d961\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:11:11.2160257Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.6511,\r\n \"serviceTime\": 48.2061,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"64f23972-143b-41f9-a97a-37dc5ea9124f\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:11:16.281159Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.0298,\r\n \"serviceTime\": 45.623400000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"91bc16e9-61ff-4bd5-ae25-57e90deb9bcf\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:11:21.3623845Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 58.850300000000004,\r\n \"serviceTime\": 58.3789,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"34987980-3cd4-4fb4-840d-cfe276ac8d8a\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:11:26.4481834Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.6161,\r\n \"serviceTime\": 45.2169,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fdb4022e-0219-4593-8b87-9d292f15a31f\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:28.3247795Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 476.46540000000005,\r\n \"serviceTime\": 128.60150000000002,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"250bb706-bd98-438b-8cf2-6f30094d6d8d\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:33.91856Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 53.106300000000005,\r\n \"serviceTime\": 49.315000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"264c826f-f970-4552-be42-8cf188f24c73\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:38.9896219Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.3308,\r\n \"serviceTime\": 44.9335,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"81b1bbdf-45e2-47cb-8c15-28989ebf7b7e\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:44.0647053Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.376400000000004,\r\n \"serviceTime\": 45.9745,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0cd86352-bc22-45a5-a648-b6e1a7b8f8e2\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:49.1255782Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.4392,\r\n \"serviceTime\": 45.0234,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"405e79de-4d4e-4103-be33-f13bdb0d236a\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:54.1730088Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.9938,\r\n \"serviceTime\": 45.5762,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e71b961a-22ab-4d2c-a176-523e9697f1e6\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:59.2586789Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.094,\r\n \"serviceTime\": 45.6379,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6b173c88-ef2e-4581-9fed-218e68b79b92\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:49:04.3181386Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.1668,\r\n \"serviceTime\": 45.766200000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c906f257-d58b-4730-9335-7785b0319cf4\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:49:09.3826289Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.046400000000006,\r\n \"serviceTime\": 45.626000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"34c34007-da5f-497b-abf7-17147be45107\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:49:14.464029Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 47.544000000000004,\r\n \"serviceTime\": 47.1415,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ea403222-34ef-4741-9ebc-30f552303bac\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"27.59.69.52\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-08-06T20:29:40.3623719Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1219.9305000000002,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"07805b1a-a524-4b1f-a949-39414d54c991\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/favicon.ico\",\r\n \"ipAddress\": \"27.59.69.52\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-08-06T20:29:41.9247481Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 2.5673,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"c117e389-c4f2-4670-a525-acbcdb9826e3\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:00.2393123Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 785.66410000000008,\r\n \"serviceTime\": 146.6279,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"469a8730-1103-45a0-ac19-61655a18716d\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:06.1770014Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 53.764500000000005,\r\n \"serviceTime\": 51.7291,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"21e9387e-a338-4e5a-acea-05ad3bcbfa2d\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:11.2298054Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.0995,\r\n \"serviceTime\": 50.6897,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ed2459cc-f379-4c3f-a170-50e9ec35c537\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:16.3081588Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.1344,\r\n \"serviceTime\": 50.7169,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5addf582-1a44-465b-8201-777e738d12ea\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:21.3754823Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.6274,\r\n \"serviceTime\": 50.233900000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7fa2e2d0-6371-412c-abe7-9ee0567fdcdb\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:26.466235Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 52.1858,\r\n \"serviceTime\": 51.740300000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"79281230-3ba8-46e3-8dc2-659d41527fee\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:31.5419775Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.741600000000005,\r\n \"serviceTime\": 51.341300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b6c0adcf-15e1-4748-aef6-9c7c3ae5bac5\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:36.6064268Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.811600000000006,\r\n \"serviceTime\": 50.3907,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"29e627be-6942-4f2b-8dc1-e3f5ad4f0626\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:41.6841436Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.139,\r\n \"serviceTime\": 50.7409,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"85e3d100-188a-4140-ac4c-08fd60fd50e5\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:46.7524891Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.3316,\r\n \"serviceTime\": 50.8864,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9f37c539-b54e-4b83-b7e3-de4ae0045479\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/create-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"POST\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource\",\r\n \"ipAddress\": \"13.91.254.72\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 9082,\r\n \"timestamp\": \"2018-09-24T18:19:02.1258594Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1218.5258000000001,\r\n \"serviceTime\": 179.00400000000002,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070001\",\r\n \"requestId\": \"399ee28e-22c9-4460-b37a-45e280172147\",\r\n \"requestSize\": 709\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:17:43.6900176Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 840.3682,\r\n \"serviceTime\": 138.6919,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c2d22d8b-7c2c-4083-bb31-6022a9433936\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:17:49.8574456Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.5322,\r\n \"serviceTime\": 45.173300000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e123a6ac-3cde-4d76-b424-13fae9e9695a\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:17:54.9248553Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.200700000000005,\r\n \"serviceTime\": 44.7513,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9c402537-9cb8-47fc-8711-53bc6be998c8\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:17:59.9689145Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2036,\r\n \"serviceTime\": 44.8121,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"bca90e96-87db-4eba-9ced-f358a7f854b5\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:18:05.0346243Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.332300000000004,\r\n \"serviceTime\": 44.7917,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"353d8378-738f-489a-8694-0aca5e5d319b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:18:10.0906729Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.4087,\r\n \"serviceTime\": 44.945100000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f3dcdce1-1965-4612-acc6-8f889680a33a\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:18:15.1604656Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.8284,\r\n \"serviceTime\": 47.5934,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c129aada-baed-4888-a7ab-015bbda79145\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:18:20.2362852Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2582,\r\n \"serviceTime\": 44.7824,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"07861b4a-e5ad-4b14-a688-e3ea432dd1bb\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:18:25.2813074Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.3393,\r\n \"serviceTime\": 44.8344,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e30d99eb-bce0-4725-b885-d2ee2cc138cb\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:18:30.3524683Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.023900000000005,\r\n \"serviceTime\": 44.6144,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7c7953c3-123e-434a-a7cf-c1d4c495f98c\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:02:51.7475599Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 620.2874,\r\n \"serviceTime\": 138.6122,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"848cb6bb-4c0a-466e-8e80-65b79db6876b\",\r\n \"requestSize\": 245\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:02:57.5008919Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 654.3816,\r\n \"serviceTime\": 647.2155,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"39be53e3-03e1-446e-a536-9bd8f066b452\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:03.1927387Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.0268,\r\n \"serviceTime\": 50.6313,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8c0ffb31-77f0-4bdd-bde7-7fc412118acc\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:08.2554062Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.3784,\r\n \"serviceTime\": 50.9587,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"41a4321d-8a6a-41ee-8b61-c004ca1a9892\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:13.3198552Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.243,\r\n \"serviceTime\": 50.8222,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4741958d-7f96-4555-8571-f11e415f535b\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:18.3944268Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.1293,\r\n \"serviceTime\": 50.7235,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a8c2b987-efc3-4c7d-9073-ba05f0ec7491\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:23.46343Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 161.0886,\r\n \"serviceTime\": 160.6605,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"08de177a-122b-4f06-9e7e-8eb855d6acb1\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:28.6465235Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.457800000000006,\r\n \"serviceTime\": 51.0703,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"094ba009-0cd9-45b5-a8cc-00b4359f3499\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:33.7234559Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.2781,\r\n \"serviceTime\": 50.869400000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e306581c-31b1-4733-bef6-1e3c4ec6c4db\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:38.7909047Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.5176,\r\n \"serviceTime\": 51.0685,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ba34bfa1-bf7f-4df4-930c-020dea6e6ba0\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:19:48.1646749Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 490.04760000000005,\r\n \"serviceTime\": 119.76060000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"d8b45b66-63da-4a13-9bae-faf64e14fab2\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:19:53.7851913Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 52.289,\r\n \"serviceTime\": 50.9699,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f6d2eba2-9b9e-4b10-8093-90654f427f51\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:19:58.8425343Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.5612,\r\n \"serviceTime\": 51.146100000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cddd6b2d-b97f-4256-8dbb-060fe4379f1c\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:03.9342563Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.9236,\r\n \"serviceTime\": 51.5127,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b50f33fb-92fd-44bb-8349-db7a85314b31\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:09.0158677Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.0047,\r\n \"serviceTime\": 50.5762,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"64ff8c51-43ce-403c-8272-bb308223718b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:14.0903047Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.887,\r\n \"serviceTime\": 50.4718,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c7827c41-de65-4dbc-9ade-cae1501dc743\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:19.1497844Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.3555,\r\n \"serviceTime\": 50.904700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c08014fc-130f-4dc2-81ab-7a7c99402b1d\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:24.212013Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.1325,\r\n \"serviceTime\": 50.5178,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"558bfd05-6600-4be3-accf-b0a119d8df6f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:29.2741763Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.563,\r\n \"serviceTime\": 51.1619,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"04732f6b-81dd-434a-910e-34ddc774238f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:34.3497066Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.871,\r\n \"serviceTime\": 50.470600000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"685fa1b7-5801-4cf0-9785-a397ad5f07b4\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.79.57\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-10-28T04:48:56.5634549Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1059.0415,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"42e69a7a-d9ef-47de-a5b0-3ef19b97f87f\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.79.57\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-10-28T04:48:57.7158893Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 2.0246,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"128cea25-81cc-4988-86a7-776ee8a1bc29\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.79.95\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-10-28T05:14:04.8737942Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4081,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"4f1c5d2a-8f24-48a9-bba1-0f911633da34\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.79.95\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-10-28T05:14:04.9262238Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.35200000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"ee568d27-7a34-4496-afd8-650b904f0d70\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.207\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T00:07:09.9908045Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 205.0687,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"72bfd031-f4ae-4cb2-a8ab-f5f710c9a468\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.207\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T00:07:10.2322898Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3425,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"694037c9-a8d2-40c5-9582-5852fd72e9da\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.75.135\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T00:16:58.6234489Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.7294,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"005b9309-5246-4206-853d-18c801104550\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.75.135\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T00:16:58.6547003Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3128,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"f210e1f4-8da0-481c-ba33-ab5b1ca277d7\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.207\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T13:28:36.9594385Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4398,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"07a56ceb-4a21-4d51-881d-bf71ffe0cbf2\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.205\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T13:28:37.0844207Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3906,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"bd76e6a2-82de-4817-8f01-f0821f0b58f1\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.75.137\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T13:38:05.3110496Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.36610000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"95afa93c-788d-4ee7-a1ce-3f7a2365e1dc\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.75.137\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T13:38:05.3603514Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.35600000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"513ba4f4-7cdd-440f-8a8e-273a6d9b7899\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.205\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T23:08:08.2174122Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.5786,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"abd05b17-fd5e-41a5-9b6c-d35b76edaaaa\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.75.137\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-03T00:15:58.9637274Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4066,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"f4bd419f-8980-4a58-98e2-833cccecb437\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.23\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-19T03:33:45.3499353Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1392.9443,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"69ce781c-b3a0-4056-9dc0-518af93b5db7\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.21\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-19T03:33:46.925386Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.5642,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"172ae5cb-5666-48c8-b1ba-125e4a00e40a\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.2\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-19T03:35:39.6061689Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3914,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"68a2aa66-cdf7-4a9e-8440-a061f65e7092\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.4\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-19T03:35:39.8424776Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3668,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"12496ed5-3ce7-49a1-8cd0-84bfb1515fa4\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/favicon.ico\",\r\n \"ipAddress\": \"131.107.147.54\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-20T17:00:06.9599649Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 848.85020000000009,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"aaffe61b-aefa-4ef1-b557-c3bd6303e054\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/favicon.ico\",\r\n \"ipAddress\": \"131.107.160.70\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-21T19:09:22.6319939Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 784.0877,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"974f95b4-d432-49a4-a5bb-81968cde4544\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.175\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-23T05:53:02.7411272Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 5.134,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"ec984d2b-d807-4651-b7a3-14e882d63ff8\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.177\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-23T05:53:01.4807905Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1156.3908000000001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"8cb1e087-ce0d-4645-aeab-15b1db7634bc\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.2\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-30T14:47:17.6551027Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1471.3045,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"73dba88c-ab47-4b23-b008-7961750e9004\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.6\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-30T14:47:19.3190094Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.1173,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"40f0cbc2-8907-4a19-bfc4-ec605cbaa063\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.79.236\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-01T00:36:05.2590774Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1198.5423,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"b1c44cfc-1c8c-43b3-8a62-94212e31caac\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.135\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-07T06:36:54.0336636Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1934.9740000000002,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"20ce2c02-1fbc-4e9a-9dc3-177c5c333516\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.133\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-07T06:36:56.1057899Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.2423,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"be784018-6aa4-4a71-8b25-db3d310b56d6\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.209\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-12T04:24:54.8665058Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.318,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"b63295cb-3da4-408a-aa41-8514d8cbd288\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.209\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-12T04:24:52.256733Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 2568.2388,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"87c9d9a8-46f2-4775-98aa-fc6a9ba785ad\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-12T19:50:54.6965847Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 201.3605,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"3edd5e9b-2ff1-43d6-b168-492f131d407a\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-12T19:50:54.9816892Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.34440000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"e62be1ca-92f6-4140-bf04-bf01e4d5c230\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.155\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-13T08:24:30.0870791Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 2261.6673,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"a440e471-ed1d-45b1-a588-57caa1a80fe1\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.155\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-13T08:24:32.3999542Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 3.5024,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"70b0bf8c-4842-4c70-8477-41fbe3e99ec0\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.153\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-14T06:50:44.7086184Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 236.478,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"3db5fa8e-690e-48ec-a794-0c979a1798de\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.155\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-14T06:50:45.2374574Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4097,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"de3d99ce-eff6-4014-a122-c0806c16bd49\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.73.29\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-20T21:26:37.4142938Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1166.4887,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"2e5eeb08-80ed-4607-9be4-3a6501655801\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.73.28\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-20T21:26:38.6855534Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1183.6191000000001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"bc071fcb-1edb-4f6b-b84d-8fab125abf00\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.209\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-25T13:59:35.4833806Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1291.6733000000002,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"b99fad8d-437d-45bd-86a6-989de99c1f28\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.205\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-25T13:59:36.9836297Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.2974,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"655ed22a-ecd9-487a-8547-3efc9af2b0d5\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.157\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-30T22:58:15.1692299Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1398.3948,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"abf606ae-11f4-4a12-aa3a-dfdc15149eae\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-30T22:58:16.7557546Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.0701,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"723cb3fa-6c31-4d6c-9d72-d58dfb5a62c1\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-06T07:56:15.5579037Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1656.3501,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"e82bb153-100f-4191-97c5-2607a85bc777\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.157\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-06T07:56:17.4492568Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.1127,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"64e68428-9ade-43cb-b68d-328040af6762\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.73.29\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-14T05:59:03.3064592Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1233.4746,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"937bd6f8-fbb2-4fd7-85c0-7707c9a74972\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.73.27\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-14T05:59:11.5869906Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.0654000000000001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"c3d05cb9-130c-4144-b8dc-e532c5bb1492\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.113\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-15T12:53:44.1910452Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1626.9659000000001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"0f81b200-77d1-46bc-a56a-3047494c8c61\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.109\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-15T12:53:45.9979089Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4339,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"32037b47-f1c0-4e30-9053-1446a261d0d9\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.111\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-19T20:55:14.0299211Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 29.000500000000002,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"a80f8e2b-4a23-42df-a5dc-6c5f567151af\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.109\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-19T20:55:14.8462111Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3936,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"7776a947-0cfd-4ed4-a6d0-0b22feb432dc\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.151\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-25T04:54:15.9599298Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 862.2427,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"523b5c3c-d2f0-4c34-9279-89c961602981\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.155\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-25T04:54:17.0380664Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.0547,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"77ad4546-121b-4146-8a91-46417403fad5\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.157\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-29T19:16:40.8507321Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 948.96250000000009,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"f0e90d60-4c25-4b0d-893c-e0fcece680fc\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.158\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-29T19:16:40.1435871Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.38420000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"4bd73253-074d-45ee-9d85-42d83de83283\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.157\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-30T05:10:23.8522476Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4176,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"12c89dc5-f645-43b4-b352-24b4bab77a3b\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-30T14:09:20.8225521Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 4.4275,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"0ad134c1-ad41-4fc5-b8e4-2e23aea35409\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-30T14:09:21.3089962Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.38320000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"e31bbc77-5973-40e8-8afb-709316162cd3\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.155\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-05T19:08:18.9749957Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 898.4899,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"613b1920-5f3a-4104-8b9d-a1dd2d4bd5d4\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.153\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-05T19:08:20.0686957Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 937.22790000000009,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"e7d5d92f-cd1b-48ed-9bfa-ea9dbc016339\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.153\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-06T06:12:56.1770254Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 2.9601,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"7b3a6406-5b12-4642-8ff6-adfbccce856d\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.153\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-06T17:07:07.6751833Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 3.0537,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"b7b0c470-93c8-4137-b15a-85c48d5d1d9d\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.151\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-06T17:07:07.9094418Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3542,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"c732f1ed-9dcd-4e0c-9db2-cde7773d3577\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.113\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-12T23:42:01.1676845Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"23fa546a-5c30-49a6-befb-8a5dff4ef845\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.111\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-12T23:42:01.3551648Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4455,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"1cb0541c-5663-49ed-84e5-1cd15005e5da\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-13T23:51:31.4547371Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.5057,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"b87325fc-6253-4279-91d4-c74718ffc554\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-13T23:51:31.5172079Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.341,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"5e7389e8-aa08-456d-a514-4ea62b2e2ae0\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.179\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-27T12:36:03.8821071Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1340.9502,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"555e7d7f-02c7-4f0d-a6cb-2853b17fa0d4\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.179\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-27T12:36:05.2439219Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 8.0977,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"08b7e44a-d921-44f3-b6bc-2e44cae51aa8\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.209\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-27T16:27:29.8478315Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1122.8238000000001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"cb300fd9-681e-4e27-bb96-799d55d30447\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.207\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-27T16:27:29.7019097Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.41540000000000005,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"c014a93b-d9e6-4400-a42f-7c90d1474a3d\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.179\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-11T15:18:05.3590504Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1037.3471,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"03c6861f-2f2a-4fe1-a54c-68626a0ad994\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.183\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-11T15:18:06.5465845Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.9946,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"59ab7961-3e60-4f0c-818d-77d3c53aef84\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.119\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-12T18:27:09.8717598Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3714,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"5dbdb46a-e060-41d2-b65d-77371304d7c6\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.119\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-12T18:27:09.9185767Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.29150000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"4d4fb036-6018-4397-85ac-1b591ed8ab0e\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.73.29\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-15T03:03:02.5539071Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 998.4266,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"ee43fa27-bcec-4018-80ea-79a6e81bc9b0\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.73.29\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-15T03:03:03.585353Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 8.7083000000000013,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"356ffdce-392c-40d0-9f8f-4e44c41763c5\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.129\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-18T06:02:54.6273481Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 12.2417,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"45ee60cc-a283-49c5-9ac1-ffadd7a9941f\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.129\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-18T06:02:53.486558Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1100.5928000000001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"52edcbea-8588-48c3-bbf3-2072c14f2548\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.119\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-28T02:42:10.9671769Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 980.5786,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"fa40e3ed-1ed3-418f-bf5c-abf5dc72552d\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.117\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-28T02:42:12.1471696Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 830.3429,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"247461fb-6b44-4d4d-a598-a4631369636e\",\r\n \"requestSize\": 0\r\n }\r\n ],\r\n \"count\": 383\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/interna-status-0123456789abcdef\",\r\n \"ipAddress\": \"131.107.174.154\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2017-07-13T23:23:53.5816069Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 876.451,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"7f4f12c9-82aa-4852-93dc-e6e819987bfd\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/favicon.ico\",\r\n \"ipAddress\": \"131.107.174.154\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2017-07-13T23:23:54.6285103Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.66980000000000006,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"a32bf026-fc60-4c0e-b543-cf76e9d9a665\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:19:42.3994478Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 398.7982,\r\n \"serviceTime\": 115.97420000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ff2971aa-4c77-4879-8d1a-af1032546153\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:19:47.8415987Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.521,\r\n \"serviceTime\": 44.6094,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a287f019-e668-4746-957a-e51cd966eeae\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:19:52.9030826Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8112,\r\n \"serviceTime\": 44.518100000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"717909b1-b991-4644-bfcf-4a85ffa74670\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:19:57.9425225Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.7115,\r\n \"serviceTime\": 45.4498,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7ff42c10-8e89-41b7-a540-2fa9f46d39cb\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:20:03.0128091Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.252700000000004,\r\n \"serviceTime\": 44.911300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e9d2eb4f-e6a3-4cf6-851f-a38dc7747262\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:20:08.0785122Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.985800000000005,\r\n \"serviceTime\": 44.7153,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"35b4f436-3e7c-446d-b6b8-28b65acb3edf\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:20:13.143713Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.6278,\r\n \"serviceTime\": 44.408300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2ce0e20e-8908-41f9-94a3-c3e57fac80b3\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:20:18.2068733Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.1638,\r\n \"serviceTime\": 44.8616,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5c43b6d7-724d-43a5-805b-6e99ad1374bf\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:20:23.2696227Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.495000000000005,\r\n \"serviceTime\": 44.280300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"798002d9-58b2-4b80-b98a-7da72579d451\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-08-07T21:20:28.3297958Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8877,\r\n \"serviceTime\": 44.5852,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b3f7f8e5-9db8-4bbe-8ff4-d431e78f93ad\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:50:32.4633311Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 405.77360000000004,\r\n \"serviceTime\": 109.71690000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"82a75278-2c11-4680-bb55-d03fec0d5394\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:50:37.9160813Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5173,\r\n \"serviceTime\": 44.4439,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5d78d33a-6a50-45fb-9c90-b8c1891100f6\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:50:43.0077901Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.6762,\r\n \"serviceTime\": 44.4478,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"77bd3850-03a8-4f49-b6d8-f0433a93bf55\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:50:48.1156987Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9489,\r\n \"serviceTime\": 44.6541,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9355f60e-3cf7-4846-a977-fe689d68c6a5\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:50:53.2042181Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.4067,\r\n \"serviceTime\": 44.131800000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"80907ca9-e6a8-410e-80eb-cd5f4e62560c\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:50:58.3066918Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.846000000000004,\r\n \"serviceTime\": 44.5929,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"28e09ded-0705-4834-8501-8ecbc9f87b5c\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:51:03.3974731Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.446400000000004,\r\n \"serviceTime\": 44.1625,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ecc3c86d-7d01-4901-87be-8338568cf51a\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:51:08.4886922Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0544,\r\n \"serviceTime\": 44.694700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6357137b-14c7-4af8-85c8-341addb269e3\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:51:13.568822Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7316,\r\n \"serviceTime\": 44.4906,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"057acf31-0a55-443e-b4bf-fcad483cb38d\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-18T01:51:18.6721766Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.322300000000006,\r\n \"serviceTime\": 45.0013,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"d8b574e3-a9b8-4c6f-bfc4-9b736ae0e5c3\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:22:38.8425726Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 513.3941,\r\n \"serviceTime\": 144.9402,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c9f30e98-5766-453b-9547-e3950db270e2\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:22:44.6249951Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.8006,\r\n \"serviceTime\": 48.8892,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4da586db-02fd-4f2b-b8cb-33b7b0ed2952\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:22:49.7161898Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.6471,\r\n \"serviceTime\": 49.384,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b93a6866-aa95-414e-8087-575bc8be84e4\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:22:54.7973344Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.646100000000004,\r\n \"serviceTime\": 48.4401,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f67299d8-8c30-4709-902d-19c23be5be88\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:22:59.8719881Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.426,\r\n \"serviceTime\": 49.208200000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1d3d81e0-f4b4-4fe6-b4e9-92ba4825bd80\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:23:04.9658545Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.6435,\r\n \"serviceTime\": 49.409600000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b5d5da7b-e060-459c-b41c-ffa1c34a0193\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:23:10.0450413Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.281200000000005,\r\n \"serviceTime\": 48.015,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"44e4696a-87c0-40f1-ac62-15d02de9a0f7\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:23:15.1534866Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.7181,\r\n \"serviceTime\": 48.464200000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"60eb1ee1-05b7-4486-bad4-796b6f6abe40\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:23:20.2208737Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.4065,\r\n \"serviceTime\": 49.1785,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8701de57-f906-44e5-b10f-d073113d02d0\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-22T23:23:25.325534Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.975,\r\n \"serviceTime\": 48.7391,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7d3ec426-e276-44d7-ae65-9215a8b23ca5\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:24:41.131193Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 400.59900000000005,\r\n \"serviceTime\": 115.8096,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"23ce3aab-4425-4998-94b5-7c41647f8a61\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:24:46.5938393Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.7385,\r\n \"serviceTime\": 44.725300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"64028abf-e352-4d04-a34f-db4d517ac401\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:24:51.654492Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2551,\r\n \"serviceTime\": 44.871300000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"94a067cb-01d2-4e94-bad5-7fb404b1c726\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:24:56.7197122Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2074,\r\n \"serviceTime\": 44.926300000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"296722d6-b4aa-445c-bad5-77a8a28eba4a\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:25:01.7845145Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8577,\r\n \"serviceTime\": 44.578500000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cb4d7375-651b-411b-b73a-3578ae62abe0\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:25:06.8677785Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.394200000000005,\r\n \"serviceTime\": 44.1156,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b5ad33a7-0660-4017-a3f6-4122b74b5cad\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:25:11.9252192Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7793,\r\n \"serviceTime\": 44.4543,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"013121c4-f22a-45ff-9a3c-be6011e92af4\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:25:16.9899732Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0878,\r\n \"serviceTime\": 44.7813,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8ab42698-ec95-4db2-99b4-5b950688c892\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:25:22.0759221Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8046,\r\n \"serviceTime\": 44.511,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b65f7778-ce58-4985-94ae-210b0aee92a3\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-25T16:25:27.1462223Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.611900000000006,\r\n \"serviceTime\": 44.3339,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"45d00fe4-b063-41bf-bcfe-f353d8399c24\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:53:49.7081666Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 416.1664,\r\n \"serviceTime\": 121.6342,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"929536c5-5aa3-4a7e-96d4-fc0cb3443352\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:53:55.1909294Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.3862,\r\n \"serviceTime\": 47.2434,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fa97ce55-5982-40a6-ab2f-6fc4e61d44bb\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:00.2672934Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.5686,\r\n \"serviceTime\": 44.1784,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"bd08b2e4-1b85-419a-98b8-027cdfdc319a\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:05.3266172Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.910700000000006,\r\n \"serviceTime\": 44.5521,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"bda398ec-87b1-4306-b969-e553d08d99df\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:10.3803959Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.923,\r\n \"serviceTime\": 44.565200000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0fb966cf-3d66-4fac-8142-83b7274dd28d\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:15.4608119Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.725,\r\n \"serviceTime\": 44.446000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5f2319fd-07c6-4ae5-9d26-a8f3b96d40c5\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:20.5463278Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.858000000000004,\r\n \"serviceTime\": 44.632000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ef096b07-38a1-47b6-af6c-6aa57e3ce8e6\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:25.6085877Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8243,\r\n \"serviceTime\": 44.5432,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"46d70e56-8351-4898-ae6f-1ad7bf648436\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:30.6699314Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8301,\r\n \"serviceTime\": 44.503,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fe22c4d7-4875-4b97-8063-88550a45f61e\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-28T19:54:35.7241991Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.109700000000004,\r\n \"serviceTime\": 44.824600000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"23b32b5e-021d-4c7f-aab0-8285c5289515\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:24:50.8075853Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 399.5978,\r\n \"serviceTime\": 125.7459,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4787e8ca-1f7b-4294-b4b9-59e9d975fcca\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:24:56.2497248Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.6199,\r\n \"serviceTime\": 44.5154,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c75df511-b8be-4c85-b409-0f0a031a8348\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:01.330314Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.974000000000004,\r\n \"serviceTime\": 44.656,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cdfb3a33-b0ca-46cb-acd4-e5ee2cfe98ff\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:06.4105139Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.1578,\r\n \"serviceTime\": 47.9313,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fb5ea6eb-0939-47d2-a1ca-88a06a8356b5\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:11.4755021Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2695,\r\n \"serviceTime\": 44.8877,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"750ce1ca-c1b1-4ea0-8083-66aae21516ab\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:16.5400396Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8846,\r\n \"serviceTime\": 44.5399,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2e569ed4-60a7-47e5-aa77-425f631990a4\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:21.6078033Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2592,\r\n \"serviceTime\": 45.029700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a0013396-4287-4704-972c-6f66ec1612d4\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:26.669011Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.6986,\r\n \"serviceTime\": 44.3716,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2f63266a-359a-44cb-8ce3-383dc881b56c\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:31.7335825Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8988,\r\n \"serviceTime\": 44.5996,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"d1a4afff-0fd4-4654-ad5e-652175808465\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-08-30T00:25:36.7935016Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.707,\r\n \"serviceTime\": 44.4471,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6a650828-ce9c-4a86-8c10-e3a4e5dbe96a\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:16.8872889Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 418.9957,\r\n \"serviceTime\": 128.09560000000002,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4d5caba4-de33-4a0f-9e9e-ae31eb90a904\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:22.391335Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.670700000000004,\r\n \"serviceTime\": 44.7684,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c772de9e-48f3-4791-adde-acdd171c5a62\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:27.4810659Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.691,\r\n \"serviceTime\": 44.374900000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c9793550-2675-4e70-94bd-0c227b02b5d4\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:32.577867Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.5401,\r\n \"serviceTime\": 44.2256,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c688c486-8931-4ccc-ba58-2bbfa08dd35e\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:37.6781146Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.3906,\r\n \"serviceTime\": 44.0679,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"11fa947f-a147-4111-9678-a7818115c0b6\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:42.7693347Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9373,\r\n \"serviceTime\": 44.5214,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5fafa288-3e18-4779-a6e3-dfe79deffa91\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:47.8397781Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.955600000000004,\r\n \"serviceTime\": 44.6109,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"220867e8-fa11-4f42-9367-1af90223b695\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:52.933633Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8119,\r\n \"serviceTime\": 44.5396,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cb3d3549-94b6-42c8-a329-423db0af93b3\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:40:58.0248285Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0944,\r\n \"serviceTime\": 44.7564,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"24b9591a-fc22-400c-b02b-49a9cbc324fe\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-05T22:41:03.1215636Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.79,\r\n \"serviceTime\": 44.504400000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"61cb3ec8-10bf-41c4-8d30-8be5687b3d81\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:29:29.4255542Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 369.48060000000004,\r\n \"serviceTime\": 105.357,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"3b6723dc-0cf8-4db8-89fa-31a4d4ea5f3b\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:29:34.8370135Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.7019,\r\n \"serviceTime\": 44.3739,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4ff7073e-527d-4e1a-8aab-0bf90e9e8a3c\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:29:39.8858181Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8166,\r\n \"serviceTime\": 44.513000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"35b9a17a-e4ac-4708-87a6-8b21b648a076\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:29:44.9392173Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 55.302800000000005,\r\n \"serviceTime\": 55.0266,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8aefa350-80de-4336-8e76-807637826583\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:29:49.9931275Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.5951,\r\n \"serviceTime\": 44.3688,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a08add3f-9822-4cd5-8167-fffdf722d7e9\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:29:55.0646679Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7676,\r\n \"serviceTime\": 44.4791,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8bd5c765-55c2-440c-b30e-297db797ff21\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:30:00.1063008Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9909,\r\n \"serviceTime\": 44.701100000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"de99f5b1-aa1c-4090-9369-12146938d3e7\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:30:05.1549098Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8536,\r\n \"serviceTime\": 44.527,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2f3309bf-0b40-48f2-a3a4-86bb87be47e0\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:30:10.198323Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.736000000000004,\r\n \"serviceTime\": 44.4515,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"3cc992b9-12ba-47d6-80e9-2bb00a98ccb5\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-15T19:30:15.2412968Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0081,\r\n \"serviceTime\": 44.684400000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"598b36e8-d370-4b26-8e14-5c3bbc2f7041\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:02:59.9748356Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 434.52680000000004,\r\n \"serviceTime\": 126.22470000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"438a78d2-1961-441a-b5bb-e113d268ce6b\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:05.4895983Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.2064,\r\n \"serviceTime\": 45.1893,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f4da2eec-3712-4fd1-9265-bf60c93d907c\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:10.5650717Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.824200000000005,\r\n \"serviceTime\": 44.5176,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"50124bbf-6854-4879-93cc-05521a2b5b40\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:15.6526403Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.851600000000005,\r\n \"serviceTime\": 44.557500000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"35441e10-70dc-4144-b3c9-5c2b738519ae\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:20.7338218Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.482400000000005,\r\n \"serviceTime\": 44.2541,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"20940695-bc73-4519-b104-76d071e067df\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:25.8205635Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7747,\r\n \"serviceTime\": 44.5255,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"dc296fb9-7326-4771-a8b0-9c5dced4d9f4\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:30.9571099Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 66.9139,\r\n \"serviceTime\": 66.295600000000007,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"28b359a8-fb20-4d52-9ee1-f06eff8a255d\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:36.1176147Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.9197,\r\n \"serviceTime\": 46.6809,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e465f965-7c4a-42aa-b6d8-a11ac7173292\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:41.1932468Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 328.78040000000004,\r\n \"serviceTime\": 328.4185,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"72d30834-71e5-4f7c-8d7b-6223eae19905\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-09-26T00:03:46.5721795Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 591.60070000000007,\r\n \"serviceTime\": 591.2077,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"664de22f-dcda-4d1d-93e1-24bc5ab8846d\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:36:38.3981596Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 438.7459,\r\n \"serviceTime\": 126.44720000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"905454b8-c5f4-4c8d-80c2-d99a5942fac7\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:36:43.8985519Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.9114,\r\n \"serviceTime\": 44.7442,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"04959572-5a4d-40a8-a900-5aa72dfbfdef\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:36:48.9593526Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9239,\r\n \"serviceTime\": 44.5934,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"89f65eb3-127b-4752-9761-074800388a17\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:36:54.0064911Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5,\r\n \"serviceTime\": 45.2569,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6788f084-6aaf-42b2-a58b-ff0fee7164d2\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:36:59.0714569Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.249100000000006,\r\n \"serviceTime\": 44.9373,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"d4dd89be-200f-43db-a52d-30c872b0f608\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:37:04.1365812Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.352900000000005,\r\n \"serviceTime\": 45.075700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"229c3890-54bf-4780-abe2-c8b7a6453828\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:37:09.174611Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9384,\r\n \"serviceTime\": 44.644800000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"71d44aea-441f-4770-9b84-e88dd23ca27a\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:37:14.2391001Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.007000000000005,\r\n \"serviceTime\": 44.771300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ac466766-a23f-4e7e-92da-14f34e5bc067\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:37:19.3090771Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.9878,\r\n \"serviceTime\": 45.7633,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"56a3d7f0-748d-4193-828f-445e70ba4114\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-09-29T01:37:24.3579098Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.952000000000005,\r\n \"serviceTime\": 44.7218,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7ab3e7a1-2b11-4afd-b73b-b0493c8c4208\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:20:39.6697246Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 364.9227,\r\n \"serviceTime\": 110.97970000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a4699a08-a2d0-4c26-a539-a8ba6a79d04e\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:20:45.0764887Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.7592,\r\n \"serviceTime\": 44.7278,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"246b0dc1-b738-4547-9eed-c8a14b97505e\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:20:50.1520958Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8359,\r\n \"serviceTime\": 44.5371,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"12720ec3-421a-4ea0-84dd-7f9bd28d2c3e\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:20:55.1856855Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9876,\r\n \"serviceTime\": 44.6678,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"033e48da-2d75-4726-90d3-6c52cf458171\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:21:00.2450141Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.338,\r\n \"serviceTime\": 44.0569,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7c103c97-b2fd-4888-ab16-b4b3c01f2a1c\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:21:05.2998319Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.2543,\r\n \"serviceTime\": 51.0415,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"49113c57-e06a-45e0-a1e2-95c1588834aa\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:21:10.3652566Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7304,\r\n \"serviceTime\": 44.505700000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4ad3c01d-f6a4-4c80-ba14-1ba899b44d08\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:21:15.4296636Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.445800000000006,\r\n \"serviceTime\": 44.1543,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b86fe156-aa1d-48b4-89c4-9a9b9e4b147c\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:21:20.495029Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 52.7391,\r\n \"serviceTime\": 46.5658,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6a3ab8ba-eae9-486b-a4a8-8b055726ed71\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-05T20:21:25.5901698Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.179700000000004,\r\n \"serviceTime\": 44.923,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b6a8e84d-941b-4cc9-b25c-762b5b0a730f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:22:30.3030768Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 507.6177,\r\n \"serviceTime\": 123.3345,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4d953c79-3221-45a1-a76a-200469808ea5\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:22:35.8705079Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5146,\r\n \"serviceTime\": 44.4272,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b3ce24d1-c1da-4ecf-8742-482e38ca340b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:22:40.9363149Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7078,\r\n \"serviceTime\": 44.3415,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9db80732-5d57-41f9-a6ef-563081f3aa12\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:22:46.0005709Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.878,\r\n \"serviceTime\": 44.535000000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ee05f4a1-d60b-49fe-8c49-86f10cebb2f6\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:22:51.1428034Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.4972,\r\n \"serviceTime\": 45.1886,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a9f636eb-0fa9-4665-a382-2e61b0138bb0\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:22:56.2047342Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9681,\r\n \"serviceTime\": 44.6495,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"597e8b45-e3b2-428a-a2ea-3c86dbfb1608\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:23:01.2695476Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9635,\r\n \"serviceTime\": 44.644000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"d8503d6e-0c7d-48a9-ae33-d6a05ec43528\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:23:06.3241822Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8097,\r\n \"serviceTime\": 44.486200000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4178f06d-ba88-4c7b-9976-865d58138157\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:23:11.433928Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.2795,\r\n \"serviceTime\": 44.056000000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"35ac7265-602c-4e0b-8f2a-f15e82d98739\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-19T03:23:16.4855156Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.4026,\r\n \"serviceTime\": 44.177,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2b8212ad-74d4-4908-8460-3cd1be3024a7\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:07.4613486Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 395.8116,\r\n \"serviceTime\": 138.3347,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"55e3ed79-b861-4c0c-b9cf-2731e38ebe49\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:12.9114949Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5981,\r\n \"serviceTime\": 44.6544,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cb905ccf-b832-4341-ae8c-e73760282cfc\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:17.9854083Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7808,\r\n \"serviceTime\": 44.5336,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a63e0a33-df0d-4cbb-8cba-b86fa1f48d11\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:23.0458301Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2563,\r\n \"serviceTime\": 45.0255,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5d3e95cd-1791-4e36-87f5-c0ff7093ca60\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:28.1036528Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.112700000000004,\r\n \"serviceTime\": 44.7856,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5c5316cb-a3be-46dd-97b3-52e77f029402\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:33.1857056Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.8211,\r\n \"serviceTime\": 44.462700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0e0580df-1f3b-4e22-9f36-78a8ea641544\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:38.2480569Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.973400000000005,\r\n \"serviceTime\": 44.6374,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6d14612d-241f-44af-b95a-e5131ce360c1\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:43.2978427Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0844,\r\n \"serviceTime\": 44.7184,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f282f3d1-0f7a-48f2-a662-a19019eeda32\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:48.3426107Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.154,\r\n \"serviceTime\": 44.7695,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"09e66ac1-a0ed-4783-980b-64ec0f4eeb9f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-10-27T22:41:53.3968882Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.251200000000004,\r\n \"serviceTime\": 44.902,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"379b3d5a-225f-401d-9937-45268f174ed1\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:12.8515217Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 398.1062,\r\n \"serviceTime\": 121.47330000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"45aa1ba8-65ee-4cf3-9094-f8e4731317ae\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:18.2987239Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 304.712,\r\n \"serviceTime\": 303.6884,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"74b03343-b1e5-4a6b-8679-a055013122cb\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:23.6335632Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.173100000000005,\r\n \"serviceTime\": 44.8816,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1a12e39f-4e6c-4c69-b9fe-e1d8bb81b3e2\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:28.7087207Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.9981,\r\n \"serviceTime\": 44.682500000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c6bb88f6-ad1a-424f-9714-37918141764f\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:33.7837016Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 463.56120000000004,\r\n \"serviceTime\": 463.23510000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0870e32b-0000-48d1-b472-8d343479e5d0\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:39.2839143Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0754,\r\n \"serviceTime\": 44.7648,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c1105a07-e831-43f1-b722-47dcf61da910\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:44.3328951Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0873,\r\n \"serviceTime\": 44.7849,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"3e421e48-4044-4d1a-acce-e4005cae6486\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:49.4186295Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.1498,\r\n \"serviceTime\": 49.7826,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"19f7d303-d6e0-4bd7-b287-f37576bf1dc1\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:54.5025262Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0163,\r\n \"serviceTime\": 44.7778,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"de832bf4-a658-4d75-8bd2-3302d72db1ef\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2017-11-06T17:34:59.5588223Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.624300000000005,\r\n \"serviceTime\": 45.3185,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"721cb51e-5606-4101-a022-faba581564db\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:02.5022138Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 406.3157,\r\n \"serviceTime\": 119.3263,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"74e3377a-327f-41b6-9a13-76d0221a8977\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:07.9600002Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.9132,\r\n \"serviceTime\": 50.7672,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"133e2c6d-7015-4f61-81d8-0cfd3429a091\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:13.0344772Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.8297,\r\n \"serviceTime\": 50.5576,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6ab19885-206d-45aa-a50b-fa19b2d87fcc\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:18.0968121Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.256600000000006,\r\n \"serviceTime\": 50.9742,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"bf3ae5ae-2114-4a59-b196-4e169f2fa2eb\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:23.1569668Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 579.7566,\r\n \"serviceTime\": 579.4876,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"d9c168c5-b1de-49fd-8d53-d8d24c39cfce\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:28.7854313Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 52.664300000000004,\r\n \"serviceTime\": 52.272600000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"87621258-32f9-4107-ac3d-51d93151494d\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:33.8648565Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.2584,\r\n \"serviceTime\": 50.965700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1c16ad2f-536d-4ce6-846d-540d4dab7833\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:38.9293607Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.326,\r\n \"serviceTime\": 51.039,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c94e7739-b331-47dc-8fa2-1e7148e1c371\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:44.0160642Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.8968,\r\n \"serviceTime\": 50.620000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b25460c2-b0f2-4668-8bf6-44fc38d54984\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-09T02:04:49.0962158Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 760.6194,\r\n \"serviceTime\": 760.28780000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fe26f0d9-77c6-4bc7-b8f1-b45f61a61137\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:45:54.291443Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 447.8064,\r\n \"serviceTime\": 156.6904,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"be9d3d9b-9821-4c77-bb34-5722653f77da\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:45:59.8117528Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 52.520500000000006,\r\n \"serviceTime\": 51.216300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5c39b007-502b-4d70-9b48-e363c7892700\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:04.8818152Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.060700000000004,\r\n \"serviceTime\": 50.7376,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"065879c8-1961-45bf-93be-0fabc796d17a\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:09.9448677Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.394000000000005,\r\n \"serviceTime\": 51.072500000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2429bbb2-1974-4ab8-ace2-befd9901703a\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:15.0190147Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.4009,\r\n \"serviceTime\": 50.9833,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"bd589320-cae9-413e-881f-5c233f742a03\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:20.1146928Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.2235,\r\n \"serviceTime\": 50.929700000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"58c5347a-5bbf-47d5-921d-7dfc3cb14f9c\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:25.1753919Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.179500000000004,\r\n \"serviceTime\": 50.883,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"bcc7ce2b-4bbd-4db2-ac7c-ba8a7be759ee\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:30.2288888Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.2971,\r\n \"serviceTime\": 50.9486,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4fe954f4-aa2d-48cf-8c96-b7d0ea06c43f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:35.3073287Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.7498,\r\n \"serviceTime\": 50.442800000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"14115e94-2416-4358-844a-d617eb10759f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-16T20:46:40.3737098Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.274100000000004,\r\n \"serviceTime\": 50.985800000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"24c81203-6f66-4056-8b68-50b57f849a90\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:08.3974551Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 447.3483,\r\n \"serviceTime\": 144.6286,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"05d73db7-4653-4a01-8a81-d1bf02a07f72\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:13.8954512Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 52.0107,\r\n \"serviceTime\": 50.919000000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0597cc32-56fe-47ca-a8ad-de12e4ff472f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:18.9746185Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.372800000000005,\r\n \"serviceTime\": 51.086400000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f0d72091-3180-401b-bf92-8fb6f01be83b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:24.0289678Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.718500000000006,\r\n \"serviceTime\": 50.7085,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"97bebc68-9c36-41e4-bd5f-188769f329cd\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:29.1060524Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.877700000000004,\r\n \"serviceTime\": 50.586600000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"af2c65e6-4b40-4af1-b172-cedc7e75479b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:34.1860982Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.189,\r\n \"serviceTime\": 50.916000000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c86fa959-9dc2-47ee-8f28-b07ec9570b29\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:39.2746173Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.7864,\r\n \"serviceTime\": 50.5264,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9919152e-7844-4725-9c35-fc0f75977584\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:44.3392177Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.9097,\r\n \"serviceTime\": 50.583200000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6e237b1e-1c31-42f1-8f74-69b8b48631b9\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:49.4107185Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.0702,\r\n \"serviceTime\": 50.737,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"04bc3d37-875c-46f9-9d39-1a59846c56f3\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2017-11-30T18:06:54.5854392Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 81.8165,\r\n \"serviceTime\": 81.2599,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0e76f31e-e2a3-456a-9f84-95f0ee1e1f08\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"13.84.222.37\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2017-12-18T23:59:27.7090827Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 605.1213,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"880542da-04db-4c61-908a-e4935fb7b365\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"24.16.12.23\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-02-17T01:48:26.5103607Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1408.3314,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"4f11a600-28f9-4a7a-8320-081d065b7e6f\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/favicon.ico\",\r\n \"ipAddress\": \"24.16.12.23\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-02-17T01:48:28.1168562Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.77660000000000007,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"03778e13-21a9-4be7-aa61-17f19e3eadbe\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:23:35.6396071Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 438.93210000000005,\r\n \"serviceTime\": 122.5634,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c0c6f122-0a6c-425c-a5dd-430cce1af78c\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:23:41.138847Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 321.0648,\r\n \"serviceTime\": 320.0695,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1211378f-19ca-47e0-9f76-545872c192ca\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:23:46.4925007Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.0548,\r\n \"serviceTime\": 44.8068,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4c651dd8-08a7-4994-a876-961508b6c297\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:23:51.5553723Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.4615,\r\n \"serviceTime\": 44.2085,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c6bb068f-f3e5-409e-8e7d-90d2acdfbb41\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:23:56.6182093Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 552.9133,\r\n \"serviceTime\": 552.6203,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"32203413-afe7-48c5-ab74-eaf8cc06db00\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:24:02.2014953Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.915400000000005,\r\n \"serviceTime\": 45.6299,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"79fb3924-de3d-4763-bd43-609c53fbc025\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:24:07.2691159Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.458600000000004,\r\n \"serviceTime\": 45.2472,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"3be65a62-127d-4f6f-9cf9-8906e0d9806f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:24:12.3319698Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.395700000000005,\r\n \"serviceTime\": 45.158300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"3e70b19d-04e0-481a-836d-d4da94d13f2b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:24:17.3864336Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.1896,\r\n \"serviceTime\": 44.9606,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7ead71cb-1fd5-48b8-abda-24987b01ba6b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-02-17T02:24:22.4469264Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.124500000000005,\r\n \"serviceTime\": 44.8917,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e8b376a5-6b75-45fe-9d3f-bd58215b2f53\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:13.4598791Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 501.97150000000005,\r\n \"serviceTime\": 138.74790000000002,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b02d842d-04f5-4719-8293-a1ed0f51a85d\",\r\n \"requestSize\": 247\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:19.0300682Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.459500000000006,\r\n \"serviceTime\": 44.4287,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6b4f1c3e-c350-4201-89b2-4459daf496b1\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:24.1198522Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.3566,\r\n \"serviceTime\": 44.1545,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9aa3334f-e466-4673-ae3e-fe09d22ce527\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:29.172766Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.6377,\r\n \"serviceTime\": 44.3374,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8e651eeb-8eb8-4a4f-adda-cfd02927fc84\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:34.2621685Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.452400000000004,\r\n \"serviceTime\": 44.1133,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c5233ae6-955b-4df0-892c-fb2f55b28742\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:39.3416657Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.107800000000005,\r\n \"serviceTime\": 44.7882,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7836664d-4ce6-4361-a6d7-1e98ec4211e3\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:44.419073Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.864200000000004,\r\n \"serviceTime\": 44.5897,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9dddfb4c-64d5-4f01-8150-ebbe0965c660\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:49.4910192Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7023,\r\n \"serviceTime\": 44.4453,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4d462826-534a-4fba-943b-e276b25cbd32\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:54.5707344Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7397,\r\n \"serviceTime\": 44.4947,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fe68fa2b-ceb9-4c00-a473-272a3ca5f8fb\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"191.238.241.97\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 286,\r\n \"timestamp\": \"2018-02-21T18:28:59.6347893Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.7686,\r\n \"serviceTime\": 44.5283,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"400b2c7f-174b-45c7-a1df-938d94df870b\",\r\n \"requestSize\": 223\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/create-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"POST\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource\",\r\n \"ipAddress\": \"52.173.77.113\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 8846,\r\n \"timestamp\": \"2018-03-06T00:21:22.6262928Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1669.5748,\r\n \"serviceTime\": 182.3805,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070001\",\r\n \"requestId\": \"16284a1e-1168-4673-abbd-f72cc145a756\",\r\n \"requestSize\": 416\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource-cached\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource-cached?param1=sample\",\r\n \"ipAddress\": \"52.173.77.113\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 673,\r\n \"timestamp\": \"2018-03-06T00:21:37.8407091Z\",\r\n \"cache\": \"miss\",\r\n \"apiTime\": 664.3346,\r\n \"serviceTime\": 44.769000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070001\",\r\n \"requestId\": \"01dc66d3-53ed-4b10-9e45-55a3ae8372da\",\r\n \"requestSize\": 215\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=sample\",\r\n \"ipAddress\": \"52.173.77.113\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 623,\r\n \"timestamp\": \"2018-03-06T00:21:58.101651Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.5204,\r\n \"serviceTime\": 49.043600000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4e3615c3-1a50-4920-b133-e695dfe4da35\",\r\n \"requestSize\": 215\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=sample\",\r\n \"ipAddress\": \"52.173.77.113\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 619,\r\n \"timestamp\": \"2018-03-06T00:22:36.7630151Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.263600000000004,\r\n \"serviceTime\": 43.6993,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b6fbdef2-ecb9-45ca-8c0a-2f88400417d5\",\r\n \"requestSize\": 215\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=sample\",\r\n \"ipAddress\": \"52.173.77.113\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 621,\r\n \"timestamp\": \"2018-03-06T00:22:37.6557904Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.1075,\r\n \"serviceTime\": 44.6768,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"81643b9c-ac13-462f-afcc-4c0dae5cc703\",\r\n \"requestSize\": 215\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/modify-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"PUT\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource\",\r\n \"ipAddress\": \"52.173.77.113\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 623,\r\n \"timestamp\": \"2018-03-06T00:22:56.632653Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 44.5135,\r\n \"serviceTime\": 44.0843,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5daff206-55b4-4571-a5a7-369cea088dea\",\r\n \"requestSize\": 220\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:57:32.9983134Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 443.74870000000004,\r\n \"serviceTime\": 145.0343,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e540dbd9-e5a7-426c-86bd-694f87199028\",\r\n \"requestSize\": 245\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:57:38.5123495Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.449600000000004,\r\n \"serviceTime\": 46.354600000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"db78ea4b-3d6e-4121-a1b9-f8b30a499891\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:57:43.5899145Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.097300000000004,\r\n \"serviceTime\": 45.6918,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fb222074-4564-4414-94ef-a6f124b8e2ca\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:57:48.7050746Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.3292,\r\n \"serviceTime\": 44.961400000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"130adf1e-d245-4fd0-9380-7ece2ce9833c\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:57:53.7972278Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 49.8138,\r\n \"serviceTime\": 49.458600000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"47dc4b3f-67df-46d4-97cc-4f39bc350e8c\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:57:58.876912Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.6143,\r\n \"serviceTime\": 45.1518,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"74990ea2-3bc5-4c63-b25d-1074cc96a8a7\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:58:03.9616432Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.1632,\r\n \"serviceTime\": 45.816,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f26abcdf-a2b4-4ff7-83d8-f11e6c3ea545\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:58:09.0238097Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.3892,\r\n \"serviceTime\": 45.0384,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7b84d569-7a56-4b7c-97ad-46cb14054eb4\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:58:14.0982217Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.578900000000004,\r\n \"serviceTime\": 45.193000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1f204982-61ff-4df5-b86f-ef7f98e59000\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-17T05:58:19.1552064Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.3791,\r\n \"serviceTime\": 45.0306,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e1bb7279-1a3f-4d2c-aba4-e28f09895072\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:03:33.9046597Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 502.92010000000005,\r\n \"serviceTime\": 177.2782,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c7037320-8d09-4e2f-a844-88225032fbe1\",\r\n \"requestSize\": 245\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:03:39.4843419Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.4177,\r\n \"serviceTime\": 45.1438,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1358b55e-c9f9-4ff2-93aa-6e540e35b84c\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:03:44.556317Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.4699,\r\n \"serviceTime\": 45.124100000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1754c678-627a-4a22-9d0f-b2829888c82d\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:03:49.6190272Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.295500000000004,\r\n \"serviceTime\": 44.9345,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"95de0112-fc89-46ce-ad60-1a7b57f57389\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:03:54.6793269Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 47.0069,\r\n \"serviceTime\": 46.665200000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2ef549e4-3e35-4266-9a6f-ee3111b621d1\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:03:59.7603364Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.4697,\r\n \"serviceTime\": 46.1246,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9ce3db5d-ba5c-4711-9a55-ec531c6a2e59\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:04:04.8251708Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.4183,\r\n \"serviceTime\": 45.087,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cec18c96-483b-42d9-8b34-86f8db046e91\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:04:09.9111691Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 47.5384,\r\n \"serviceTime\": 47.21,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"1b78809b-42b8-40e2-a7e3-2ad9814f21bd\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:04:14.9921966Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5717,\r\n \"serviceTime\": 45.2254,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cb23fb4f-40c3-4168-abfa-bbe0b3f2329d\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-21T20:04:20.1094454Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.8678,\r\n \"serviceTime\": 45.172900000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5c733927-ed33-43c9-8d15-9e7ff4b23aca\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:26.0236456Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 438.7103,\r\n \"serviceTime\": 130.7047,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"955ce345-4a88-4dcf-8f53-65b2a9a2ea4d\",\r\n \"requestSize\": 245\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:31.5211793Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.677,\r\n \"serviceTime\": 45.3455,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8cef10e2-6974-451b-8453-d48a02eccab1\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:36.5806191Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2734,\r\n \"serviceTime\": 44.9441,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"2c894147-cc34-4b51-8890-b5bf86778d1a\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:41.6501915Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2291,\r\n \"serviceTime\": 44.9056,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c0d3a5e2-37fd-4594-99d3-85d8691b134a\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:46.7141306Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.458600000000004,\r\n \"serviceTime\": 45.0733,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"084d776b-a988-4f18-9465-42536420ffb9\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:51.7831264Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5916,\r\n \"serviceTime\": 45.2291,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b91c78ff-ab03-46f7-a8c3-2ff25bfcc304\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:46:56.8560678Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.5809,\r\n \"serviceTime\": 45.2077,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"696700a7-778f-4276-8ed6-d023d598dacf\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:47:01.9197546Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.8277,\r\n \"serviceTime\": 48.481700000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8777ac4b-613e-49c1-853c-b5b1028aa315\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:47:06.9791547Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.7539,\r\n \"serviceTime\": 45.400000000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"721fbbfd-1955-4434-91ab-960882514591\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-03-23T01:47:12.0699932Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.6925,\r\n \"serviceTime\": 45.338300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ebda7389-34e3-45e4-8826-df94a92c2658\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:02.4243741Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 535.9414,\r\n \"serviceTime\": 156.6464,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"81e0394e-dc87-4692-ae36-7a6f706f50e0\",\r\n \"requestSize\": 245\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:08.0829756Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.375600000000006,\r\n \"serviceTime\": 45.0304,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"03add177-ccd6-4a46-957d-67e86502a1d1\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:13.1631893Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 803.5901,\r\n \"serviceTime\": 803.14410000000009,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9c7efa9e-fb79-4738-9b72-8d4dbe94d435\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:18.9996826Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.765,\r\n \"serviceTime\": 45.3701,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0cf7de42-5d73-4074-a4c2-37aa4e2b88a4\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:24.0698632Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.2269,\r\n \"serviceTime\": 45.819700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"791866cb-ecf5-4ede-ae5e-021cefe7a5ef\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:29.1294056Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.4129,\r\n \"serviceTime\": 45.024100000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4ee789cf-3f3c-4c6b-b116-b8c441608a80\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:34.2114081Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.914100000000005,\r\n \"serviceTime\": 46.4722,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f9ae6dd3-17d3-42b4-bbed-e7e823a5514c\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:39.2798684Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.478300000000004,\r\n \"serviceTime\": 45.0461,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"73ae6962-817f-4de3-ac82-da1faea53c89\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:44.3449364Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.371900000000004,\r\n \"serviceTime\": 45.930800000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8c51fa05-d73d-4af1-b739-91926aa0c028\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-05-30T19:22:49.4146075Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.711800000000004,\r\n \"serviceTime\": 45.2866,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e0a9c6b6-2260-483c-ad9f-b975d91beb0f\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:10:40.2716749Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 489.8204,\r\n \"serviceTime\": 149.1651,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"897a4fd5-e68b-46d4-94f8-dc05ad625a4e\",\r\n \"requestSize\": 245\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:10:45.8822351Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.797000000000004,\r\n \"serviceTime\": 45.450900000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f114bbe9-503a-4e13-b39d-3d88b2b9043d\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:10:50.957935Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.1867,\r\n \"serviceTime\": 49.771,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a71f5df5-ba3f-4e0d-9777-bf02d4b380ed\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:10:56.0170563Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.2212,\r\n \"serviceTime\": 47.8034,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"14482ec2-c42a-422f-a9d6-cc53850460a8\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:11:01.0963903Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 47.4153,\r\n \"serviceTime\": 46.969300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"3e7e41ca-b0fa-4334-ac74-8859b88e735c\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:11:06.1468514Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.6298,\r\n \"serviceTime\": 45.1113,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0a5a6b68-c871-4164-aa8e-20eb07b8d961\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:11:11.2160257Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.6511,\r\n \"serviceTime\": 48.2061,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"64f23972-143b-41f9-a97a-37dc5ea9124f\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:11:16.281159Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.0298,\r\n \"serviceTime\": 45.623400000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"91bc16e9-61ff-4bd5-ae25-57e90deb9bcf\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:11:21.3623845Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 58.850300000000004,\r\n \"serviceTime\": 58.3789,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"34987980-3cd4-4fb4-840d-cfe276ac8d8a\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-06-02T03:11:26.4481834Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.6161,\r\n \"serviceTime\": 45.2169,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"fdb4022e-0219-4593-8b87-9d292f15a31f\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:28.3247795Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 476.46540000000005,\r\n \"serviceTime\": 128.60150000000002,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"250bb706-bd98-438b-8cf2-6f30094d6d8d\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:33.91856Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 53.106300000000005,\r\n \"serviceTime\": 49.315000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"264c826f-f970-4552-be42-8cf188f24c73\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:38.9896219Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.3308,\r\n \"serviceTime\": 44.9335,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"81b1bbdf-45e2-47cb-8c15-28989ebf7b7e\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:44.0647053Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.376400000000004,\r\n \"serviceTime\": 45.9745,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"0cd86352-bc22-45a5-a648-b6e1a7b8f8e2\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:49.1255782Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.4392,\r\n \"serviceTime\": 45.0234,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"405e79de-4d4e-4103-be33-f13bdb0d236a\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:54.1730088Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.9938,\r\n \"serviceTime\": 45.5762,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e71b961a-22ab-4d2c-a176-523e9697f1e6\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:48:59.2586789Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.094,\r\n \"serviceTime\": 45.6379,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"6b173c88-ef2e-4581-9fed-218e68b79b92\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:49:04.3181386Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.1668,\r\n \"serviceTime\": 45.766200000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c906f257-d58b-4730-9335-7785b0319cf4\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:49:09.3826289Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 46.046400000000006,\r\n \"serviceTime\": 45.626000000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"34c34007-da5f-497b-abf7-17147be45107\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-06-18T23:49:14.464029Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 47.544000000000004,\r\n \"serviceTime\": 47.1415,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ea403222-34ef-4741-9ebc-30f552303bac\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"27.59.69.52\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-08-06T20:29:40.3623719Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1219.9305000000002,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"07805b1a-a524-4b1f-a949-39414d54c991\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/favicon.ico\",\r\n \"ipAddress\": \"27.59.69.52\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-08-06T20:29:41.9247481Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 2.5673,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"c117e389-c4f2-4670-a525-acbcdb9826e3\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:00.2393123Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 785.66410000000008,\r\n \"serviceTime\": 146.6279,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"469a8730-1103-45a0-ac19-61655a18716d\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:06.1770014Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 53.764500000000005,\r\n \"serviceTime\": 51.7291,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"21e9387e-a338-4e5a-acea-05ad3bcbfa2d\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:11.2298054Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.0995,\r\n \"serviceTime\": 50.6897,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ed2459cc-f379-4c3f-a170-50e9ec35c537\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:16.3081588Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.1344,\r\n \"serviceTime\": 50.7169,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"5addf582-1a44-465b-8201-777e738d12ea\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:21.3754823Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.6274,\r\n \"serviceTime\": 50.233900000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7fa2e2d0-6371-412c-abe7-9ee0567fdcdb\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:26.466235Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 52.1858,\r\n \"serviceTime\": 51.740300000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"79281230-3ba8-46e3-8dc2-659d41527fee\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:31.5419775Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.741600000000005,\r\n \"serviceTime\": 51.341300000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b6c0adcf-15e1-4748-aef6-9c7c3ae5bac5\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:36.6064268Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.811600000000006,\r\n \"serviceTime\": 50.3907,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"29e627be-6942-4f2b-8dc1-e3f5ad4f0626\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:41.6841436Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.139,\r\n \"serviceTime\": 50.7409,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"85e3d100-188a-4140-ac4c-08fd60fd50e5\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-22T02:10:46.7524891Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.3316,\r\n \"serviceTime\": 50.8864,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9f37c539-b54e-4b83-b7e3-de4ae0045479\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/create-resource\",\r\n \"productId\": \"/products/starter\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"POST\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource\",\r\n \"ipAddress\": \"13.91.254.72\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 9082,\r\n \"timestamp\": \"2018-09-24T18:19:02.1258594Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1218.5258000000001,\r\n \"serviceTime\": 179.00400000000002,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070001\",\r\n \"requestId\": \"399ee28e-22c9-4460-b37a-45e280172147\",\r\n \"requestSize\": 709\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:17:43.6900176Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 840.3682,\r\n \"serviceTime\": 138.6919,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c2d22d8b-7c2c-4083-bb31-6022a9433936\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:17:49.8574456Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.5322,\r\n \"serviceTime\": 45.173300000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e123a6ac-3cde-4d76-b424-13fae9e9695a\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:17:54.9248553Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.200700000000005,\r\n \"serviceTime\": 44.7513,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"9c402537-9cb8-47fc-8711-53bc6be998c8\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:17:59.9689145Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2036,\r\n \"serviceTime\": 44.8121,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"bca90e96-87db-4eba-9ced-f358a7f854b5\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:18:05.0346243Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.332300000000004,\r\n \"serviceTime\": 44.7917,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"353d8378-738f-489a-8694-0aca5e5d319b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:18:10.0906729Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.4087,\r\n \"serviceTime\": 44.945100000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f3dcdce1-1965-4612-acc6-8f889680a33a\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:18:15.1604656Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 48.8284,\r\n \"serviceTime\": 47.5934,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c129aada-baed-4888-a7ab-015bbda79145\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:18:20.2362852Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.2582,\r\n \"serviceTime\": 44.7824,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"07861b4a-e5ad-4b14-a688-e3ea432dd1bb\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:18:25.2813074Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.3393,\r\n \"serviceTime\": 44.8344,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e30d99eb-bce0-4725-b885-d2ee2cc138cb\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-09-25T17:18:30.3524683Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 45.023900000000005,\r\n \"serviceTime\": 44.6144,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"7c7953c3-123e-434a-a7cf-c1d4c495f98c\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:02:51.7475599Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 620.2874,\r\n \"serviceTime\": 138.6122,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"848cb6bb-4c0a-466e-8e80-65b79db6876b\",\r\n \"requestSize\": 245\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:02:57.5008919Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 654.3816,\r\n \"serviceTime\": 647.2155,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"39be53e3-03e1-446e-a536-9bd8f066b452\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:03.1927387Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.0268,\r\n \"serviceTime\": 50.6313,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"8c0ffb31-77f0-4bdd-bde7-7fc412118acc\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:08.2554062Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.3784,\r\n \"serviceTime\": 50.9587,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"41a4321d-8a6a-41ee-8b61-c004ca1a9892\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:13.3198552Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.243,\r\n \"serviceTime\": 50.8222,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"4741958d-7f96-4555-8571-f11e415f535b\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:18.3944268Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.1293,\r\n \"serviceTime\": 50.7235,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"a8c2b987-efc3-4c7d-9073-ba05f0ec7491\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:23.46343Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 161.0886,\r\n \"serviceTime\": 160.6605,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"08de177a-122b-4f06-9e7e-8eb855d6acb1\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:28.6465235Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.457800000000006,\r\n \"serviceTime\": 51.0703,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"094ba009-0cd9-45b5-a8cc-00b4359f3499\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:33.7234559Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.2781,\r\n \"serviceTime\": 50.869400000000006,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"e306581c-31b1-4733-bef6-1e3c4ec6c4db\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"13.84.189.17\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 284,\r\n \"timestamp\": \"2018-09-25T23:03:38.7909047Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.5176,\r\n \"serviceTime\": 51.0685,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"ba34bfa1-bf7f-4df4-930c-020dea6e6ba0\",\r\n \"requestSize\": 221\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:19:48.1646749Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 490.04760000000005,\r\n \"serviceTime\": 119.76060000000001,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"d8b45b66-63da-4a13-9bae-faf64e14fab2\",\r\n \"requestSize\": 246\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:19:53.7851913Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 52.289,\r\n \"serviceTime\": 50.9699,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"f6d2eba2-9b9e-4b10-8093-90654f427f51\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:19:58.8425343Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.5612,\r\n \"serviceTime\": 51.146100000000004,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"cddd6b2d-b97f-4256-8dbb-060fe4379f1c\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:03.9342563Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.9236,\r\n \"serviceTime\": 51.5127,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"b50f33fb-92fd-44bb-8349-db7a85314b31\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:09.0158677Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.0047,\r\n \"serviceTime\": 50.5762,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"64ff8c51-43ce-403c-8272-bb308223718b\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:14.0903047Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.887,\r\n \"serviceTime\": 50.4718,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c7827c41-de65-4dbc-9ade-cae1501dc743\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:19.1497844Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.3555,\r\n \"serviceTime\": 50.904700000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"c08014fc-130f-4dc2-81ab-7a7c99402b1d\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:24.212013Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.1325,\r\n \"serviceTime\": 50.5178,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"558bfd05-6600-4be3-accf-b0a119d8df6f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:29.2741763Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 51.563,\r\n \"serviceTime\": 51.1619,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"04732f6b-81dd-434a-910e-34ddc774238f\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/echo-api\",\r\n \"operationId\": \"/apis/echo-api/operations/retrieve-resource\",\r\n \"productId\": \"/products/unlimited\",\r\n \"userId\": \"/users/1\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/echo/resource?param1=pingtest¶m2=pingtest&subscription-key=5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"ipAddress\": \"23.96.224.175\",\r\n \"backendResponseCode\": 200,\r\n \"responseCode\": 200,\r\n \"responseSize\": 285,\r\n \"timestamp\": \"2018-10-03T00:20:34.3497066Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 50.871,\r\n \"serviceTime\": 50.470600000000005,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/59442dab78b6e60085070002\",\r\n \"requestId\": \"685fa1b7-5801-4cf0-9785-a397ad5f07b4\",\r\n \"requestSize\": 222\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.79.57\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-10-28T04:48:56.5634549Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1059.0415,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"42e69a7a-d9ef-47de-a5b0-3ef19b97f87f\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.79.57\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-10-28T04:48:57.7158893Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 2.0246,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"128cea25-81cc-4988-86a7-776ee8a1bc29\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.79.95\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-10-28T05:14:04.8737942Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4081,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"4f1c5d2a-8f24-48a9-bba1-0f911633da34\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.79.95\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-10-28T05:14:04.9262238Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.35200000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"ee568d27-7a34-4496-afd8-650b904f0d70\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.207\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T00:07:09.9908045Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 205.0687,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"72bfd031-f4ae-4cb2-a8ab-f5f710c9a468\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.207\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T00:07:10.2322898Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3425,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"694037c9-a8d2-40c5-9582-5852fd72e9da\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.75.135\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T00:16:58.6234489Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.7294,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"005b9309-5246-4206-853d-18c801104550\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.75.135\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T00:16:58.6547003Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3128,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"f210e1f4-8da0-481c-ba33-ab5b1ca277d7\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.207\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T13:28:36.9594385Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4398,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"07a56ceb-4a21-4d51-881d-bf71ffe0cbf2\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.205\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T13:28:37.0844207Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3906,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"bd76e6a2-82de-4817-8f01-f0821f0b58f1\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.75.137\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T13:38:05.3110496Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.36610000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"95afa93c-788d-4ee7-a1ce-3f7a2365e1dc\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.75.137\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T13:38:05.3603514Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.35600000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"513ba4f4-7cdd-440f-8a8e-273a6d9b7899\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.205\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-02T23:08:08.2174122Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.5786,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"abd05b17-fd5e-41a5-9b6c-d35b76edaaaa\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.75.137\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-03T00:15:58.9637274Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4066,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"f4bd419f-8980-4a58-98e2-833cccecb437\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.23\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-19T03:33:45.3499353Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1392.9443,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"69ce781c-b3a0-4056-9dc0-518af93b5db7\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.21\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-19T03:33:46.925386Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.5642,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"172ae5cb-5666-48c8-b1ba-125e4a00e40a\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.2\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-19T03:35:39.6061689Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3914,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"68a2aa66-cdf7-4a9e-8440-a061f65e7092\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.4\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-19T03:35:39.8424776Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3668,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"12496ed5-3ce7-49a1-8cd0-84bfb1515fa4\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/favicon.ico\",\r\n \"ipAddress\": \"131.107.147.54\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-20T17:00:06.9599649Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 848.85020000000009,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"aaffe61b-aefa-4ef1-b557-c3bd6303e054\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/favicon.ico\",\r\n \"ipAddress\": \"131.107.160.70\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-21T19:09:22.6319939Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 784.0877,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"974f95b4-d432-49a4-a5bb-81968cde4544\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.175\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-23T05:53:02.7411272Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 5.134,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"ec984d2b-d807-4651-b7a3-14e882d63ff8\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.177\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-23T05:53:01.4807905Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1156.3908000000001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"8cb1e087-ce0d-4645-aeab-15b1db7634bc\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.2\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-30T14:47:17.6551027Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1471.3045,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"73dba88c-ab47-4b23-b008-7961750e9004\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.6\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-11-30T14:47:19.3190094Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.1173,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"40f0cbc2-8907-4a19-bfc4-ec605cbaa063\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.79.236\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-01T00:36:05.2590774Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1198.5423,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"b1c44cfc-1c8c-43b3-8a62-94212e31caac\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.135\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-07T06:36:54.0336636Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1934.9740000000002,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"20ce2c02-1fbc-4e9a-9dc3-177c5c333516\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.133\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-07T06:36:56.1057899Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.2423,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"be784018-6aa4-4a71-8b25-db3d310b56d6\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.209\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-12T04:24:54.8665058Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.318,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"b63295cb-3da4-408a-aa41-8514d8cbd288\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.209\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-12T04:24:52.256733Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 2568.2388,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"87c9d9a8-46f2-4775-98aa-fc6a9ba785ad\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-12T19:50:54.6965847Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 201.3605,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"3edd5e9b-2ff1-43d6-b168-492f131d407a\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-12T19:50:54.9816892Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.34440000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"e62be1ca-92f6-4140-bf04-bf01e4d5c230\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.155\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-13T08:24:30.0870791Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 2261.6673,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"a440e471-ed1d-45b1-a588-57caa1a80fe1\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.155\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-13T08:24:32.3999542Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 3.5024,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"70b0bf8c-4842-4c70-8477-41fbe3e99ec0\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.153\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-14T06:50:44.7086184Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 236.478,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"3db5fa8e-690e-48ec-a794-0c979a1798de\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.155\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-14T06:50:45.2374574Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4097,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"de3d99ce-eff6-4014-a122-c0806c16bd49\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.73.29\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-20T21:26:37.4142938Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1166.4887,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"2e5eeb08-80ed-4607-9be4-3a6501655801\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.73.28\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-20T21:26:38.6855534Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1183.6191000000001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"bc071fcb-1edb-4f6b-b84d-8fab125abf00\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.209\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-25T13:59:35.4833806Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1291.6733000000002,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"b99fad8d-437d-45bd-86a6-989de99c1f28\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.205\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-25T13:59:36.9836297Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.2974,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"655ed22a-ecd9-487a-8547-3efc9af2b0d5\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.157\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-30T22:58:15.1692299Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1398.3948,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"abf606ae-11f4-4a12-aa3a-dfdc15149eae\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2018-12-30T22:58:16.7557546Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.0701,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"723cb3fa-6c31-4d6c-9d72-d58dfb5a62c1\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-06T07:56:15.5579037Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1656.3501,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"e82bb153-100f-4191-97c5-2607a85bc777\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.157\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-06T07:56:17.4492568Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.1127,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"64e68428-9ade-43cb-b68d-328040af6762\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.73.29\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-14T05:59:03.3064592Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1233.4746,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"937bd6f8-fbb2-4fd7-85c0-7707c9a74972\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.73.27\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-14T05:59:11.5869906Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.0654000000000001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"c3d05cb9-130c-4144-b8dc-e532c5bb1492\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.113\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-15T12:53:44.1910452Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1626.9659000000001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"0f81b200-77d1-46bc-a56a-3047494c8c61\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.109\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-15T12:53:45.9979089Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4339,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"32037b47-f1c0-4e30-9053-1446a261d0d9\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.111\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-19T20:55:14.0299211Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 29.000500000000002,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"a80f8e2b-4a23-42df-a5dc-6c5f567151af\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.109\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-19T20:55:14.8462111Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3936,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"7776a947-0cfd-4ed4-a6d0-0b22feb432dc\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.151\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-25T04:54:15.9599298Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 862.2427,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"523b5c3c-d2f0-4c34-9279-89c961602981\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.155\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-25T04:54:17.0380664Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.0547,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"77ad4546-121b-4146-8a91-46417403fad5\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.157\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-29T19:16:40.8507321Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 948.96250000000009,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"f0e90d60-4c25-4b0d-893c-e0fcece680fc\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.158\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-29T19:16:40.1435871Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.38420000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"4bd73253-074d-45ee-9d85-42d83de83283\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.157\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-30T05:10:23.8522476Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4176,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"12c89dc5-f645-43b4-b352-24b4bab77a3b\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-30T14:09:20.8225521Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 4.4275,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"0ad134c1-ad41-4fc5-b8e4-2e23aea35409\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-01-30T14:09:21.3089962Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.38320000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"e31bbc77-5973-40e8-8afb-709316162cd3\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.155\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-05T19:08:18.9749957Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 898.4899,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"613b1920-5f3a-4104-8b9d-a1dd2d4bd5d4\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.153\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-05T19:08:20.0686957Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 937.22790000000009,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"e7d5d92f-cd1b-48ed-9bfa-ea9dbc016339\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.153\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-06T06:12:56.1770254Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 2.9601,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"7b3a6406-5b12-4642-8ff6-adfbccce856d\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.153\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-06T17:07:07.6751833Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 3.0537,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"b7b0c470-93c8-4137-b15a-85c48d5d1d9d\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.151\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-06T17:07:07.9094418Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3542,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"c732f1ed-9dcd-4e0c-9db2-cde7773d3577\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.113\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-12T23:42:01.1676845Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"23fa546a-5c30-49a6-befb-8a5dff4ef845\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.111\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-12T23:42:01.3551648Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.4455,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"1cb0541c-5663-49ed-84e5-1cd15005e5da\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-13T23:51:31.4547371Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.5057,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"b87325fc-6253-4279-91d4-c74718ffc554\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.156\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-13T23:51:31.5172079Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.341,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"5e7389e8-aa08-456d-a514-4ea62b2e2ae0\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.179\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-27T12:36:03.8821071Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1340.9502,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"555e7d7f-02c7-4f0d-a6cb-2853b17fa0d4\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.179\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-27T12:36:05.2439219Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 8.0977,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"08b7e44a-d921-44f3-b6bc-2e44cae51aa8\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.209\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-27T16:27:29.8478315Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1122.8238000000001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"cb300fd9-681e-4e27-bb96-799d55d30447\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.207\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-02-27T16:27:29.7019097Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.41540000000000005,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"c014a93b-d9e6-4400-a42f-7c90d1474a3d\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.69.179\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-11T15:18:05.3590504Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1037.3471,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"03c6861f-2f2a-4fe1-a54c-68626a0ad994\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.69.183\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-11T15:18:06.5465845Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.9946,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"59ab7961-3e60-4f0c-818d-77d3c53aef84\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.119\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-12T18:27:09.8717598Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3714,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"5dbdb46a-e060-41d2-b65d-77371304d7c6\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.119\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-12T18:27:09.9185767Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.29150000000000004,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"4d4fb036-6018-4397-85ac-1b591ed8ab0e\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.73.29\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-15T03:03:02.5539071Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 998.4266,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"ee43fa27-bcec-4018-80ea-79a6e81bc9b0\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.73.29\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-15T03:03:03.585353Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 8.7083000000000013,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"356ffdce-392c-40d0-9f8f-4e44c41763c5\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.129\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-18T06:02:54.6273481Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 12.2417,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"45ee60cc-a283-49c5-9ac1-ffadd7a9941f\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.129\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-18T06:02:53.486558Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1100.5928000000001,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"52edcbea-8588-48c3-bbf3-2072c14f2548\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.119\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-28T02:42:10.9671769Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 980.5786,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"fa40e3ed-1ed3-418f-bf5c-abf5dc72552d\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.117\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-03-28T02:42:12.1471696Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 830.3429,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"247461fb-6b44-4d4d-a598-a4631369636e\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.64.177\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-04-03T02:44:23.7532668Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1010.0742,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"ef824e5c-99a1-4886-b861-f063757fdcce\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.64.177\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-04-03T02:44:25.347049Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.5324,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"d4302c46-9c81-4a24-980a-ba943b494e3b\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.151\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-04-05T05:24:10.3622424Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 861.87250000000006,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"8624f234-0de2-4b86-aa68-892112caa5b0\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.151\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-04-05T05:24:11.7216314Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 1.1321,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"9688fc16-f088-42f0-8cfa-8ba78ce2064c\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.131\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-04-05T15:21:34.5554395Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.399,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"fb8a85b9-f9bd-4e1f-8faa-968a2979aaab\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice-centralus-01.regional.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.131\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-04-05T15:21:34.5866801Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3371,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"e4429b24-e305-4ea7-b207-1c34e40755fd\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/robots.txt\",\r\n \"ipAddress\": \"66.249.66.153\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-04-05T19:20:01.3389407Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.3855,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"7fec0fd6-651c-4e77-957f-e9c626bdd487\",\r\n \"requestSize\": 0\r\n },\r\n {\r\n \"apiId\": \"/apis/-\",\r\n \"operationId\": \"/apis/-/operations/-\",\r\n \"productId\": \"/products/-\",\r\n \"userId\": \"/users/-\",\r\n \"method\": \"GET\",\r\n \"url\": \"https://sdktestservice.azure-api.net/\",\r\n \"ipAddress\": \"66.249.66.153\",\r\n \"backendResponseCode\": null,\r\n \"responseCode\": 404,\r\n \"responseSize\": 130,\r\n \"timestamp\": \"2019-04-05T19:20:01.3701917Z\",\r\n \"cache\": \"none\",\r\n \"apiTime\": 0.22510000000000002,\r\n \"serviceTime\": 0.0,\r\n \"apiRegion\": \"Central US\",\r\n \"subscriptionId\": \"/subscriptions/-\",\r\n \"requestId\": \"dbafcf6b-d483-44cc-bf5c-04b54e5330dc\",\r\n \"requestSize\": 0\r\n }\r\n ],\r\n \"count\": 391\r\n}", "StatusCode": 200 } ], 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 375b56fe798c..914e41323868 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9d879e7e-9e04-467e-bb0a-97e088e5b29b" + "7a1698dc-b738-42ae-b075-4a407ea6ac31" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:17 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "61462a77-ab47-469e-9f0d-99bd9423459e", - "166b85e4-e6a8-4330-b439-17534c003cc3" + "a678db58-7726-4669-bc87-cc24e86a588a", + "e6136ff9-ecf8-405b-8908-89a71c636564" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "f705c5a8-76ff-4c44-a619-38bc76eb2903" + "316a620a-b745-4bd1-935d-37ac81254e29" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040718Z:f705c5a8-76ff-4c44-a619-38bc76eb2903" + "WESTUS2:20190411T020439Z:316a620a-b745-4bd1-935d-37ac81254e29" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:38 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff7a12f5-563c-4b50-83d1-9380b8a9578b" + "0b608c12-53b9-47dc-9301-1ef94c719845" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:17 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ddeb1d32-4b86-405f-8cdc-3a3b962fc0bc" + "54e69b57-e8ea-4125-9c7a-176c638a5467" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "249fb6a6-163b-46cc-9738-285dbeea927d" + "24d255cb-00d8-402c-bd40-9ae20714ae06" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040718Z:249fb6a6-163b-46cc-9738-285dbeea927d" + "WESTUS2:20190411T020439Z:24d255cb-00d8-402c-bd40-9ae20714ae06" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:38 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,62 +136,62 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWduaW4/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWduaW4/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a3748b9-b70d-4299-a62f-5c91fbf0b1ea" + "8a9d09bc-fb93-4369-b004-9ad7709bbec0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:17 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAYto=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcBs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f46513ea-606a-4c65-87b5-a96b20a45e08" + "136ed8b4-7e17-4d60-8980-f7a2907e4f5a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "436391d4-79bc-4d4d-87e3-dc2081c5c451" + "3545dea4-3bf3-438e-ba6f-b1e4d5f64a38" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040718Z:436391d4-79bc-4d4d-87e3-dc2081c5c451" + "WESTUS2:20190411T020439Z:3545dea4-3bf3-438e-ba6f-b1e4d5f64a38" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:39 GMT" + ], "Content-Length": [ "311" ], @@ -206,58 +206,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWduaW4/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWduaW4/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76b4ce4e-7c4f-496a-85cf-0ab7f366f163" + "a8e7a090-4085-4bb8-ad2b-b538b4620f6b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:19 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZBo=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcEU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eb37062b-c072-4a4d-8c09-cfe983ec6639" + "28146fba-ed28-4332-a6d0-a7c35aa4874c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "5d7e1b0c-5c62-47b8-9c8f-2a3c8f49ae3e" + "97870e12-5012-44b7-8f83-c5595b2f8d01" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040719Z:5d7e1b0c-5c62-47b8-9c8f-2a3c8f49ae3e" + "WESTUS2:20190411T020440Z:97870e12-5012-44b7-8f83-c5595b2f8d01" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:40 GMT" + ], "Content-Length": [ "311" ], @@ -272,22 +272,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWduaW4/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWduaW4/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5ff93da1-841a-4e41-b87f-dc819764cfbf" + "436f3f81-7034-4d15-9d6f-5bd872592b7c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -300,36 +300,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:19 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZBk=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcEQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "efd2eb91-b5c6-4823-a201-90a4e2762528" + "1159e7c9-98f1-4d94-be1a-3a42efb5144d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "361426ba-a69a-45e1-9cd9-289c6cbd1c28" + "c671faa0-62ab-4aca-bcaa-752f8ca5c491" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040719Z:361426ba-a69a-45e1-9cd9-289c6cbd1c28" + "WESTUS2:20190411T020440Z:c671faa0-62ab-4aca-bcaa-752f8ca5c491" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:39 GMT" + ], "Content-Length": [ "312" ], @@ -344,58 +344,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWduaW4/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWduaW4/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ae1fdb1-8819-4012-846a-d5edc7d4d64a" + "8c2e6421-c535-4a40-9985-4566d7f52f5b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:19 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZBkAAAAAAAAAAA==\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcEQAAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "794fdf9e-ea24-4789-b8e3-6481c80f799a" + "dc906fe4-cc01-4972-aa62-22eabb6f801a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "8dcd817f-a462-446a-b752-f850c2f7d447" + "6c4668ee-4c1c-41f2-a4cf-54262133b7a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040719Z:8dcd817f-a462-446a-b752-f850c2f7d447" + "WESTUS2:20190411T020440Z:6c4668ee-4c1c-41f2-a4cf-54262133b7a8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:39 GMT" + ], "Content-Length": [ "0" ], @@ -407,25 +407,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWduaW4/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWduaW4/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ee0e34af-5bd7-450a-92db-7f32b57db2c3" + "1088abfb-b9c2-4e50-8319-1bb5c68ff890" ], "If-Match": [ - "\"AAAAAAAAZBkAAAAAAAAAAA==\"" + "\"AAAAAAAAcEQAAAAAAAAAAA==\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,33 +438,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:07:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89145afb-35fd-42ed-bf85-7b7f8e5ce9d7" + "857576cb-5325-4380-96d4-c675d161fc9e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "ab86a0b1-f1e7-4356-b499-8d0463ceb349" + "ac5be6f0-1b21-4447-9656-339e81a4316b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040719Z:ab86a0b1-f1e7-4356-b499-8d0463ceb349" + "WESTUS2:20190411T020440Z:ac5be6f0-1b21-4447-9656-339e81a4316b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:40 GMT" + ], "Expires": [ "-1" ] 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 8d97481e4008..1137b41b0915 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "89828770-e62f-4387-be98-259b0186b2fc" + "3d330f04-fcb3-4ecb-9ab4-615721a70ff0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:50 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a49a1e6-3bef-4e71-8be8-4a3e3912343b", - "fe13d234-c5e9-49b0-acd8-0be2cdbe9b31" + "b3005596-33d5-4baa-80c7-da4add15bd9c", + "f89d9f3f-5150-4348-81af-8dd1cedbb171" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "39e4d4f4-64f5-433a-8f39-45cd932b5b17" + "3b1a3f82-62dc-422e-982a-b37ec88838da" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040951Z:39e4d4f4-64f5-433a-8f39-45cd932b5b17" + "WESTUS2:20190411T021436Z:3b1a3f82-62dc-422e-982a-b37ec88838da" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:35 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ae15612-5bd0-4de7-80df-aed3a14696d0" + "21594df0-7df0-4ab2-af6b-e940c310a0f9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:51 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ba0d6901-203a-409f-b59e-b1296d611697" + "b50697b6-da59-4514-8acf-9895c133c42a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "bba38d68-3e49-4bdb-9993-7db1b71cd284" + "7ccd37b4-56c1-442a-994e-256fb6027158" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040951Z:bba38d68-3e49-4bdb-9993-7db1b71cd284" + "WESTUS2:20190411T021436Z:7ccd37b4-56c1-442a-994e-256fb6027158" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:35 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,62 +136,62 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWdudXA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWdudXA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39eacc57-7695-47c5-8ef3-0ef193240453" + "b364bc64-4f67-4bff-8af2-121f67ab485a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:51 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ "\"AAAAAAAAQMkACAAAAAAAAA==\"" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "362c417a-7b5f-4c71-9ec9-6e459542192c" + "9fda9891-63a0-410d-aefb-8a8d27017b53" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "8247120d-9ab3-4133-8e00-c5e33faf24e1" + "7818106f-bb22-407d-be87-364ebd82a41e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040951Z:8247120d-9ab3-4133-8e00-c5e33faf24e1" + "WESTUS2:20190411T021436Z:7818106f-bb22-407d-be87-364ebd82a41e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:36 GMT" + ], "Content-Length": [ "423" ], @@ -206,58 +206,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWdudXA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWdudXA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78179f82-fa75-4e04-ae79-b4fe65472806" + "2ca9bf58-ab62-4b2f-afcf-28030f67c443" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:51 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ "\"AAAAAAAAQMkACAAAAAAAAA==\"" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d71634f1-1a27-496f-8179-8398f9060233" + "38b6484e-ca58-4c3b-a704-266050569d93" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "f3d2a6f2-5092-4560-9679-bf8c32daa5cb" + "ae7358c9-7ab9-4e22-a8b1-0ce25c105233" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040951Z:f3d2a6f2-5092-4560-9679-bf8c32daa5cb" + "WESTUS2:20190411T021436Z:ae7358c9-7ab9-4e22-a8b1-0ce25c105233" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:36 GMT" + ], "Content-Length": [ "0" ], @@ -269,58 +269,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWdudXA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWdudXA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c364b8d1-7b62-490f-9bc0-ac95eb6c6f70" + "330426ff-b337-40b5-b045-0fbf341c8446" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:52 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ "\"AAAAAAAAQMkACAAAAAAAAA==\"" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a9a9fce-fdd2-4fb8-ae45-79af6ad7b4da" + "87518af7-ec3f-4cca-bb91-10560aa409bb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "329d1141-9fde-436e-8aee-13b4d872ad47" + "0cc058bf-cc4a-4994-821f-094aca812d77" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040952Z:329d1141-9fde-436e-8aee-13b4d872ad47" + "WESTUS2:20190411T021437Z:0cc058bf-cc4a-4994-821f-094aca812d77" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:37 GMT" + ], "Content-Length": [ "0" ], @@ -332,22 +332,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWdudXA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWdudXA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": false,\r\n \"termsOfService\": {\r\n \"enabled\": false,\r\n \"consentRequired\": false\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "738269fa-4f2b-4e83-886a-52fcdc9461d0" + "10b86b55-4ddc-4fbe-ba08-2705e040f4d0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -360,36 +360,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:52 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ "\"AAAAAAAAQMkACAAAAAAAAA==\"" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "682475e4-dfbd-4786-af71-1403c99a54f9" + "d3b9410f-9552-4689-96a2-462e6d7d241a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "c6ec4368-3a31-48f2-b068-01367150d236" + "803a4c4c-245c-4eaa-9529-a0dfba1ec446" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040952Z:c6ec4368-3a31-48f2-b068-01367150d236" + "WESTUS2:20190411T021437Z:803a4c4c-245c-4eaa-9529-a0dfba1ec446" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:36 GMT" + ], "Content-Length": [ "423" ], @@ -404,25 +404,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWdudXA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9zaWdudXA/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": false,\r\n \"termsOfService\": {\r\n \"enabled\": false,\r\n \"consentRequired\": false\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ec268b2b-54b1-4f50-8923-24588a362772" + "bf588b02-f7e3-46a6-a95b-be3c17b688ed" ], "If-Match": [ "\"AAAAAAAAQMkACAAAAAAAAA==\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -435,33 +435,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2d0bbb22-2959-45a6-9743-02980929ec81" + "30fa3483-9f64-470a-8403-36b55f7ec8a3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "ec0563d7-bd5f-4624-9e3f-41a411812797" + "15ec1ed5-e9d1-4ee3-a843-8d4ee4ab8235" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040952Z:ec0563d7-bd5f-4624-9e3f-41a411812797" + "WESTUS2:20190411T021437Z:15ec1ed5-e9d1-4ee3-a843-8d4ee4ab8235" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:37 GMT" + ], "Expires": [ "-1" ] 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 5690f461afe1..2581935e6801 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d392b55d-c39c-4503-9be1-a648f1ea4018" + "90b801ef-9c77-49f2-bc3f-c9a8d968aecc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:45 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFzct8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cd51be9c-fde1-4f5d-ac69-3f0cd887532d", - "7c3e03f6-ec9b-4675-b7bd-03aa4c72f64f" + "1cadeb09-2d7d-4172-b643-b33e0bfef567", + "f2a95de4-9d29-4c3f-ab6d-8edd22801f82" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "e9186b7e-6ea3-4466-84bc-f3829ff172db" + "8276aced-a7d5-483b-8274-f49c354b9f21" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040646Z:e9186b7e-6ea3-4466-84bc-f3829ff172db" + "WESTUS2:20190411T210302Z:8276aced-a7d5-483b-8274-f49c354b9f21" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 21:03:02 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFzct8=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c3717fc-7fb5-417f-b8ec-4448cc530bad" + "a915418c-87e7-4245-b4a9-943787a33e2e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:45 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFzct8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d944b09-56ce-4362-8d6d-b544b9839fef" + "d6ab78eb-e846-4552-b94d-90685785076d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-correlation-request-id": [ - "c765a0b3-c40c-4ca7-ac2b-bf3ec7142970" + "a040087e-1320-4f76-9008-83c7a5b15eaf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040646Z:c765a0b3-c40c-4ca7-ac2b-bf3ec7142970" + "WESTUS2:20190411T210303Z:a040087e-1320-4f76-9008-83c7a5b15eaf" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 21:03:03 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,61 +136,61 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFzct8=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "835fc5f5-3510-4335-891d-4de3565304cd" + "9c69d604-3ef0-4a7d-b6a6-4bad3240058d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b92a4b2-cc39-4a7d-b0e4-6218c974f408" + "28d04e14-cbe9-4131-9066-eb53428767f2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-correlation-request-id": [ - "f2a5e2e0-d6fe-459c-b455-67302f7a65b2" + "c082b615-8ee6-403a-92d9-29074405cb2b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040646Z:f2a5e2e0-d6fe-459c-b455-67302f7a65b2" + "WESTUS2:20190411T210303Z:c082b615-8ee6-403a-92d9-29074405cb2b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 21:03:03 GMT" + ], "Content-Length": [ - "2226" + "3212" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,61 +199,61 @@ "-1" ] }, - "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}", + "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 \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/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 \"allowTracing\": true\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 \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/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 \"allowTracing\": true\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/master\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"master\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/\",\r\n \"displayName\": \"Built-in all-access subscription\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2018-11-30T15:31:31.727Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"024e1b953e5e4a50884eae548c7313c5\",\r\n \"secondaryKey\": \"afd42ecf30674e39990777c7b012dac9\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions?$top=1&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c755e813-1dbc-44a9-a03c-19974636c148" + "ee22d1e3-af24-4b2e-8bbf-2df3fe21e04c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:46 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eeffc58e-2c23-45ae-961e-2455de02a0ee" + "b0a92048-7dd0-4a69-b139-fadfbb6ced18" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11994" ], "x-ms-correlation-request-id": [ - "db8b27eb-2c6d-4759-9a65-f31a53ee53be" + "09ba4c26-aa35-4b2e-b2a7-5dfd2cd3dd06" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040647Z:db8b27eb-2c6d-4759-9a65-f31a53ee53be" + "WESTUS2:20190411T210303Z:09ba4c26-aa35-4b2e-b2a7-5dfd2cd3dd06" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 21:03:03 GMT" + ], "Content-Length": [ - "1375" + "1403" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,64 +262,64 @@ "-1" ] }, - "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}", + "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 \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/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 \"allowTracing\": 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/subscriptions?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/59442dab78b6e60085070001?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zLzU5NDQyZGFiNzhiNmU2MDA4NTA3MDAwMT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/59442dab78b6e60085070001?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zLzU5NDQyZGFiNzhiNmU2MDA4NTA3MDAwMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43ee1655-8d39-4a49-9cfb-e25addf7df41" + "96001a23-e050-4974-8fcf-a98c08551760" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:46 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ "\"AAAAAAAAJy0=\"" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0dfa56ed-d6a5-4cfc-bfc6-784a22806111" + "29e5d04b-9e0a-4f96-9036-7d4b53eaa21c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11993" ], "x-ms-correlation-request-id": [ - "55b86365-f362-43ec-87e1-ed225123c9f5" + "bdb094b1-065a-4470-90e6-cc2974d73f53" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040647Z:55b86365-f362-43ec-87e1-ed225123c9f5" + "WESTUS2:20190411T210303Z:bdb094b1-065a-4470-90e6-cc2974d73f53" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 21:03:03 GMT" + ], "Content-Length": [ - "1022" + "1046" ], "Content-Type": [ "application/json; charset=utf-8" @@ -328,29 +328,29 @@ "-1" ] }, - "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}", + "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 \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/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 \"allowTracing\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"subscriptionsLimit\": 2147483647\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b19d7359-53ce-4d31-b4cd-55b1069ac585" + "0cf63555-072b-45ba-8ea1-09135036452d" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -363,33 +363,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:46 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5dd76eb5-0b22-4dea-878d-3a88fe72ab36" + "e44d8688-b217-483d-8327-143314270c9e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "f837cb44-8829-4916-a8c7-defad80de3a8" + "5f1a2a48-deea-4022-8751-c60dace63848" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040647Z:f837cb44-8829-4916-a8c7-defad80de3a8" + "WESTUS2:20190411T210303Z:5f1a2a48-deea-4022-8751-c60dace63848" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 21:03:03 GMT" + ], "Expires": [ "-1" ] @@ -398,66 +398,66 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId5754?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNTc1ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "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\": \"newSubscriptionName1615\",\r\n \"primaryKey\": \"newSubscriptionPK5183\",\r\n \"secondaryKey\": \"newSubscriptionSK5295\",\r\n \"state\": \"active\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"newSubscriptionName4049\",\r\n \"primaryKey\": \"newSubscriptionPK5050\",\r\n \"secondaryKey\": \"newSubscriptionSK6261\",\r\n \"state\": \"active\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "382b4053-7d29-4ff5-9abf-81249edaf7e0" + "5cd0b400-e64d-4c10-ad79-c91bc8beb9fc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "544" + "541" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:47 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY8o=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAexQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e75530ea-acda-40b1-9f4c-c7007da869ed" + "78b1d6a1-11d7-43ea-b7b6-621966647607" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "d50ff998-984c-4657-89c2-381061f14427" + "141c5e38-b0cf-42d4-9fd6-791c620007c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040648Z:d50ff998-984c-4657-89c2-381061f14427" + "WESTUS2:20190411T210304Z:141c5e38-b0cf-42d4-9fd6-791c620007c0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 21:03:04 GMT" + ], "Content-Length": [ - "1019" + "1455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -466,64 +466,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId5754\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId5754\",\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\": \"newSubscriptionName1615\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-02T04:06:47.3930983Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"newSubscriptionPK5183\",\r\n \"secondaryKey\": \"newSubscriptionSK5295\",\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/newSubscriptionId2250\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId2250\",\r\n \"properties\": {\r\n \"ownerId\": \"/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 \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"newSubscriptionName4049\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-11T21:03:03.978867Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"newSubscriptionPK5050\",\r\n \"secondaryKey\": \"newSubscriptionSK6261\",\r\n \"stateComment\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId5754?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNTc1ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe632f78-a2ea-4f85-b182-4c42745788b4" + "60cf1c3c-da44-4c13-8159-53452933e633" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:47 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY8o=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAexQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d675e457-5520-48f2-8b49-90ea5c69ccec" + "bf100996-b4c8-4430-9018-1e6edd453e4a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11992" ], "x-ms-correlation-request-id": [ - "53b5d11c-2b86-4956-a76c-93838f16129e" + "b0ef0fde-f12e-43d7-b15c-81f060b212fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040648Z:53b5d11c-2b86-4956-a76c-93838f16129e" + "WESTUS2:20190411T210304Z:b0ef0fde-f12e-43d7-b15c-81f060b212fe" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 21:03:04 GMT" + ], "Content-Length": [ - "1015" + "1038" ], "Content-Type": [ "application/json; charset=utf-8" @@ -532,64 +532,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId5754\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId5754\",\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\": \"newSubscriptionName1615\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-02T04:06:47.393Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"newSubscriptionPK5183\",\r\n \"secondaryKey\": \"newSubscriptionSK5295\",\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/newSubscriptionId2250\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId2250\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"newSubscriptionName4049\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-11T21:03:03.98Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"newSubscriptionPK5050\",\r\n \"secondaryKey\": \"newSubscriptionSK6261\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId5754?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNTc1ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d664f85c-f608-47ab-9fb8-5e03edbfe010" + "0542a488-d921-4a9e-a386-a29992509b0a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:47 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY80=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAexc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "51f7d62e-3df5-415a-9419-25dea7efd7a9" + "a798360b-f89d-4a77-a01d-b11f1cc8668f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11990" ], "x-ms-correlation-request-id": [ - "b767158f-b5a9-41e6-9ee2-0001854da424" + "044a3007-afba-4fb5-b794-a560e94aef67" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040648Z:b767158f-b5a9-41e6-9ee2-0001854da424" + "WESTUS2:20190411T210305Z:044a3007-afba-4fb5-b794-a560e94aef67" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 21:03:05 GMT" + ], "Content-Length": [ - "1025" + "1050" ], "Content-Type": [ "application/json; charset=utf-8" @@ -598,64 +598,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId5754\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId5754\",\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\": \"patchedName812\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-02T04:06:47.393Z\",\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\": \"patchedPk8295\",\r\n \"secondaryKey\": \"patchedSk244\",\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/newSubscriptionId2250\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId2250\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"patchedName8075\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-11T21:03:03.98Z\",\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\": \"patchedPk9058\",\r\n \"secondaryKey\": \"patchedSk6915\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId5754?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNTc1ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ce85781-e6fb-4b8d-adf0-9622369a4855" + "0e5d3104-caa0-42e6-b874-ad1ba9073084" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:48 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY9E=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAexs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "27c442dd-a675-4c67-8f47-2bc6fb688c6f" + "834b0523-a039-406d-8171-82d721062fbf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-correlation-request-id": [ - "8ef17d1d-80db-4a2b-97a7-6d00a9df1ddf" + "1e735c2b-8155-4d78-85ed-867a5efcff45" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040649Z:8ef17d1d-80db-4a2b-97a7-6d00a9df1ddf" + "WESTUS2:20190411T210305Z:1e735c2b-8155-4d78-85ed-867a5efcff45" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 21:03:05 GMT" + ], "Content-Length": [ - "1044" + "1069" ], "Content-Type": [ "application/json; charset=utf-8" @@ -664,64 +664,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId5754\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId5754\",\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\": \"patchedName812\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-02T04:06:47.393Z\",\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\": \"84c678bd4dc64b9ea9139236c6c6beee\",\r\n \"secondaryKey\": \"patchedSk244\",\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/newSubscriptionId2250\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId2250\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"patchedName8075\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-11T21:03:03.98Z\",\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\": \"dcedc383f7cb48188a4dbff7e6af789c\",\r\n \"secondaryKey\": \"patchedSk6915\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId5754?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNTc1ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cde8335d-d858-4d39-8ea7-f61d9dfd7830" + "aebb7bf0-a7bc-428b-8d5b-d2a9e874e02c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:48 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAY9U=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAex8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aafb877b-6f77-4a38-bf7b-95476b74c1c0" + "23ed0877-5d62-4ea1-afea-f56e4e16357f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11988" ], "x-ms-correlation-request-id": [ - "4f8019d9-ab9d-494b-933e-480cc642a372" + "76525637-072c-4bf5-891b-c27df15fb080" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040649Z:4f8019d9-ab9d-494b-933e-480cc642a372" + "WESTUS2:20190411T210305Z:76525637-072c-4bf5-891b-c27df15fb080" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 21:03:05 GMT" + ], "Content-Length": [ - "1064" + "1088" ], "Content-Type": [ "application/json; charset=utf-8" @@ -730,61 +730,124 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId5754\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId5754\",\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\": \"patchedName812\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-02T04:06:47.393Z\",\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\": \"84c678bd4dc64b9ea9139236c6c6beee\",\r\n \"secondaryKey\": \"db12e893726147e6a782041be0ad78e5\",\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/newSubscriptionId2250\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId2250\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"patchedName8075\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-11T21:03:03.98Z\",\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\": \"dcedc383f7cb48188a4dbff7e6af789c\",\r\n \"secondaryKey\": \"31ee9723bfb14b35a08b4f1e981a3c68\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId5754?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNTc1ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92e4a4db-7aa0-4cb1-9ebc-54246f071245" + "ba9b1b81-5721-4b5c-9cb5-dd3cc205b064" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:49 GMT" - ], "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4bae8f73-90c2-4a86-86ff-2d64ac7d490b" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "012d7fe1-2fc0-4384-841a-8ad95e60006d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T210306Z:012d7fe1-2fc0-4384-841a-8ad95e60006d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 21:03:06 GMT" + ], + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Subscription not found.\",\r\n \"details\": null\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/subscriptions?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5b9a78c-c103-4fa4-8c13-47e5ff68efe5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "14737e1a-f59b-423e-8287-9d24bdbf00fb" + "e96b839c-e57e-4f98-98f3-f29af5d45017" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "64a1217d-b8d8-4337-a6de-6e33c04f5b56" + "feaf7838-9e28-43d1-a100-c49f443dffc4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040650Z:64a1217d-b8d8-4337-a6de-6e33c04f5b56" + "WESTUS2:20190411T210304Z:feaf7838-9e28-43d1-a100-c49f443dffc4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 21:03:04 GMT" + ], "Content-Length": [ - "88" + "2324" ], "Content-Type": [ "application/json; charset=utf-8" @@ -793,68 +856,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Subscription not found.\",\r\n \"details\": null\r\n }\r\n}", - "StatusCode": 404 + "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 \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/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 \"allowTracing\": true\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/subscriptions/newSubscriptionId2250\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"newSubscriptionId2250\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"newSubscriptionName4049\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-11T21:03:03.98Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"newSubscriptionPK5050\",\r\n \"secondaryKey\": \"newSubscriptionSK6261\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId5754?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNTc1ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"patchedName812\",\r\n \"primaryKey\": \"patchedPk8295\",\r\n \"secondaryKey\": \"patchedSk244\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"patchedName8075\",\r\n \"primaryKey\": \"patchedPk9058\",\r\n \"secondaryKey\": \"patchedSk6915\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d182be4e-3a9d-412a-9cb6-1df506d75376" + "b898381b-d1f5-4002-8597-d6b6111c6bbe" ], "If-Match": [ - "\"AAAAAAAAY8o=\"" + "\"AAAAAAAAexQ=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "185" + "187" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:47 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f5908d9c-b053-4120-8c75-420226f69f49" + "7c67d941-d2f6-4534-b12c-24b683a7934d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "73c519e3-2fff-4328-b458-8a8ebc3d4a4c" + "25595a59-c2c0-43da-8b89-f0a057669274" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040648Z:73c519e3-2fff-4328-b458-8a8ebc3d4a4c" + "WESTUS2:20190411T210305Z:25595a59-c2c0-43da-8b89-f0a057669274" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 21:03:04 GMT" + ], "Expires": [ "-1" ] @@ -863,55 +926,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId5754/regeneratePrimaryKey?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNTc1NC9yZWdlbmVyYXRlUHJpbWFyeUtleT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250/regeneratePrimaryKey?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MC9yZWdlbmVyYXRlUHJpbWFyeUtleT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "719222d7-37e1-42eb-b951-ba70743c4834" + "c4c21ee7-7f93-4aa6-9a04-25d62897bde8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8dcfea5a-75f1-4939-a112-c25b8cddb3ac" + "8c1f9ed4-140a-49e4-b280-cd0e334eeb29" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "bf4fdbbc-937e-4fe9-8bc1-508ab324e7e3" + "98474b25-480e-4be1-b9c5-d7d27b96960f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040649Z:bf4fdbbc-937e-4fe9-8bc1-508ab324e7e3" + "WESTUS2:20190411T210305Z:98474b25-480e-4be1-b9c5-d7d27b96960f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 21:03:05 GMT" + ], "Expires": [ "-1" ] @@ -920,55 +983,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId5754/regenerateSecondaryKey?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNTc1NC9yZWdlbmVyYXRlU2Vjb25kYXJ5S2V5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250/regenerateSecondaryKey?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MC9yZWdlbmVyYXRlU2Vjb25kYXJ5S2V5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f344f7f4-18ef-4574-a53c-33f0ae118f34" + "4beca2dd-ee32-4c71-8787-94db6b009dbe" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "94c087fc-5f0c-4ac4-84de-0eace4e86f8c" + "336a3694-bb03-4d8e-bab6-24293cbc26d2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "690353aa-a94d-4987-bc43-167ba95dd41d" + "8f99a6fb-df54-486f-aae8-7e6b9c199415" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040649Z:690353aa-a94d-4987-bc43-167ba95dd41d" + "WESTUS2:20190411T210305Z:8f99a6fb-df54-486f-aae8-7e6b9c199415" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 21:03:05 GMT" + ], "Expires": [ "-1" ] @@ -977,138 +1040,398 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId5754?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNTc1ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0cb514d-ee06-4074-b255-85c31d81dcc7" + "e7a9d6e6-5dc2-4d63-b829-b078fb383f12" ], "If-Match": [ - "\"AAAAAAAAY9U=\"" + "\"AAAAAAAAex8=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:06:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a9ef5ecd-4d17-4cce-8543-664de970a79f" + "0cfbbef5-4d23-4337-8131-3c578ec6d715" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "0ffc90ee-b213-4a4f-99c9-304697b13d5c" + "f998788c-bd22-4606-bf33-4ad7d2f4c2fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040650Z:0ffc90ee-b213-4a4f-99c9-304697b13d5c" + "WESTUS2:20190411T210306Z:f998788c-bd22-4606-bf33-4ad7d2f4c2fc" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 21:03:05 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId5754?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNTc1ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId2250?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMjI1MD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a68c7bb-4027-4ade-ab6e-ac600ee14fa0" + "31868472-db89-4fe4-9018-bb3e763cd4ab" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dc82c697-f145-458f-bbc3-c23076138822" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "770d63b3-9877-436a-a560-f5982202a96f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T210306Z:770d63b3-9877-436a-a560-f5982202a96f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Date": [ - "Tue, 02 Apr 2019 04:06:49 GMT" + "Thu, 11 Apr 2019 21:03:06 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/globalSubscriptionId9387?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL2dsb2JhbFN1YnNjcmlwdGlvbklkOTM4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"scope\": \"/apis\",\r\n \"displayName\": \"global866\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c572d10a-88f4-41d6-bce6-539b13f2d5d5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "83" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ + "\"AAAAAAAAeyU=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5758beb9-3981-410f-8813-a30b43015480" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "06a12c17-c26f-4195-851f-778772e17ad6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T210306Z:06a12c17-c26f-4195-851f-778772e17ad6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 21:03:06 GMT" + ], + "Content-Length": [ + "845" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/globalSubscriptionId9387\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"globalSubscriptionId9387\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis\",\r\n \"displayName\": \"global866\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2019-04-11T21:03:06.3885123Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"c554371031204f3ba32344727353a11c\",\r\n \"secondaryKey\": \"a3a5dd462c654f20834fb7d94a25fded\",\r\n \"stateComment\": null\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/globalSubscriptionId9387?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL2dsb2JhbFN1YnNjcmlwdGlvbklkOTM4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83f3a2b6-9bca-49dc-868a-9535275f2963" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "69233514-ac77-444e-b61e-e657fc2c1c3d" + "3bc8c0dc-89ec-4783-838d-c40d84bc9a7e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "eb97fc94-41ad-4640-877e-0a12901ea4cd" + "520556d7-dd8e-489e-8761-f1a76a6a6ffc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T210306Z:520556d7-dd8e-489e-8761-f1a76a6a6ffc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 21:03:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/globalSubscriptionId9387?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL2dsb2JhbFN1YnNjcmlwdGlvbklkOTM4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb512ab7-516c-4e6e-b83d-35f739840d01" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2d18cf6c-0e76-4f7d-9037-84b28e0a098b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "83b542fc-5288-4dc9-8194-bc8db7a87846" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040650Z:eb97fc94-41ad-4640-877e-0a12901ea4cd" + "WESTUS2:20190411T210306Z:83b542fc-5288-4dc9-8194-bc8db7a87846" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 21:03:06 GMT" + ], "Expires": [ "-1" ] }, "ResponseBody": "", "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/globalSubscriptionId9387?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL2dsb2JhbFN1YnNjcmlwdGlvbklkOTM4Nz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff34648d-11fb-400e-9a83-fce007cb6725" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9caef395-1947-4dd1-a08d-86ca9f8c5fd1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "0cf1512e-c2a9-4aac-8f3d-e9e4f3116db3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T210306Z:0cf1512e-c2a9-4aac-8f3d-e9e4f3116db3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Apr 2019 21:03:06 GMT" + ], + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Subscription not found.\",\r\n \"details\": null\r\n }\r\n}", + "StatusCode": 404 } ], "Names": { "CreateListUpdateDelete": [ - "newSubscriptionId5754", - "newSubscriptionName1615", - "newSubscriptionPK5183", - "newSubscriptionSK5295", - "patchedName812", - "patchedPk8295", - "patchedSk244" + "newSubscriptionId2250", + "globalSubscriptionId9387", + "newSubscriptionName4049", + "newSubscriptionPK5050", + "newSubscriptionSK6261", + "patchedName8075", + "patchedPk9058", + "patchedSk6915", + "global866" ] }, "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 a3df583494f8..fc6fc3db417a 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3c74df61-1c9e-4b44-abf0-8818f6544354" + "042ba3ff-6c56-40ec-ab9d-9818fa2c084a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:09 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4299d80d-2e01-4d72-b9b9-b0d2729dcef5", - "1d6fdd0d-39ab-4703-8c2d-f491ec649eba" + "783fb73b-06da-41e8-b8d1-4b9d81a5e8aa", + "56341509-1f43-444e-966f-3a0b098dcf02" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "dd88427c-2005-4560-9199-7b7b31c3552d" + "c64aebdd-fed2-4b90-acc2-85e950aa638f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041009Z:dd88427c-2005-4560-9199-7b7b31c3552d" + "WESTUS2:20190411T020922Z:c64aebdd-fed2-4b90-acc2-85e950aa638f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:22 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98dafd57-8ac7-4b9f-b3be-ec8d054b6fbd" + "98f84ec5-b119-4a74-8ccb-fc6012ba65b2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:09 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54da8d74-e032-4646-bd90-99f1730b7d92" + "b2443146-373f-47a4-8453-a06d8c0a5399" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "75e97090-8099-410f-8681-c6bce6eac230" + "7c9d084c-953a-448d-82c7-09f200bc8a91" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041010Z:75e97090-8099-410f-8681-c6bce6eac230" + "WESTUS2:20190411T020922Z:7c9d084c-953a-448d-82c7-09f200bc8a91" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:22 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2018-01-01&expandApiVersionSet=false", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEmZXhwYW5kQXBpVmVyc2lvblNldD1mYWxzZQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ae4db82-ac3a-47d5-8ace-531c763a5bc7" + "59b082ef-beaf-423a-b4fb-e8bbbcd1801d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "674741e6-b772-41cd-83b6-b4f665d700f0" + "3f0ea1ea-df86-4954-aa42-cea02e4690d1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "9b140a95-1c81-4c9d-a251-d4c471c18421" + "8f10b98b-17b8-4ece-b35d-9660daec42b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041010Z:9b140a95-1c81-4c9d-a251-d4c471c18421" + "WESTUS2:20190411T020922Z:8f10b98b-17b8-4ece-b35d-9660daec42b4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:22 GMT" + ], "Content-Length": [ "676" ], @@ -203,66 +203,66 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4343?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzQzNDM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag7641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzc2NDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"apiTag5035\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"apiTag915\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "47918342-aefb-46ed-af75-d87e0211a333" + "69fd99b9-9b7c-4760-b949-d44892010159" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "61" + "60" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:10 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZLA=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcQY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f5ad7057-d6b8-4341-bd5e-ca788151c92c" + "e89c96e2-c896-47ac-9bfc-0f74380c8cc9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "9cb2663b-9ae5-4805-891a-1b2ccc31a284" + "25ab36f2-5b90-49c9-9abb-105f691edb39" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041011Z:9cb2663b-9ae5-4805-891a-1b2ccc31a284" + "WESTUS2:20190411T020923Z:25ab36f2-5b90-49c9-9abb-105f691edb39" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:23 GMT" + ], "Content-Length": [ - "311" + "310" ], "Content-Type": [ "application/json; charset=utf-8" @@ -271,64 +271,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4343\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"apiTag4343\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag5035\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag7641\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"apiTag7641\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag915\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4343?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNDM0Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag7641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNzY0MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc0f58a6-b53f-482d-a383-018162491bf7" + "e5f6e452-2377-40c8-b4d6-b5f20d66e3da" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:10 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZLA=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcQY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b53d4b6-a0ed-43f8-bf6c-3f5f4b445864" + "e2094686-6bb2-47b0-be8d-9c3af9d0b735" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "9ba60409-4bb9-41cc-8a82-f4aab0a4d7ec" + "fdf5cd7a-0a10-44de-b1fb-af1231aa0827" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041011Z:9ba60409-4bb9-41cc-8a82-f4aab0a4d7ec" + "WESTUS2:20190411T020923Z:fdf5cd7a-0a10-44de-b1fb-af1231aa0827" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:23 GMT" + ], "Content-Length": [ - "330" + "329" ], "Content-Type": [ "application/json; charset=utf-8" @@ -337,59 +337,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4343\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag4343\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag5035\"\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/apiTag7641\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag7641\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag915\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "476589a2-d516-49d5-8577-25704824ba26" + "dca77396-dcd8-4cef-84bf-d8765923146c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:10 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9a03bbd-bfa9-4f0a-a0a8-39031ed75043" + "09e4b0dd-9c8e-432f-b4da-93bfaf119edd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "77705372-9445-4c3c-a653-86d88ff0eda6" + "3aff5960-537a-414e-a907-f1ec7b8d3a64" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041011Z:77705372-9445-4c3c-a653-86d88ff0eda6" + "WESTUS2:20190411T020923Z:3aff5960-537a-414e-a907-f1ec7b8d3a64" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:23 GMT" + ], "Content-Length": [ "19" ], @@ -404,22 +404,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag4343?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWc0MzQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag7641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWc3NjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"somedescription1218\",\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"somedescription8483\",\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6407ce58-71a9-4644-ab98-9b091aa92b27" + "ae2e64c8-0bf1-4161-bce7-f5c5ce37ac88" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -432,38 +432,38 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:11 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZLA=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcQY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a0a03687-2a88-4f21-8341-0359010c040e" + "4e7d31d3-1bd2-4816-919e-0eb03fb03fa3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "75258975-a453-4693-8f17-15bad297663f" + "4d8f7c8f-4f3f-4ac3-aea1-a16c8728b289" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041011Z:75258975-a453-4693-8f17-15bad297663f" + "WESTUS2:20190411T020924Z:4d8f7c8f-4f3f-4ac3-aea1-a16c8728b289" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:24 GMT" + ], "Content-Length": [ - "458" + "457" ], "Content-Type": [ "application/json; charset=utf-8" @@ -472,73 +472,73 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4343\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tagDescriptions\",\r\n \"name\": \"apiTag4343\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag5035\",\r\n \"description\": \"somedescription1218\",\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/apiTag7641\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tagDescriptions\",\r\n \"name\": \"apiTag7641\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag915\",\r\n \"description\": \"somedescription8483\",\r\n \"externalDocsDescription\": null,\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag4343?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWc0MzQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag7641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWc3NjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"tag_update50\",\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"tag_update2607\",\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b34af628-54ea-4945-9637-253ed913327a" + "ae34a8f8-a993-4235-9a96-bde8dacf7aad" ], "If-Match": [ - "\"AAAAAAAAZLI=\"" + "\"AAAAAAAAcQc=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "113" + "115" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:11 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZLA=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcQY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6751a15f-ba94-445c-8007-d28263d75ff5" + "d1a75936-63d3-4046-aaf6-ac2e043fee59" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], "x-ms-correlation-request-id": [ - "a57bf30c-e22a-4c7e-99a0-01db5445e0ed" + "9503351d-775a-4737-9c9c-d459f478020f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041012Z:a57bf30c-e22a-4c7e-99a0-01db5445e0ed" + "WESTUS2:20190411T020924Z:9503351d-775a-4737-9c9c-d459f478020f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:24 GMT" + ], "Content-Length": [ - "451" + "452" ], "Content-Type": [ "application/json; charset=utf-8" @@ -547,62 +547,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4343\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tagDescriptions\",\r\n \"name\": \"apiTag4343\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag5035\",\r\n \"description\": \"tag_update50\",\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/apiTag7641\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tagDescriptions\",\r\n \"name\": \"apiTag7641\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag915\",\r\n \"description\": \"tag_update2607\",\r\n \"externalDocsDescription\": null,\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag4343?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWc0MzQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag7641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWc3NjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b9d1cfd-88c1-4a6b-8857-5e02fc06ebf3" + "936f4af7-ce28-4079-bf61-5fda56cf8938" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:11 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZLI=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcQc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f313f1cc-4509-4b42-ba7f-8eb4bba0cd46" + "562edc78-d1e7-4f9d-bf5c-20f2bfc52669" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "5de40846-a12d-490f-ab2a-81c069a2fef1" + "013fd529-4e47-49ca-a02f-6f0256eb9a28" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041012Z:5de40846-a12d-490f-ab2a-81c069a2fef1" + "WESTUS2:20190411T020924Z:013fd529-4e47-49ca-a02f-6f0256eb9a28" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:24 GMT" + ], "Content-Length": [ "0" ], @@ -614,58 +614,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag4343?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWc0MzQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag7641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWc3NjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2171bc51-76fe-44ac-8d29-4ada5dda9773" + "5ceb3a3f-e2ea-480d-9e5c-852b80a2ee3d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:11 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZLM=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcQg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f85b0252-fb6a-4f24-95d8-a20fe2d80e38" + "8a2027ef-0502-4589-b0a4-df6a26e427b7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "8adf0f21-3154-4adb-a43d-689862705cc2" + "484a5f8c-7df4-488c-a7f9-ab26fab01041" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041012Z:8adf0f21-3154-4adb-a43d-689862705cc2" + "WESTUS2:20190411T020924Z:484a5f8c-7df4-488c-a7f9-ab26fab01041" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:24 GMT" + ], "Content-Length": [ "0" ], @@ -677,121 +677,121 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag4343?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWc0MzQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag7641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWc3NjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "266b5453-e99a-4796-8b4e-da2841b5fc09" + "fc8c9aa7-dbe0-4f49-9dff-d6cdbd7df096" ], "If-Match": [ - "\"AAAAAAAAZLM=\"" + "\"AAAAAAAAcQg=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:12 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "00e9a14b-6177-478f-b499-1b61efcaee42" + "8fd4d460-014c-4d41-a2ae-27e7dc04b3ad" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "b6a4504f-ac48-47e4-b29e-235722210d6d" + "2fddf7d1-471d-46f8-bb23-3fe346015160" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041013Z:b6a4504f-ac48-47e4-b29e-235722210d6d" + "WESTUS2:20190411T020925Z:2fddf7d1-471d-46f8-bb23-3fe346015160" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:09:25 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag4343?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWc0MzQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag7641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWc3NjQxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5902a05-11ce-4b73-997f-a9d13f78ae4e" + "12a8222d-ede9-4283-9e62-1ca803da6fcc" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a46b6af-71e4-42e4-8ef8-4983d76d0cb0" + "1db6123a-9646-4720-87c7-034c52476970" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14995" ], "x-ms-correlation-request-id": [ - "53e178a5-d340-4dec-8032-21da932d9bd5" + "425417d1-09f2-4a10-aa85-7602bf10b0e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041014Z:53e178a5-d340-4dec-8032-21da932d9bd5" + "WESTUS2:20190411T020926Z:425417d1-09f2-4a10-aa85-7602bf10b0e9" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:26 GMT" + ], "Expires": [ "-1" ] @@ -800,58 +800,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4343?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzQzNDM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag7641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzc2NDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "339b6332-3218-4a88-9966-9c0a4df9f737" + "59b35938-c191-4084-ba09-8ecdc8caae7a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:12 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZLA=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcQY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3609b716-e2f5-4da8-a36c-42985065ba99" + "5385e670-0653-4f4a-80c6-5ccae5fcb11e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "b1f6c0cf-d918-47fd-a804-33a1eddb0f09" + "0f213a66-b964-47c5-9a25-87d5bac1ecfd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041013Z:b1f6c0cf-d918-47fd-a804-33a1eddb0f09" + "WESTUS2:20190411T020925Z:0f213a66-b964-47c5-9a25-87d5bac1ecfd" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:25 GMT" + ], "Content-Length": [ "0" ], @@ -863,58 +863,58 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4343?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzQzNDM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag7641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzc2NDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f7aae2d-1977-4426-a7ab-e6c793c25ebb" + "ecfcb5e1-6556-4e0a-851d-f7c070544549" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:13 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZLA=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcQY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb1fc7fc-70a9-477e-8d58-3897d9c282d6" + "8ff7ff29-9ece-4dfa-8a50-c10bf237c277" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "f4aa3d29-80cf-4315-aa19-5f330f7d9eeb" + "9f069646-83b2-4724-a7c1-e3d61f205673" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041013Z:f4aa3d29-80cf-4315-aa19-5f330f7d9eeb" + "WESTUS2:20190411T020925Z:9f069646-83b2-4724-a7c1-e3d61f205673" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:25 GMT" + ], "Content-Length": [ "0" ], @@ -926,121 +926,115 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4343?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNDM0Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag7641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNzY0MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adcf28fc-728c-4481-b1c2-2f5bb0451736" - ], - "If-Match": [ - "\"AAAAAAAAZLA=\"" + "b0842a71-fd73-4f30-9148-43e8db1ced6b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03d9739f-1f8c-4802-962e-25bb411d4d27" + "9521bf92-7ede-4b0e-aff4-ba9710b2116b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "bd1817bc-9071-4ef8-85a8-a2ea176bf4ac" + "26265185-a166-4f91-bde1-f87cc786ced7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041013Z:bd1817bc-9071-4ef8-85a8-a2ea176bf4ac" + "WESTUS2:20190411T020925Z:26265185-a166-4f91-bde1-f87cc786ced7" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:09:25 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4343?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNDM0Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag7641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNzY0MT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb35d370-9a5e-4e65-93af-11976d95c2d8" - ], - "If-Match": [ - "*" + "0c43553a-f5f4-4b34-883b-a863fb0bb656" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4b1f3488-e292-4651-89ca-447b599266f7" + "3e6833c2-d992-4bff-b9bd-036feeef9539" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "2c38aa76-88ab-4917-9a71-0d196d281e83" + "0154512f-3061-410f-97a9-0daf3423d1b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041014Z:2c38aa76-88ab-4917-9a71-0d196d281e83" + "WESTUS2:20190411T020926Z:0154512f-3061-410f-97a9-0daf3423d1b7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:26 GMT" + ], "Expires": [ "-1" ] @@ -1049,121 +1043,121 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4343?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzQzNDM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag7641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzc2NDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10c14ffc-83c0-4b8a-94b1-13bad65b62ba" + "e860c90f-c505-4322-8014-f6b4ecbce555" ], "If-Match": [ - "\"AAAAAAAAZLA=\"" + "\"AAAAAAAAcQY=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5fa0f259-7b5b-4a4d-a0ab-0c0bb7e5e8fe" + "b815cb85-a145-4f5f-95b9-5e73609b584e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "85957c69-0b5b-4193-9dc6-5bec0445a2ad" + "4b8fb8f4-10bb-42e8-85f8-4e7fe3e2f7d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041014Z:85957c69-0b5b-4193-9dc6-5bec0445a2ad" + "WESTUS2:20190411T020926Z:4b8fb8f4-10bb-42e8-85f8-4e7fe3e2f7d6" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:09:25 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4343?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzQzNDM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag7641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzc2NDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9db10fcb-f64a-4ee2-afd2-9813a9d0f5cd" + "4edf073c-271f-4ba5-987e-52b4740d1715" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4b70e956-17f6-4018-9d22-03ea2bee7743" + "99146e59-032a-4684-a66d-2e566c7aed72" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14994" ], "x-ms-correlation-request-id": [ - "fb6b544f-a59e-40d1-aa6a-db4e809de859" + "32a46441-10cc-43f4-97ab-1268d6c2ce1a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041015Z:fb6b544f-a59e-40d1-aa6a-db4e809de859" + "WESTUS2:20190411T020926Z:32a46441-10cc-43f4-97ab-1268d6c2ce1a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:26 GMT" + ], "Expires": [ "-1" ] @@ -1172,55 +1166,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4343?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzQzNDM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag7641?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzc2NDE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "555c2a5c-8c87-402b-a245-e068f12bf463" + "a402a976-8c46-4c2b-bd9b-d09f4e08a141" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a23dc3de-0f4c-4bb9-a8ae-e874fa43f14a" + "538871b8-0238-4778-b7ff-0810f9908df7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "315fee2e-2ec1-442d-bb5d-b6e1f3bf96a1" + "3131c249-2ad3-4803-a2ef-b240c86451b0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041014Z:315fee2e-2ec1-442d-bb5d-b6e1f3bf96a1" + "WESTUS2:20190411T020926Z:3131c249-2ad3-4803-a2ef-b240c86451b0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:09:26 GMT" + ], "Content-Length": [ "79" ], @@ -1237,10 +1231,10 @@ ], "Names": { "CreateListUpdateDelete": [ - "apiTag4343", - "apiTag5035", - "somedescription1218", - "tag_update50" + "apiTag7641", + "apiTag915", + "somedescription8483", + "tag_update2607" ] }, "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 e317adfc33ae..284fec76d573 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4ea4eff1-03d0-46ce-8182-9997175cfea1" + "d3315680-36d0-4381-8b17-d1b58648c5cf" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:25 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFzct8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cefa1ccc-8d37-414f-abc5-50e23b433cd8", - "40e632b4-fca6-4394-a6ac-e87e91c114b2" + "0cb0a648-3a0a-4c0f-8710-c8a9b57711e4", + "14964a33-9cf0-449d-bb8c-805b66dc1b74" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "3fb6eecf-090b-4a3c-b7d1-879f4c2a21ee" + "1e2d1194-a9b8-46b6-a412-718f008973a5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041026Z:3fb6eecf-090b-4a3c-b7d1-879f4c2a21ee" + "WESTUS2:20190411T185804Z:1e2d1194-a9b8-46b6-a412-718f008973a5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:03 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFzct8=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b289d0f0-ceb1-4d28-82dc-97981e7b0ba3" + "4561a278-c0a2-4e61-9899-38e6b490910c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:25 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFzct8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ae86ec4d-aaa8-4761-902d-65172981d180" + "2abd0596-c5d7-4a32-95f7-a12e26023a23" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "6b662f22-19cf-4e29-b56b-0113621b2e98" + "253ebd84-d9e9-4915-b7b7-2b3acde38bdb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041026Z:6b662f22-19cf-4e29-b56b-0113621b2e98" + "WESTUS2:20190411T185804Z:253ebd84-d9e9-4915-b7b7-2b3acde38bdb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:04 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFzct8=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d5993bb-75ea-4b5e-b6b7-0caf4a9ce42a" + "917ad55f-cbab-4328-b5d7-ed81d6768f4c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:26 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1578082a-453a-48bf-90d1-3ea1a587b70a" + "d2ae1ecb-98ad-43c9-a455-101ec292eccc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "2ef64171-e33a-4428-a696-223eb3646ac2" + "653a81a5-bba5-4534-8b32-eb0ae17eea0e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041026Z:2ef64171-e33a-4428-a696-223eb3646ac2" + "WESTUS2:20190411T185805Z:653a81a5-bba5-4534-8b32-eb0ae17eea0e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:04 GMT" + ], "Content-Length": [ "19" ], @@ -203,55 +203,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2018-01-01&expandApiVersionSet=false", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEmZXhwYW5kQXBpVmVyc2lvblNldD1mYWxzZQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa57eb9d-2006-4e68-a2e6-233e646aafd3" + "21e175df-3fec-400a-b259-8e159a0ad5fc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:26 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3a9cae0f-eda7-43fe-8766-1517828b9fde" + "91d8c82b-fea0-4c18-86da-28e04b1d5c06" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "ea0a8bbb-430d-4241-9ed5-55e9bbd8a47c" + "4f5899a5-565b-4a7d-8fec-492bc15a2253" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041026Z:ea0a8bbb-430d-4241-9ed5-55e9bbd8a47c" + "WESTUS2:20190411T185805Z:4f5899a5-565b-4a7d-8fec-492bc15a2253" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:04 GMT" + ], "Content-Length": [ "676" ], @@ -266,22 +266,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag297?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzI5Nz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4325?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzQzMjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"apiTag8777\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"apiTag6334\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bff09eda-0aa4-4fdb-a898-a6eb50e35656" + "87e98b7c-8395-46ce-84fb-e2be884ad993" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,38 +294,38 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:26 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZL0=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAerE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9834b857-5b7c-49c2-82b9-c4b5ebe6cfe3" + "c7bdb048-4bfe-43d7-8fe1-cf227b5b0974" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "a3b13ca9-0e98-4ac0-b492-9b3a37138180" + "f3c898ad-4138-4de7-aee2-c5e104682fdd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041027Z:a3b13ca9-0e98-4ac0-b492-9b3a37138180" + "WESTUS2:20190411T185805Z:f3c898ad-4138-4de7-aee2-c5e104682fdd" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:05 GMT" + ], "Content-Length": [ - "309" + "311" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,64 +334,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag297\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"apiTag297\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag8777\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4325\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"apiTag4325\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag6334\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag297?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnMjk3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4325?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNDMyNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c34cdd0-8d86-47fa-96d0-d29888d3a86f" + "30e8b098-6ad6-4aba-b83f-4a4ad9459882" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:27 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZL0=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAerE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff1c6d98-dbc1-48bc-b5af-c9047b943912" + "3d85b75d-6e14-4ff5-b1d2-3c35b6908ab9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "884600d2-bd70-4da6-8657-26d5eab8e30c" + "51864437-86aa-4a71-b031-31cab4589751" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041027Z:884600d2-bd70-4da6-8657-26d5eab8e30c" + "WESTUS2:20190411T185806Z:51864437-86aa-4a71-b031-31cab4589751" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:05 GMT" + ], "Content-Length": [ - "328" + "330" ], "Content-Type": [ "application/json; charset=utf-8" @@ -400,61 +400,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag297\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag297\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag8777\"\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/apiTag4325\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag4325\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag6334\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apisByTags?$top=1&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzQnlUYWdzPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apisByTags?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzQnlUYWdzPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21018548-1be6-47e5-ae25-e4a4e441377a" + "bd64a3f5-1f35-4729-90fd-b8f5403d6c95" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:27 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d0a867a3-f937-48df-ba60-5beeacfa19c2" + "63f8fdd3-b6b4-437c-a219-da3317d57291" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "43d5559b-cc50-4c92-8b39-50e956499290" + "21eb0d56-7a70-4d07-97df-55e43ed53a39" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041027Z:43d5559b-cc50-4c92-8b39-50e956499290" + "WESTUS2:20190411T185807Z:21eb0d56-7a70-4d07-97df-55e43ed53a39" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:06 GMT" + ], "Content-Length": [ - "337" + "338" ], "Content-Type": [ "application/json; charset=utf-8" @@ -463,61 +463,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/apiTag297\",\r\n \"name\": \"apiTag8777\"\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/apiTag4325\",\r\n \"name\": \"apiTag6334\"\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3M/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3M/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "033a994d-c37a-454b-963c-4de9f1533bdc" + "dc6b9324-27ce-4b27-b731-e9009f994e35" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:27 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a1f08621-62fe-4959-9d21-99d3edd26a2c" + "0f8ee30c-0405-4dbf-bda1-6080b9cb8189" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "f97438dc-78a8-4ee0-9079-0f42c0075723" + "d45b606f-c2a8-477d-9848-288525a6c18c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041027Z:f97438dc-78a8-4ee0-9079-0f42c0075723" + "WESTUS2:20190411T185808Z:d45b606f-c2a8-477d-9848-288525a6c18c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:07 GMT" + ], "Content-Length": [ - "385" + "387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -526,64 +526,64 @@ "-1" ] }, - "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/apiTag297\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag297\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag8777\"\r\n }\r\n }\r\n ]\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/apiTag4325\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag4325\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag6334\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag297?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnMjk3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4325?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNDMyNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d44a0ed3-7a9b-48db-be81-28e33f2aa592" + "75108fd4-025d-4028-9b51-af0a4d3c6981" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:27 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZL0=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAerE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e3a0116-9596-4e0f-bb90-d2a41fd7b43c" + "35b682fd-b7a6-4f80-9094-d18587aed56d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "16ec86a1-3a08-4c69-9085-9054ff6efcce" + "6b95b3ce-95ca-49da-983c-9529cce63655" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041028Z:16ec86a1-3a08-4c69-9085-9054ff6efcce" + "WESTUS2:20190411T185808Z:6b95b3ce-95ca-49da-983c-9529cce63655" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:07 GMT" + ], "Content-Length": [ - "328" + "330" ], "Content-Type": [ "application/json; charset=utf-8" @@ -592,59 +592,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag297\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag297\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag8777\"\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/apiTag4325\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag4325\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag6334\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag297?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnMjk3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4325?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNDMyNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d169271b-1c32-4910-b52b-802a20c64f75" + "33c5b25a-7aae-4103-b72c-cd4e4584097c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d645303e-5709-4808-b34a-cf7a16cb7adf" + "b3af2a69-d133-4f2c-b98d-72d6eab4c688" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "6633c226-28eb-4296-89ec-4c4912d49dfd" + "956c05f3-374c-4060-add2-8c189345e994" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041030Z:6633c226-28eb-4296-89ec-4c4912d49dfd" + "WESTUS2:20190411T185811Z:956c05f3-374c-4060-add2-8c189345e994" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:11 GMT" + ], "Content-Length": [ "79" ], @@ -659,58 +659,58 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag297?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnMjk3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4325?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNDMyNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "668f8f3d-ab23-4418-aae4-93be499bef9b" + "6caf4862-7579-409f-8971-4c03fb1b5df7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:27 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZL0=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAerE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4db8317b-3074-4478-8a23-0b87fb85f68b" + "90475dd6-f74c-4855-a3f1-d51988958ca2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "25572b13-df05-4475-b22f-56ba97433c1b" + "cdf8d0c1-c925-4789-9535-03462e7aa826" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041028Z:25572b13-df05-4475-b22f-56ba97433c1b" + "WESTUS2:20190411T185808Z:cdf8d0c1-c925-4789-9535-03462e7aa826" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:08 GMT" + ], "Content-Length": [ "0" ], @@ -722,57 +722,57 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tagResources?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdSZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tagResources?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdSZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c89c564-9388-4fa2-b412-4509e9a6523a" + "2e131c2b-1259-48c9-ae3d-ea212e06f196" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:28 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "66ac80a0-420e-4330-a505-c0b542d552aa" + "339471ea-24d1-40ba-a224-b12f02377ad2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "d2f640dd-1a13-4077-b6fd-5770b5fef2dd" + "ed1a3c98-2bd4-4201-8287-7a872f0e79b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041029Z:d2f640dd-1a13-4077-b6fd-5770b5fef2dd" + "WESTUS2:20190411T185811Z:ed1a3c98-2bd4-4201-8287-7a872f0e79b2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:10 GMT" + ], "Content-Length": [ - "337" + "338" ], "Content-Type": [ "application/json; charset=utf-8" @@ -781,125 +781,119 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/apiTag297\",\r\n \"name\": \"apiTag8777\"\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/apiTag4325\",\r\n \"name\": \"apiTag6334\"\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag297?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnMjk3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4325?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNDMyNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eba5713c-6b5d-4919-9fcf-6c44b35577ca" - ], - "If-Match": [ - "\"AAAAAAAAZL0=\"" + "e9e352f0-c4b1-495f-b7de-34ad24ae689b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2dddb11b-77cb-4706-8f0c-5d88c694c057" + "7115015c-f98c-4795-804f-c088a18953e8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "5e5cde10-4edb-499c-8d82-d5077fa9fb2f" + "5a8b38a2-852b-4f88-bfa5-e24a53013c69" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041030Z:5e5cde10-4edb-499c-8d82-d5077fa9fb2f" + "WESTUS2:20190411T185811Z:5a8b38a2-852b-4f88-bfa5-e24a53013c69" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 18:58:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag297?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnMjk3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag4325?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNDMyNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96d47066-3e92-44b7-bb49-e537211a99d3" + "b90f2707-bebd-4bc1-abe6-c6f9f1784d5a" ], - "If-Match": [ - "*" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d50d4be3-c72e-4f22-9689-a9d8253990ac" + "39ba683c-f042-48c6-9afb-49e2fb955e04" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "2bc42f72-4444-41e1-b5a7-5904174b1fd8" + "5299b556-b293-4898-8d81-90c2f096f99a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041031Z:2bc42f72-4444-41e1-b5a7-5904174b1fd8" + "WESTUS2:20190411T185812Z:5299b556-b293-4898-8d81-90c2f096f99a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:12 GMT" + ], "Expires": [ "-1" ] @@ -908,58 +902,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag297?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzI5Nz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4325?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzQzMjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a70c386e-00a8-4f65-8fdf-87785dfd8d8b" + "f413c88c-ee88-408f-bfb4-5e043a5d5e6b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:29 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZL0=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAerE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "36f7f4a2-a38f-4f26-912f-445db8560464" + "43ef4ae5-0177-44d1-a2ac-87c4a36a5c30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-correlation-request-id": [ - "32788860-78d8-4be7-b2f3-379f69d5eb5c" + "25a23432-a5ae-46ff-9ccc-2138ccbb473d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041030Z:32788860-78d8-4be7-b2f3-379f69d5eb5c" + "WESTUS2:20190411T185812Z:25a23432-a5ae-46ff-9ccc-2138ccbb473d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:11 GMT" + ], "Content-Length": [ "0" ], @@ -971,55 +965,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag297?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzI5Nz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4325?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzQzMjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17eeb56c-ac0d-4aed-948e-de66fc0cdbe0" + "caaeeaf5-8a74-428d-a9ec-d24210130b7f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fa3cb940-1e9f-45df-9470-8ca0937309ea" + "86bf55af-6367-4922-9695-6cab8f5fb5d2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-correlation-request-id": [ - "128e8100-1b2d-4d9e-b1f5-848a793d409e" + "e5838b0e-ee15-4eab-88a9-7bd014008137" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041030Z:128e8100-1b2d-4d9e-b1f5-848a793d409e" + "WESTUS2:20190411T185812Z:e5838b0e-ee15-4eab-88a9-7bd014008137" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:11 GMT" + ], "Content-Length": [ "0" ], @@ -1031,121 +1025,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag297?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzI5Nz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4325?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzQzMjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d404138f-1538-46f5-8bf9-a333e0c18447" + "412aa8ba-a471-4019-9882-b3323a4d40d1" ], "If-Match": [ - "\"AAAAAAAAZL0=\"" + "\"AAAAAAAAerE=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "39924e08-fb5f-4e75-bda4-975b3e2f7815" + "48ac07e1-3a25-4fb5-a9b0-e67d43901a37" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "fa1d611c-cb3d-4a8a-b482-177e208f9689" + "3365a7ba-d2b5-4c8c-b064-0322a6e75198" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041030Z:fa1d611c-cb3d-4a8a-b482-177e208f9689" + "WESTUS2:20190411T185812Z:3365a7ba-d2b5-4c8c-b064-0322a6e75198" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 18:58:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag297?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzI5Nz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag4325?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzQzMjU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a60447d7-619b-4d81-8333-258419825231" + "a4c55ee2-8071-4b6a-bcc5-522a1a8f387b" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ee5509cf-df6d-468f-bfea-396a2f464f23" + "26d31fba-8e32-4f61-bad3-e584af3e506a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "f67f4652-70c2-40fe-81be-d0bf25e6d996" + "82287f46-4e65-4311-ae1a-53ecc37ae718" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041031Z:f67f4652-70c2-40fe-81be-d0bf25e6d996" + "WESTUS2:20190411T185812Z:82287f46-4e65-4311-ae1a-53ecc37ae718" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:12 GMT" + ], "Expires": [ "-1" ] @@ -1156,8 +1150,8 @@ ], "Names": { "CreateListUpdateDeleteApiTags": [ - "apiTag297", - "apiTag8777" + "apiTag4325", + "apiTag6334" ] }, "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 d509f36b8cde..4e7dddfb0323 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f61a75e6-50f9-41b5-bbc2-59242bc6093c" + "891525dd-44b2-4ee1-aa6d-97830720df9f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:18 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFzct8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "874b2c96-2f22-4ff2-bf42-3d37fc426c37", - "b6e65789-b2ba-460d-83f4-bf3f8219161a" + "6ee4e29f-5e6a-42a7-89f1-4d2e7d410d05", + "25c593a8-3bf0-4e8c-ba01-0564ec451dda" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "659b9046-1c95-45dc-956c-ddde8457b2cd" + "c74f84ac-8cf5-4d86-96f1-14dc1063cf5a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041019Z:659b9046-1c95-45dc-956c-ddde8457b2cd" + "WESTUS2:20190411T185833Z:c74f84ac-8cf5-4d86-96f1-14dc1063cf5a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:33 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFzct8=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34041575-fb3c-43e3-8941-be95d8e22edd" + "9d506692-7292-40e7-9528-93bb551a4f5f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:19 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFzct8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7689161a-d59e-4fdf-a040-b3d6197639e2" + "d10c3e9c-c8b0-415a-adac-e46545bb2fe4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-correlation-request-id": [ - "fdc4bd8e-86cc-4932-a422-d2676803dbf6" + "d9a16f3b-f2a3-4eb0-bceb-6469cd604bbd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041019Z:fdc4bd8e-86cc-4932-a422-d2676803dbf6" + "WESTUS2:20190411T185833Z:d9a16f3b-f2a3-4eb0-bceb-6469cd604bbd" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:33 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFzct8=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3c9b1bf-3aac-4d66-beee-85ed317e4f92" + "fdc5f8dc-2979-4f7a-8e09-a4efdae0fff9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "04d03698-481e-4fbb-9f41-487018278ccb" + "11325504-e100-4b5a-abee-62a0b006f405" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-correlation-request-id": [ - "f116a4f9-cd20-417d-a93a-be4f9e43a50d" + "53fe8de8-0adc-4544-bfd8-b7eddbb86e06" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041019Z:f116a4f9-cd20-417d-a93a-be4f9e43a50d" + "WESTUS2:20190411T185834Z:53fe8de8-0adc-4544-bfd8-b7eddbb86e06" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:34 GMT" + ], "Content-Length": [ "19" ], @@ -203,55 +203,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2018-01-01&expandApiVersionSet=false", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEmZXhwYW5kQXBpVmVyc2lvblNldD1mYWxzZQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df871bcb-16ce-4d2b-a1a9-784664407fcc" + "f3853f4d-6b03-4eb3-b0df-efe54bf73812" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e72cd55-2364-4275-aa0c-f3d2913354f7" + "cb6c10a8-3c21-49c5-bd61-5da1c10752d9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-correlation-request-id": [ - "8b2c599a-0157-4fae-bd59-ef3894ea18b1" + "17c1c94d-1dd4-48fc-ae4b-afef227d407a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041020Z:8b2c599a-0157-4fae-bd59-ef3894ea18b1" + "WESTUS2:20190411T185834Z:17c1c94d-1dd4-48fc-ae4b-afef227d407a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:34 GMT" + ], "Content-Length": [ "676" ], @@ -266,55 +266,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations?$top=1&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f900d55-aeed-4d57-9ca8-a0de22bc4a31" + "a6a901c6-9227-4e77-8472-45220b66c3f3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67e3236b-edfc-49c1-b7df-d096431e763c" + "36fad7a2-3c75-45d3-8f6f-8710d7156d25" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11996" ], "x-ms-correlation-request-id": [ - "bacce65c-14ef-4c6f-a63f-16b95e10f3ec" + "421a05f0-f23e-40cc-ac44-25733e9aa8dc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041020Z:bacce65c-14ef-4c6f-a63f-16b95e10f3ec" + "WESTUS2:20190411T185834Z:421a05f0-f23e-40cc-ac44-25733e9aa8dc" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:34 GMT" + ], "Content-Length": [ "1682" ], @@ -325,26 +325,26 @@ "-1" ] }, - "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 \"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 \"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}", + "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 \"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 \"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=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag1573?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzE1NzM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag8488?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzg0ODg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"opreationTag6614\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"opreationTag6935\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0262d122-128e-4879-8be0-e36ff68893b2" + "ef12900c-6da1-4d38-9655-0ddae7c11ee7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -357,36 +357,36 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:20 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZLw=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAerI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e4cbd64-b402-4227-87ed-0f1a6a9123d1" + "3753f2fd-e155-45d0-93b7-93108438a01c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "596c8dd8-7503-4e2b-91a1-83d2e05d214e" + "57e1bf7a-d90f-4253-9fd6-17e582bf2db3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041020Z:596c8dd8-7503-4e2b-91a1-83d2e05d214e" + "WESTUS2:20190411T185835Z:57e1bf7a-d90f-4253-9fd6-17e582bf2db3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:35 GMT" + ], "Content-Length": [ "329" ], @@ -397,62 +397,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag1573\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"operationTag1573\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag6614\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag8488\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"operationTag8488\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag6935\"\r\n }\r\n}", "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/operationTag1573?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnMTU3Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag8488?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnODQ4OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "399c9435-3cd7-4333-b3d1-9d15e2001597" + "34109ad6-e696-4b22-b58d-9f40843875cd" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:20 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZLw=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAerI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "00be5298-c278-459a-a228-fcb0be52f636" + "688a2984-e2a1-47c2-a0c4-553c0cf3ea3c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "2d10a551-1f94-4bcd-b472-16a92feea5df" + "46846052-ad20-4099-87f8-6ec636b93542" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041021Z:2d10a551-1f94-4bcd-b472-16a92feea5df" + "WESTUS2:20190411T185835Z:46846052-ad20-4099-87f8-6ec636b93542" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:35 GMT" + ], "Content-Length": [ "386" ], @@ -463,59 +463,59 @@ "-1" ] }, - "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/operationTag1573\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/tags\",\r\n \"name\": \"operationTag1573\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag6614\"\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/operationTag8488\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/tags\",\r\n \"name\": \"operationTag8488\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag6935\"\r\n }\r\n}", "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?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3M/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3M/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96823eb2-8e78-461a-9fe1-4fd51e96aede" + "c9e16478-1c73-4664-a206-179deb21aaf4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b3863bb-1886-422b-853f-9626d0d72aff" + "04395a08-6c29-42b4-8a4f-b1f09271c203" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11995" ], "x-ms-correlation-request-id": [ - "18c8f43f-84e7-46b8-a25a-e59fc163aa70" + "0108394e-5199-4763-ae12-418629f7e693" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041021Z:18c8f43f-84e7-46b8-a25a-e59fc163aa70" + "WESTUS2:20190411T185836Z:0108394e-5199-4763-ae12-418629f7e693" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:36 GMT" + ], "Content-Length": [ "443" ], @@ -526,62 +526,62 @@ "-1" ] }, - "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/operationTag1573\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/tags\",\r\n \"name\": \"operationTag1573\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag6614\"\r\n }\r\n }\r\n ]\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/operationTag8488\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/tags\",\r\n \"name\": \"operationTag8488\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag6935\"\r\n }\r\n }\r\n ]\r\n}", "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/operationTag1573?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnMTU3Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag8488?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnODQ4OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82441452-91e2-4441-803b-26f7775af07b" + "6265b5b5-65ea-42de-bc50-d011d1fad68c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:20 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZLw=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAerI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a8764c8-2d3f-4dda-8581-5a8227e813da" + "c8bc813a-f6d9-4040-b145-27dada199eef" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11994" ], "x-ms-correlation-request-id": [ - "6456a535-a4cb-4fc4-b8d4-a11eb135224b" + "a6e62455-f808-4341-9d64-e88eb8116103" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041021Z:6456a535-a4cb-4fc4-b8d4-a11eb135224b" + "WESTUS2:20190411T185836Z:a6e62455-f808-4341-9d64-e88eb8116103" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:36 GMT" + ], "Content-Length": [ "386" ], @@ -592,59 +592,59 @@ "-1" ] }, - "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/operationTag1573\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/tags\",\r\n \"name\": \"operationTag1573\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag6614\"\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/operationTag8488\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/tags\",\r\n \"name\": \"operationTag8488\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag6935\"\r\n }\r\n}", "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/operationTag1573?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnMTU3Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag8488?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnODQ4OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ebb5114-4622-4ee5-aea2-19e089dba5ad" + "7406c453-61b6-40b8-a557-d0e3de87dd74" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "94a79a13-b49e-4307-8179-32ea120f9959" + "8d64a684-b962-4796-abee-b59c622f5ba9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11991" ], "x-ms-correlation-request-id": [ - "c916633f-dcb7-48a8-8ee0-236b5efff3da" + "7571ee8b-51f6-4468-8210-4a83d46baa5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041023Z:c916633f-dcb7-48a8-8ee0-236b5efff3da" + "WESTUS2:20190411T185838Z:7571ee8b-51f6-4468-8210-4a83d46baa5d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:38 GMT" + ], "Content-Length": [ "79" ], @@ -659,55 +659,55 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tagResources?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdSZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tagResources?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdSZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4a1f893-7053-4cf6-a9c3-da487211318d" + "abdf3e3c-727b-401c-8017-40bde5d98797" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:22 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "904aeb44-3cb5-4aa6-bf35-b4b5e59740f3" + "30ec7d33-9b08-4f73-a11f-5dfef8c14d27" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11993" ], "x-ms-correlation-request-id": [ - "81334b1d-a7a8-4de1-b439-d5c7ac5ab514" + "b445df0d-9530-4e99-b541-fee4ba1941ef" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041022Z:81334b1d-a7a8-4de1-b439-d5c7ac5ab514" + "WESTUS2:20190411T185837Z:b445df0d-9530-4e99-b541-fee4ba1941ef" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:37 GMT" + ], "Content-Length": [ "636" ], @@ -718,62 +718,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/operationTag1573\",\r\n \"name\": \"opreationTag6614\"\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/operationTag8488\",\r\n \"name\": \"opreationTag6935\"\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}", "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/operationTag1573?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnMTU3Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag8488?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnODQ4OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2ee0557-5fff-4fb5-8588-6c943e3b4c2b" + "c0fe976b-6aba-4a76-8bad-0733f299b168" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:22 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZLw=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAerI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "26cf3649-0f89-426a-820b-a505547b3ef2" + "936d32eb-50a0-4986-bd36-30bc0ba89240" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11992" ], "x-ms-correlation-request-id": [ - "d87f544d-947b-4a11-be67-9bb2d76d2ce7" + "807851b4-f2b3-47c3-bed3-627787bb4abd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041022Z:d87f544d-947b-4a11-be67-9bb2d76d2ce7" + "WESTUS2:20190411T185838Z:807851b4-f2b3-47c3-bed3-627787bb4abd" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:38 GMT" + ], "Content-Length": [ "0" ], @@ -785,121 +785,115 @@ "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/operationTag1573?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnMTU3Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag8488?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnODQ4OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1eedda81-2880-4326-b972-bc3ca73a98bc" - ], - "If-Match": [ - "\"AAAAAAAAZLw=\"" + "ac5544b8-f26f-4fda-ada9-ef53c4ca3a93" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1606777f-9231-49dc-a43d-1512eb200bbd" + "9f7bd0c6-8d27-4f20-94ef-5e2227102b79" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14999" ], "x-ms-correlation-request-id": [ - "ca7bdd9b-e42f-4e98-929f-66fa293b70d7" + "efe7f600-e1b7-4059-9324-d09348cdd8a3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041023Z:ca7bdd9b-e42f-4e98-929f-66fa293b70d7" + "WESTUS2:20190411T185838Z:efe7f600-e1b7-4059-9324-d09348cdd8a3" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 18:58:38 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "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/operationTag1573?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnMTU3Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag8488?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnODQ4OD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "558083ed-0b79-4774-b51d-80c607ee4bdd" - ], - "If-Match": [ - "*" + "5751179e-2eb6-43ea-93fc-c3323e9b141d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:24 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e8c59df5-0cdc-471f-9560-df18e0b868e2" + "0ea4032f-5a91-4b66-84f3-afe611c169c5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14997" ], "x-ms-correlation-request-id": [ - "c2427541-8090-4898-840a-33bfd877effc" + "fa4d772b-81ac-404c-bf5e-8de9ef657255" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041024Z:c2427541-8090-4898-840a-33bfd877effc" + "WESTUS2:20190411T185839Z:fa4d772b-81ac-404c-bf5e-8de9ef657255" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:39 GMT" + ], "Expires": [ "-1" ] @@ -908,58 +902,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag1573?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzE1NzM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag8488?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzg0ODg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc2a5919-462c-4283-b79f-c9165cd1a4ce" + "55aff670-9ac2-439e-9d58-a56f00697e36" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:23 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZLw=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAerI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1bb56753-a1c0-4702-bc00-170f78e1dea0" + "eb6df697-ae03-44f5-afaa-821f96182e00" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11990" ], "x-ms-correlation-request-id": [ - "da685857-feaf-42ad-8cf5-ea8ae87d6a90" + "3fe35f3f-6cda-45c8-b15c-022d9a907484" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041023Z:da685857-feaf-42ad-8cf5-ea8ae87d6a90" + "WESTUS2:20190411T185839Z:3fe35f3f-6cda-45c8-b15c-022d9a907484" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:39 GMT" + ], "Content-Length": [ "0" ], @@ -971,55 +965,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag1573?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzE1NzM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag8488?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzg0ODg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b1d4279-6959-473c-aacf-5d1f9af80e07" + "a20dc0e1-e1ce-442c-8a38-e74438a215de" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c2f96952-0885-420d-b775-3277e2ca3943" + "b697881d-fcd4-4779-bde6-a6e963b1188d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11989" ], "x-ms-correlation-request-id": [ - "d3284635-f0ec-42ed-b1a1-e6ea081d9194" + "fa0a911a-1e12-4b3b-ba2c-3c6b08cb4063" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041024Z:d3284635-f0ec-42ed-b1a1-e6ea081d9194" + "WESTUS2:20190411T185839Z:fa0a911a-1e12-4b3b-ba2c-3c6b08cb4063" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:39 GMT" + ], "Content-Length": [ "0" ], @@ -1031,121 +1025,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag1573?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzE1NzM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag8488?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzg0ODg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35e9b6aa-d4f1-4baf-8bf3-43f9f0626980" + "30087dd8-5f13-481a-bc66-6b84431edf33" ], "If-Match": [ - "\"AAAAAAAAZLw=\"" + "\"AAAAAAAAerI=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "adda409e-d4b8-40c2-90fe-85a024fd6f50" + "45504c61-7685-4068-9f1f-0be99d93c74d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14998" ], "x-ms-correlation-request-id": [ - "b8476ad8-9eeb-4773-a732-22eb9b4e8c53" + "2e3727d7-8d44-4148-bb7a-8836685d37cb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041024Z:b8476ad8-9eeb-4773-a732-22eb9b4e8c53" + "WESTUS2:20190411T185839Z:2e3727d7-8d44-4148-bb7a-8836685d37cb" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 18:58:39 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag1573?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzE1NzM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag8488?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzg0ODg/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd515369-faf6-45c2-b7f7-42b4e222fa3f" + "313a9a05-5815-4ec4-a766-7927cabcb88a" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:24 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6d618308-00a1-43a0-a2c2-aa091067579d" + "9d0bfed8-49b7-40db-a681-03ec62437093" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14993" + "14996" ], "x-ms-correlation-request-id": [ - "5a82a63c-580e-4858-b393-bc4a9feb6944" + "b6a8767b-0782-4473-81b0-aedcc4d0fa7a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041024Z:5a82a63c-580e-4858-b393-bc4a9feb6944" + "WESTUS2:20190411T185839Z:b6a8767b-0782-4473-81b0-aedcc4d0fa7a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:39 GMT" + ], "Expires": [ "-1" ] @@ -1156,8 +1150,8 @@ ], "Names": { "CreateListUpdateDeleteOperationTags": [ - "operationTag1573", - "opreationTag6614" + "operationTag8488", + "opreationTag6935" ] }, "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 019558009453..de71fe0948ee 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8c915ec4-9da8-46c0-8402-894c0acec214" + "96474f97-ad14-48b7-a081-53069b655b1b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:32 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFzct8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2175b1f-2749-443c-9759-31c243be118a", - "5ed6600d-068f-4012-ae60-9e4975232c3b" + "51ca1783-c4a7-4fe8-b1f9-c30c6aa879db", + "9a7bbdcb-472a-4e31-b0c5-30d383850805" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "39a0001c-ee1e-47d4-940e-7a0b8debb1d2" + "b0d5f513-af7a-4312-ab80-9d2f232935b0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041032Z:39a0001c-ee1e-47d4-940e-7a0b8debb1d2" + "WESTUS2:20190411T185846Z:b0d5f513-af7a-4312-ab80-9d2f232935b0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:46 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFzct8=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95f611bc-2d54-4f14-99be-29001ad65797" + "8220aec6-c9a3-49c6-b44d-774c4ca7477b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:32 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFzct8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a0446d16-4814-4519-bc84-d9a9c7458fef" + "49f9ee4c-44f2-4572-9436-75adff831001" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "66605e69-b020-41df-b602-6af007a16270" + "bc49aa74-a197-4850-b35b-a76f7102b444" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041032Z:66605e69-b020-41df-b602-6af007a16270" + "WESTUS2:20190411T185847Z:bc49aa74-a197-4850-b35b-a76f7102b444" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:46 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFzct8=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5b24e9f-9342-455a-b64f-dfc4546a5be7" + "ec9b5c94-5898-4ad0-9b65-32c4fba579ed" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:32 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5d643fa4-711d-456a-bc5f-70cb482ff9fc" + "97f065f6-ed4a-412e-9764-4b2705dfcb1e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "55d3c62f-93d1-499f-aae3-f8d9bcda17bd" + "4bf737c1-d233-4f3f-b831-6b37145aed95" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041032Z:55d3c62f-93d1-499f-aae3-f8d9bcda17bd" + "WESTUS2:20190411T185847Z:4bf737c1-d233-4f3f-b831-6b37145aed95" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:46 GMT" + ], "Content-Length": [ "19" ], @@ -203,55 +203,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32f60ba2-73c7-469b-baaa-1796bba2dbac" + "c8805dff-7ddd-4f79-8430-8c748e597179" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:32 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5e7f0639-a412-4cc8-a245-186d84df1809" + "486f942b-bc6d-4d4f-955f-355ec0dd4b67" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-correlation-request-id": [ - "5affeb39-6b20-4193-965f-a146d00b9675" + "c8c3ea3f-f59d-4fd6-9857-ab218d5a5218" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041033Z:5affeb39-6b20-4193-965f-a146d00b9675" + "WESTUS2:20190411T185847Z:c8c3ea3f-f59d-4fd6-9857-ab218d5a5218" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:46 GMT" + ], "Content-Length": [ "1281" ], @@ -266,66 +266,66 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag6964?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc2OTY0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag9743?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc5NzQzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"productTag414\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"productTag3648\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a8cc9dab-061d-47d1-9d16-a2332502535f" + "9f4161e0-94e1-4b37-b3ca-463edc07bfb2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "64" + "65" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:33 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZMA=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAerM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4b7ca8a5-7709-445e-b137-132a0261324c" + "25a9dc31-9282-42dd-b724-e6f46c50b343" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "2b7a69fb-8ce9-4837-8f30-12091180d638" + "26795f21-67b4-4b61-82d4-915095b70c8b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041033Z:2b7a69fb-8ce9-4837-8f30-12091180d638" + "WESTUS2:20190411T185848Z:26795f21-67b4-4b61-82d4-915095b70c8b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:47 GMT" + ], "Content-Length": [ - "322" + "323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,64 +334,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag6964\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"productTag6964\",\r\n \"properties\": {\r\n \"displayName\": \"productTag414\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag9743\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"productTag9743\",\r\n \"properties\": {\r\n \"displayName\": \"productTag3648\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag6964?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzY5NjQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag9743?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzk3NDM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da070605-70d1-4b19-badd-536ab1453a2d" + "3bd1187f-f20a-43cf-be5a-bf7d9653eaa6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:34 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZMA=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAerM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a291b866-fd4a-4968-b3c6-027ebbff128a" + "85923323-7226-43ea-870d-365cd22318a6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "03d52e36-e1ab-4fcd-b7ea-8d1bb17d0082" + "8b91e318-b699-4364-bc85-48d03e1a95f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041034Z:03d52e36-e1ab-4fcd-b7ea-8d1bb17d0082" + "WESTUS2:20190411T185849Z:8b91e318-b699-4364-bc85-48d03e1a95f2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:48 GMT" + ], "Content-Length": [ - "348" + "349" ], "Content-Type": [ "application/json; charset=utf-8" @@ -400,61 +400,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag6964\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/tags\",\r\n \"name\": \"productTag6964\",\r\n \"properties\": {\r\n \"displayName\": \"productTag414\"\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/productTag9743\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/tags\",\r\n \"name\": \"productTag9743\",\r\n \"properties\": {\r\n \"displayName\": \"productTag3648\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3M/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3M/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8258d2f-4c31-4984-a8be-45ccbbb16198" + "a3db3e7e-29e5-4dd4-a356-df41ae35cbd3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e7376660-a75c-46ca-ba58-f932b5020bcd" + "7a25f7eb-2fa7-4203-87b3-ce58eba59d46" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11996" ], "x-ms-correlation-request-id": [ - "b1127490-a496-4fe2-8011-5b80c298f072" + "9e92723e-cf02-4765-8847-90617bfce9b3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041034Z:b1127490-a496-4fe2-8011-5b80c298f072" + "WESTUS2:20190411T185849Z:9e92723e-cf02-4765-8847-90617bfce9b3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:48 GMT" + ], "Content-Length": [ - "405" + "406" ], "Content-Type": [ "application/json; charset=utf-8" @@ -463,64 +463,64 @@ "-1" ] }, - "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/productTag6964\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/tags\",\r\n \"name\": \"productTag6964\",\r\n \"properties\": {\r\n \"displayName\": \"productTag414\"\r\n }\r\n }\r\n ]\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/productTag9743\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/tags\",\r\n \"name\": \"productTag9743\",\r\n \"properties\": {\r\n \"displayName\": \"productTag3648\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag6964?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzY5NjQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag9743?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzk3NDM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d0628d3-3c55-483a-b171-cc839312fe51" + "c7cd57bb-f6ee-42e9-a579-eed5f554de56" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:34 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZMA=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAerM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "af28e54f-93bd-44c1-b629-7721ca705f4b" + "64f75cc6-768e-436a-b7da-15dbcb401f89" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11995" ], "x-ms-correlation-request-id": [ - "30c384f9-fd9d-4ec8-9e7c-0542f1c65e66" + "316c62c3-39ff-4ace-bbc7-a5408b41dd6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041034Z:30c384f9-fd9d-4ec8-9e7c-0542f1c65e66" + "WESTUS2:20190411T185849Z:316c62c3-39ff-4ace-bbc7-a5408b41dd6a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:49 GMT" + ], "Content-Length": [ - "348" + "349" ], "Content-Type": [ "application/json; charset=utf-8" @@ -529,59 +529,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag6964\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/tags\",\r\n \"name\": \"productTag6964\",\r\n \"properties\": {\r\n \"displayName\": \"productTag414\"\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/productTag9743\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/tags\",\r\n \"name\": \"productTag9743\",\r\n \"properties\": {\r\n \"displayName\": \"productTag3648\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag6964?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzY5NjQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag9743?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzk3NDM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b14e40a5-dde2-499d-a12e-02e72e0b5233" + "534ab338-ae6e-4bc4-b1df-181b3371139e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6efd52f9-e7b2-44cd-95e1-1ed1bf98deb8" + "04208fcd-e1fd-4b45-80a7-e33cf3630e61" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11992" ], "x-ms-correlation-request-id": [ - "229fd4c1-c065-4890-b1ff-cf5a5c0702eb" + "be9a8b4c-5c84-40af-802a-3559889550ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041036Z:229fd4c1-c065-4890-b1ff-cf5a5c0702eb" + "WESTUS2:20190411T185852Z:be9a8b4c-5c84-40af-802a-3559889550ab" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:51 GMT" + ], "Content-Length": [ "79" ], @@ -596,57 +596,57 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tagResources?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdSZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tagResources?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdSZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b580ac99-b854-493f-a324-5d395e230cf6" + "c3d6bd9c-e4d2-48e9-b694-d3b433c7f372" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "42edca71-716a-4238-8ee2-693e148cfac8" + "28e425ba-0750-4483-83a1-4295499e19c3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11994" ], "x-ms-correlation-request-id": [ - "955ffec1-7066-4e2c-addc-8f1d2a5010c2" + "294b7139-1d98-4ff1-9071-f6e820f18d07" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041035Z:955ffec1-7066-4e2c-addc-8f1d2a5010c2" + "WESTUS2:20190411T185851Z:294b7139-1d98-4ff1-9071-f6e820f18d07" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:50 GMT" + ], "Content-Length": [ - "366" + "367" ], "Content-Type": [ "application/json; charset=utf-8" @@ -655,62 +655,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/productTag6964\",\r\n \"name\": \"productTag414\"\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/productTag9743\",\r\n \"name\": \"productTag3648\"\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag6964?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzY5NjQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag9743?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzk3NDM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f68f8df-0fa9-4f09-9164-56ee198c17f2" + "946cb068-615e-4aef-83b5-77701e1b11cc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:35 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZMA=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAerM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9366d760-f0ec-47ab-9c8b-54597bd38d0f" + "99c8adf2-d447-4258-b26d-f8b55267f230" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11993" ], "x-ms-correlation-request-id": [ - "003f9d73-a24b-41d9-9036-5cb7e67d8aa8" + "6e04d323-1aed-436e-bab5-a0eab603d152" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041035Z:003f9d73-a24b-41d9-9036-5cb7e67d8aa8" + "WESTUS2:20190411T185851Z:6e04d323-1aed-436e-bab5-a0eab603d152" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:50 GMT" + ], "Content-Length": [ "0" ], @@ -722,121 +722,115 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag6964?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzY5NjQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag9743?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzk3NDM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "988102bf-2aab-4187-ba4b-67222531c6c3" + "35c251cf-d779-496c-b985-a47dc167fad0" ], - "If-Match": [ - "\"AAAAAAAAZMA=\"" - ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43e927f7-ba2c-4f07-9adf-3e803f4a8bdb" + "5eddda28-ca0d-4d9a-a924-ebf5b5acaf19" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "9d6cc0ed-3af1-4463-a5b9-b909efdc8ca8" + "73d3a64f-34e3-41f1-b548-d9e26bddc3a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041036Z:9d6cc0ed-3af1-4463-a5b9-b909efdc8ca8" + "WESTUS2:20190411T185852Z:73d3a64f-34e3-41f1-b548-d9e26bddc3a9" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 18:58:51 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag6964?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzY5NjQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag9743?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzk3NDM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2697804d-78de-4b54-8a0b-1f3892be0a23" - ], - "If-Match": [ - "*" + "c274c409-3cbe-4851-9e64-01f5e3c821cb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "563aaa1b-37d3-48bc-8bad-e9e778569dc5" + "73761b56-08b7-4a96-8f7f-40795156c09c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "e62637ae-b319-4298-a961-829b9cac5fee" + "e0fc92ed-94c3-46cb-a429-c9995c27714a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041037Z:e62637ae-b319-4298-a961-829b9cac5fee" + "WESTUS2:20190411T185853Z:e0fc92ed-94c3-46cb-a429-c9995c27714a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:52 GMT" + ], "Expires": [ "-1" ] @@ -845,58 +839,58 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag6964?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc2OTY0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag9743?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc5NzQzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "981970d6-913c-45d4-a022-27c0cea79de9" + "d6f617bf-970b-4e19-810d-683cbc829bf6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:36 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZMA=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAerM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c6b31927-54a7-4f0a-bef6-f530375607b9" + "c86750bc-8005-4215-b9c7-b1620eecfef6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11991" ], "x-ms-correlation-request-id": [ - "0d9b9dc3-880e-43d3-a1ad-2ed42efae31e" + "36d00621-7d52-4867-866e-510b932cbe33" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041036Z:0d9b9dc3-880e-43d3-a1ad-2ed42efae31e" + "WESTUS2:20190411T185852Z:36d00621-7d52-4867-866e-510b932cbe33" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:51 GMT" + ], "Content-Length": [ "0" ], @@ -908,55 +902,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag6964?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc2OTY0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag9743?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc5NzQzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43240fda-83da-45e8-9736-904b1f7ca31c" + "b1c45aad-ecec-475f-b90e-994836e9cc5e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "564f68f8-4f47-4dd7-9c1b-f52b0fc1fea1" + "e5db5c21-b869-48ca-afe3-746b03a2201e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11990" ], "x-ms-correlation-request-id": [ - "e51e8907-2d50-4c78-a79d-eb45faec6e74" + "5094f595-725f-4bbb-b238-970ad0e96874" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041036Z:e51e8907-2d50-4c78-a79d-eb45faec6e74" + "WESTUS2:20190411T185852Z:5094f595-725f-4bbb-b238-970ad0e96874" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:52 GMT" + ], "Content-Length": [ "0" ], @@ -968,121 +962,121 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag6964?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc2OTY0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag9743?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc5NzQzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25b4f323-f54f-4cab-ba06-b1acd7d89eb4" + "c2b1f021-45c2-444e-8877-c3736b12f654" ], "If-Match": [ - "\"AAAAAAAAZMA=\"" + "\"AAAAAAAAerM=\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cde44ea8-aed5-483e-9c4c-7c8a05deead2" + "48310207-b488-4105-8b67-49b028e941ba" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "65c7c6c7-7acc-48aa-b805-af4f5a79181f" + "02f3625e-8e11-4c15-b9e3-737f1be6c25a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041036Z:65c7c6c7-7acc-48aa-b805-af4f5a79181f" + "WESTUS2:20190411T185852Z:02f3625e-8e11-4c15-b9e3-737f1be6c25a" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 18:58:52 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag6964?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc2OTY0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag9743?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc5NzQzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f98e92b-691d-4211-87b0-585b8bf4b0c7" + "394eec24-01d6-4e0f-81c9-735e66d5f6d5" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:37 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6b4e04b4-5b1e-4ce5-a3a5-5cbe09ffea05" + "c2f04b6f-0d29-438a-910b-44a1888314c2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "2a4e310d-0d26-4fe2-b8e6-a72b36f11a35" + "074be6c6-1658-4a0b-bcdd-8d5159cde80e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041037Z:2a4e310d-0d26-4fe2-b8e6-a72b36f11a35" + "WESTUS2:20190411T185853Z:074be6c6-1658-4a0b-bcdd-8d5159cde80e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 18:58:52 GMT" + ], "Expires": [ "-1" ] @@ -1093,8 +1087,8 @@ ], "Names": { "CreateListUpdateDeleteProductTags": [ - "productTag6964", - "productTag414" + "productTag9743", + "productTag3648" ] }, "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 3612cd678b47..302f9b514e78 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f878cb20-2d81-4605-ba0d-55647e22002c" + "bb6a9d6f-bf74-4144-9bde-e56a9240499d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:53 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f544ba59-d094-4061-ad70-2c68e1d54df1", - "830eb1a0-23f2-4fb9-866e-5745aaca74be" + "30f57e02-0416-4051-9a44-148901e00c68", + "3c41974f-4528-4cba-818a-92ea2d0fef78" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "63960e6b-8c4a-4ea7-a0f8-e2f8d1c58c2c" + "1fae7667-90d6-46a3-bf03-c52e5d5795d0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040953Z:63960e6b-8c4a-4ea7-a0f8-e2f8d1c58c2c" + "WESTUS2:20190411T020423Z:1fae7667-90d6-46a3-bf03-c52e5d5795d0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:22 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ded93f2-612c-4bce-bdc7-2d58d466d5f4" + "e9a9df20-ebf1-4bea-9f01-a547daacd0b2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:53 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a343968c-10a2-49b3-a76c-9d1184efe930" + "f0284bd1-45e0-4734-950e-674a805e174e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "25b8b519-b3d1-461f-9591-d1fd6898e2da" + "f62f695b-ca3f-4b4e-940c-354ce9189fc2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040954Z:25b8b519-b3d1-461f-9591-d1fd6898e2da" + "WESTUS2:20190411T020423Z:f62f695b-ca3f-4b4e-940c-354ce9189fc2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:22 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,62 +136,62 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/git?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL2dpdD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/git?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL2dpdD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6cede54a-d07d-4d95-8f31-3d6d27945d87" + "700d628a-f118-4e28-8af3-189c2cb4e558" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:54 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAYfsAAAAAAAAAAA==\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAbmcAAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b51cd2be-921c-447c-8997-e4cb0b6924b8" + "441e9ce6-85c7-4e3b-9b82-ac929c235800" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "ceb051f9-2594-41ef-88b1-435372bb1429" + "f7d0bc4d-cb12-480a-a188-0baf43fa02e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040954Z:ceb051f9-2594-41ef-88b1-435372bb1429" + "WESTUS2:20190411T020424Z:f7d0bc4d-cb12-480a-a188-0baf43fa02e4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:23 GMT" + ], "Content-Length": [ "237" ], @@ -202,62 +202,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"sKv89Pn0YfC8usB/WzcMZOw7pL60GE6H7KFPolZzA/zbHt86WsDKFQNGBco20lwK/zxkD+Lmd75JhyEUpg/YQQ==\",\r\n \"secondaryKey\": \"vuoTwYyWXBhDImVMU3PfgaobZJ9UxJni1x6023lV7YgRFCQixdz8Kjb685JVgNQij0SJFmoUtHHJtqNsV10jvw==\",\r\n \"enabled\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"/Lhc405FjXA/plprvDcdNNoq6BQj1FBAOixXA2yyu8VCZZYEwiCk52CpAd2DAp+xYbbj7++z1nOD1sWlFRkaLw==\",\r\n \"secondaryKey\": \"U2bbSpzKm6f78yBTb9rM2z0MZO1WyJ8vvwLSNdBqhAG2D0zeHJZCvn1GEya7OSTAZNpTYzKBFSFNVq9DkGLMwQ==\",\r\n \"enabled\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/git?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL2dpdD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/git?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL2dpdD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57e81d5a-0565-4a60-8040-15630a0e0b77" + "0ef925bf-4aab-4b4f-ab93-4ed84aa4976e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:54 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZIsAAAAAAAAAAA==\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcCAAAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f2e71a35-ab42-48a3-818c-51a149bb4a14" + "a4e1673a-fb99-4102-847e-fc003f182d75" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "39b62e5a-c40b-4a75-a22e-0d85120a41a7" + "fd30099b-69d3-4a3b-8165-2ed095d3f801" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040954Z:39b62e5a-c40b-4a75-a22e-0d85120a41a7" + "WESTUS2:20190411T020424Z:fd30099b-69d3-4a3b-8165-2ed095d3f801" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:23 GMT" + ], "Content-Length": [ "237" ], @@ -268,62 +268,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"Q0V+SvZ7CwKV3/UaiycDU665nwWTCujMBY1iuGpWwlyC9jRusEgp0DliI3H4NCPSmaOUoXwVFB+MoXi/KYdmZQ==\",\r\n \"secondaryKey\": \"vuoTwYyWXBhDImVMU3PfgaobZJ9UxJni1x6023lV7YgRFCQixdz8Kjb685JVgNQij0SJFmoUtHHJtqNsV10jvw==\",\r\n \"enabled\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"awnYx1hknvQNftAM2o7YQY54Tv+OYLhNCrfaPOc5rneJrUklmyDcG3vdzrNIp11FpPI1FEtM6dL0pHrtpyEDTw==\",\r\n \"secondaryKey\": \"U2bbSpzKm6f78yBTb9rM2z0MZO1WyJ8vvwLSNdBqhAG2D0zeHJZCvn1GEya7OSTAZNpTYzKBFSFNVq9DkGLMwQ==\",\r\n \"enabled\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/git?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL2dpdD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/git?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL2dpdD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87abcc39-b539-4055-88f7-fccce6812abe" + "a1057b89-6fbb-4a88-b0c1-e149ad3618aa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:54 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZI0AAAAAAAAAAA==\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcCIAAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f01960e8-5246-4399-920e-1295aa1b1f5f" + "6732e36a-c72b-43b6-a107-5d7b71b9319f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "211256fb-c403-4968-ab91-bd015f0e5033" + "fd410a86-ec4c-476f-adec-20211f48a2bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040955Z:211256fb-c403-4968-ab91-bd015f0e5033" + "WESTUS2:20190411T020424Z:fd410a86-ec4c-476f-adec-20211f48a2bd" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:23 GMT" + ], "Content-Length": [ "237" ], @@ -334,59 +334,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"Q0V+SvZ7CwKV3/UaiycDU665nwWTCujMBY1iuGpWwlyC9jRusEgp0DliI3H4NCPSmaOUoXwVFB+MoXi/KYdmZQ==\",\r\n \"secondaryKey\": \"/jYhC0X8jAswuOsbT+OXQJ/m52DwnfRi66ARo1deWXOtZ2Gndz9PBaFBYq8sdGw08JSrpGHWCxt7QpQDo/Gv6A==\",\r\n \"enabled\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"awnYx1hknvQNftAM2o7YQY54Tv+OYLhNCrfaPOc5rneJrUklmyDcG3vdzrNIp11FpPI1FEtM6dL0pHrtpyEDTw==\",\r\n \"secondaryKey\": \"t0JRysYS5al6cJSToiZpKO5rUkJnDvIcSqYEMMU5uzjO0jqnCI5ZedwZhS7LU4MWZn0HvXGEiyEFUnY+VAZneg==\",\r\n \"enabled\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/git/regeneratePrimaryKey?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL2dpdC9yZWdlbmVyYXRlUHJpbWFyeUtleT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/git/regeneratePrimaryKey?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL2dpdC9yZWdlbmVyYXRlUHJpbWFyeUtleT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd5fb2ef-4aff-40f6-b7e6-955cad2a9ce3" + "7ac19295-7eff-4f68-85d4-2604d3139a6d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f47c9974-0487-4fd5-9a8c-91b67a984c8d" + "ee8178d4-68c8-4ce1-8c54-1420e33e0944" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "38a71264-7bf2-4912-916a-3a55c2bc771c" + "46b7051a-9626-415c-8b31-3934639152c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040954Z:38a71264-7bf2-4912-916a-3a55c2bc771c" + "WESTUS2:20190411T020424Z:46b7051a-9626-415c-8b31-3934639152c0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:23 GMT" + ], "Expires": [ "-1" ] @@ -395,55 +395,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/git/regenerateSecondaryKey?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL2dpdC9yZWdlbmVyYXRlU2Vjb25kYXJ5S2V5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/git/regenerateSecondaryKey?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL2dpdC9yZWdlbmVyYXRlU2Vjb25kYXJ5S2V5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a99b128-d4db-4dec-8e8c-bddf3645bd1d" + "e86d1e5c-6f07-4b05-9d67-956a454199cf" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e344a78-848c-4be3-ab08-64ef987f193f" + "ecde203c-6491-4530-876b-d9fbb7ee1ca1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "acedfaa7-7d8d-48b1-bd0a-44bfbd2d802f" + "13aaf262-caf6-4622-9863-6fc7de69b6bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040954Z:acedfaa7-7d8d-48b1-bd0a-44bfbd2d802f" + "WESTUS2:20190411T020424Z:13aaf262-caf6-4622-9863-6fc7de69b6bb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:04:23 GMT" + ], "Expires": [ "-1" ] 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 09c948fe2820..45dada4cd5dd 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "519accec-5a6e-4cb1-9a49-01991714b4bf" + "ba36bfca-702d-4824-96ab-fd2b7e776900" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:22 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "571e5427-7d7a-4359-9ee3-30323a1a3fda", - "6deb88d1-38e1-4b73-9189-0b447a38c1fc" + "80529691-659e-4f24-8d9d-832b9a82590c", + "f98d9a63-4032-4d38-9c3e-f2710f55093c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "61874237-6923-40f8-8100-15df687fffb5" + "d341a972-5eb6-4e5d-9a03-f67cb07eeb67" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041222Z:61874237-6923-40f8-8100-15df687fffb5" + "WESTUS2:20190411T021433Z:d341a972-5eb6-4e5d-9a03-f67cb07eeb67" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:32 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d30cc3c-e940-484c-8e04-5a3a0a87b4fd" + "a816e852-a488-4b88-a2dc-120990457e2c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:22 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a8dd5fb4-2c1a-42a1-a541-27a5fdae4017" + "7989f478-8dc2-42e0-932e-774aea76242b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "858f60cf-5a98-48f4-9b04-ecb285b3b9ec" + "d6d4b8ff-1b26-4640-b744-d40926064bae" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041223Z:858f60cf-5a98-48f4-9b04-ecb285b3b9ec" + "WESTUS2:20190411T021433Z:d6d4b8ff-1b26-4640-b744-d40926064bae" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:33 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,62 +136,62 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "106ffd58-a1b0-4d9c-ab8d-0c970215213e" + "ebed38b6-3cb2-4d20-96ca-a22adda330df" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:23 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAYsYAAAAAAAAAAA==\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAb/4AAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c922027-487e-4156-b8a2-b7a14ae63938" + "c0e334df-d544-45c1-bdaa-e0c215d4a2b6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "e82ace45-e955-485c-85e0-f5f0feaa0d79" + "10e84dec-f468-4016-9058-f900c4b66e9e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041223Z:e82ace45-e955-485c-85e0-f5f0feaa0d79" + "WESTUS2:20190411T021433Z:10e84dec-f468-4016-9058-f900c4b66e9e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:33 GMT" + ], "Content-Length": [ "246" ], @@ -202,62 +202,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"yqxYP3XK9fzMI0uRS6Uy9b69TmpIJj26x+pbu5qvw7wizFjHEGlVpW+ngbHDN3XQ1MeGEU9x0XrvgovwBME8IQ==\",\r\n \"secondaryKey\": \"59UcR6hHsL0zGXdwdQL0ZYJBTPmecj3oOoP8kN9dSrRuhZgL+kbgv/vN986eiXwuZ+ABhChReS+prZgwKhls7w==\",\r\n \"enabled\": false\r\n}", + "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"/3MSMRsaOolYTTxS1B2kwMjd4D8j2k0xIX1B1NJpkOlaSX6ZziIi4c/cer7321ZBVyNFmqnqdJ2yClCfeoDPMA==\",\r\n \"secondaryKey\": \"M6yy/BtvE6YSt5RTD3jje66MiSAuHKb8IMNFllziIcMNBhOsv1g9yBrco98TZmhzDz+8qoUS6Epu8Ux7oQqP3w==\",\r\n \"enabled\": false\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26c1e4a0-341f-41bd-9ef8-5d54ac30b54e" + "ddcd2c23-7529-4a82-bb9e-e89d3ffd3aac" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:23 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZPsAAAAAAAAAAA==\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcgsAAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8180cba1-d26a-4d31-ab1f-6f6c71bf5a1d" + "a00ad9c0-eaad-4905-b60c-7bf46dfd954e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "3b87a548-5bb8-42d3-9d43-32e8a552f76a" + "3df73db2-e48a-40c5-854c-b1f3f3be6a4f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041223Z:3b87a548-5bb8-42d3-9d43-32e8a552f76a" + "WESTUS2:20190411T021434Z:3df73db2-e48a-40c5-854c-b1f3f3be6a4f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:33 GMT" + ], "Content-Length": [ "245" ], @@ -268,62 +268,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"yqxYP3XK9fzMI0uRS6Uy9b69TmpIJj26x+pbu5qvw7wizFjHEGlVpW+ngbHDN3XQ1MeGEU9x0XrvgovwBME8IQ==\",\r\n \"secondaryKey\": \"59UcR6hHsL0zGXdwdQL0ZYJBTPmecj3oOoP8kN9dSrRuhZgL+kbgv/vN986eiXwuZ+ABhChReS+prZgwKhls7w==\",\r\n \"enabled\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"/3MSMRsaOolYTTxS1B2kwMjd4D8j2k0xIX1B1NJpkOlaSX6ZziIi4c/cer7321ZBVyNFmqnqdJ2yClCfeoDPMA==\",\r\n \"secondaryKey\": \"M6yy/BtvE6YSt5RTD3jje66MiSAuHKb8IMNFllziIcMNBhOsv1g9yBrco98TZmhzDz+8qoUS6Epu8Ux7oQqP3w==\",\r\n \"enabled\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30a62dcc-3c16-4a54-affc-49a451074129" + "df722f0e-c82e-45e5-93a8-27d75d36724e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:23 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZPwAAAAAAAAAAA==\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcgwAAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eb2b6c4d-ab21-482a-a97b-d24204f1f5f9" + "8a504169-2527-408a-82a0-776d70686a82" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "edfe7eff-5d11-4466-9fb8-a0f862680fa4" + "8450e092-11dd-4c5c-affe-a371c686633e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041223Z:edfe7eff-5d11-4466-9fb8-a0f862680fa4" + "WESTUS2:20190411T021434Z:8450e092-11dd-4c5c-affe-a371c686633e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:33 GMT" + ], "Content-Length": [ "245" ], @@ -334,62 +334,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"CvWKyI4/suFpY82fHQ156yADgGBnRj31/3jFp5QlBIO7tciyNm5LlAigVwPK+Hfb53xwuPRgDNd78VP5WMgU4Q==\",\r\n \"secondaryKey\": \"59UcR6hHsL0zGXdwdQL0ZYJBTPmecj3oOoP8kN9dSrRuhZgL+kbgv/vN986eiXwuZ+ABhChReS+prZgwKhls7w==\",\r\n \"enabled\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"+uDMwQc3yNj9K8JLomdSzg7OwkUUs8WpfmUoc5MzgICScXS9bdFnt2aJBvgqLJJEijfu6Wm7MuCp/I2bap6t9Q==\",\r\n \"secondaryKey\": \"M6yy/BtvE6YSt5RTD3jje66MiSAuHKb8IMNFllziIcMNBhOsv1g9yBrco98TZmhzDz+8qoUS6Epu8Ux7oQqP3w==\",\r\n \"enabled\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64a474f3-97e1-416a-a0a3-8751c48e05ee" + "c5fa8538-4251-487a-941c-fc8577531c3f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:23 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZP4AAAAAAAAAAA==\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcg4AAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f4259878-48c1-4e9d-8424-7f48660304bd" + "152f564a-5933-4875-9213-627e882dd090" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "5a9277ec-fd37-4417-bc33-332e02b46592" + "156d6927-3819-4ab4-9d55-26fb525748dd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041224Z:5a9277ec-fd37-4417-bc33-332e02b46592" + "WESTUS2:20190411T021434Z:156d6927-3819-4ab4-9d55-26fb525748dd" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:34 GMT" + ], "Content-Length": [ "245" ], @@ -400,68 +400,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"CvWKyI4/suFpY82fHQ156yADgGBnRj31/3jFp5QlBIO7tciyNm5LlAigVwPK+Hfb53xwuPRgDNd78VP5WMgU4Q==\",\r\n \"secondaryKey\": \"Xe86ocvEPuFc1/bonCEV0hb5rSHcBiwVaYFECgbHhp4oyVBuD9DBZX2nRZHf1utAWyrZTE3khM80hjYwKQNaBw==\",\r\n \"enabled\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"+uDMwQc3yNj9K8JLomdSzg7OwkUUs8WpfmUoc5MzgICScXS9bdFnt2aJBvgqLJJEijfu6Wm7MuCp/I2bap6t9Q==\",\r\n \"secondaryKey\": \"lbL6V9+d4hhEVipwryhTgfsVrjzivSeohFpbXXmlUBIJvaL8q7BlvA0okqdiLGLkOnDB2kupmEZULTOVwDPPUg==\",\r\n \"enabled\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"enabled\": true\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "84815c2f-a4f5-429b-8046-bbb33aabfb2a" + "3a6c12c4-99ac-4126-aa43-6e1bdb19c6df" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "23" + "49" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ceb80358-19c6-48e0-9a06-819064085dd4" + "13267d66-9017-4b62-9377-8a79bda4b5a5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "94fc01ad-cc51-403f-984e-bc8adfbe89c0" + "10788e5f-149f-4f1b-8b0b-28cb585dc432" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041223Z:94fc01ad-cc51-403f-984e-bc8adfbe89c0" + "WESTUS2:20190411T021434Z:10788e5f-149f-4f1b-8b0b-28cb585dc432" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:33 GMT" + ], "Expires": [ "-1" ] @@ -470,64 +470,64 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"enabled\": false\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "05f0822d-8952-45bc-98aa-5e5d63cd17f9" + "c500609a-a691-4ed9-958c-91e52efbdddf" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "24" + "50" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "420f3e84-2b47-4b5f-b69e-95b94a04aeab" + "7168c597-75ca-4ea5-a31f-00acede49442" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "c9c6b367-690b-484f-b66b-0f82bb1d8fb1" + "b6781556-1429-4b81-bc59-6b2367f01c7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041224Z:c9c6b367-690b-484f-b66b-0f82bb1d8fb1" + "WESTUS2:20190411T021434Z:b6781556-1429-4b81-bc59-6b2367f01c7c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:34 GMT" + ], "Expires": [ "-1" ] @@ -536,55 +536,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/regeneratePrimaryKey?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL3JlZ2VuZXJhdGVQcmltYXJ5S2V5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/regeneratePrimaryKey?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL3JlZ2VuZXJhdGVQcmltYXJ5S2V5P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03e1f57e-fecf-4c3b-849e-007eb1383567" + "9c1aa15b-ebd2-414c-a517-07998e149482" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bec14558-d547-47cb-9670-5734e0903b9d" + "e0f768d5-cc0a-46c3-8c57-e2e625a1f2df" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "916d2e39-4619-44b4-9e6d-21194555e6aa" + "1b3fba05-acb6-48a3-b6dd-31b554394fae" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041223Z:916d2e39-4619-44b4-9e6d-21194555e6aa" + "WESTUS2:20190411T021434Z:1b3fba05-acb6-48a3-b6dd-31b554394fae" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:33 GMT" + ], "Expires": [ "-1" ] @@ -593,55 +593,55 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/regenerateSecondaryKey?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL3JlZ2VuZXJhdGVTZWNvbmRhcnlLZXk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/regenerateSecondaryKey?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL3JlZ2VuZXJhdGVTZWNvbmRhcnlLZXk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1af39e7-ca7d-4952-a5f4-d2dd391ca27b" + "f59f6c08-4619-49ad-b2e5-e972205f2d34" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67753702-a198-4a30-b9f3-57a056659d06" + "7d0aca6e-e3a8-4606-bd3a-1e41e37715da" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "4feb2da2-1680-4958-9b03-a2bfb7696322" + "a9cb2ad4-ac9c-4018-b8a7-cd1a9d508150" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041223Z:4feb2da2-1680-4958-9b03-a2bfb7696322" + "WESTUS2:20190411T021434Z:a9cb2ad4-ac9c-4018-b8a7-cd1a9d508150" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:14:33 GMT" + ], "Expires": [ "-1" ] 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 17b59a79bcdb..5084995af08a 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "730b97b2-7a28-406f-835d-71c7657cbed4" + "22394e9a-b9bb-4d33-ab94-a3a2f792d35e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:37 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "73688586-172b-4363-a628-875a3ef0c453", - "f44723e7-ec9e-425a-8a31-65022e449a2c" + "dbba9966-144d-4e83-adbb-e91b5c0069e2", + "321a31ba-30b0-4e88-8269-de40f471d6ee" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "65297fa4-5de8-4ade-97cb-f138b9714d6d" + "5cd7b068-f995-427a-b9fb-031d4a3b4de2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041038Z:65297fa4-5de8-4ade-97cb-f138b9714d6d" + "WESTUS2:20190411T020520Z:5cd7b068-f995-427a-b9fb-031d4a3b4de2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:20 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a66638c2-025c-4bf6-a782-00b1403611b2" + "8c8f988d-a24b-49ad-992d-3bf6557df73d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:37 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1075919f-7e09-4ad0-b4ee-fc7b21b94a0b" + "258c2c7b-86b2-464b-93f7-ac419e26451f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "be922612-fe16-44f2-98a2-2fd2ac984a2a" + "830a36ce-1b3d-4df5-9a33-24d8407c8100" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041038Z:be922612-fe16-44f2-98a2-2fd2ac984a2a" + "WESTUS2:20190411T020521Z:830a36ce-1b3d-4df5-9a33-24d8407c8100" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:21 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,62 +136,62 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/git?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL2dpdD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/access/git?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvYWNjZXNzL2dpdD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85d610d9-80fe-4bfe-8aca-e708a0487f87" + "0d90fdda-c363-44d2-9d88-af764a779b8a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:37 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZI0AAAAAAAAAAA==\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcCIAAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ed256336-bdce-4fe3-84c1-02b413bb8b6d" + "14112b99-b6ed-430b-bcb8-e74281e1ae42" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "3ded7a32-789d-499e-a57e-945f716be148" + "716226a0-3986-411d-a68d-49f6eaa31f3b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041038Z:3ded7a32-789d-499e-a57e-945f716be148" + "WESTUS2:20190411T020521Z:716226a0-3986-411d-a68d-49f6eaa31f3b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:21 GMT" + ], "Content-Length": [ "237" ], @@ -202,59 +202,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"Q0V+SvZ7CwKV3/UaiycDU665nwWTCujMBY1iuGpWwlyC9jRusEgp0DliI3H4NCPSmaOUoXwVFB+MoXi/KYdmZQ==\",\r\n \"secondaryKey\": \"/jYhC0X8jAswuOsbT+OXQJ/m52DwnfRi66ARo1deWXOtZ2Gndz9PBaFBYq8sdGw08JSrpGHWCxt7QpQDo/Gv6A==\",\r\n \"enabled\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"awnYx1hknvQNftAM2o7YQY54Tv+OYLhNCrfaPOc5rneJrUklmyDcG3vdzrNIp11FpPI1FEtM6dL0pHrtpyEDTw==\",\r\n \"secondaryKey\": \"t0JRysYS5al6cJSToiZpKO5rUkJnDvIcSqYEMMU5uzjO0jqnCI5ZedwZhS7LU4MWZn0HvXGEiyEFUnY+VAZneg==\",\r\n \"enabled\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/syncState?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9zeW5jU3RhdGU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/syncState?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9zeW5jU3RhdGU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "499d7492-e937-4a44-86d7-19a3f02d3ce8" + "fc0ce307-128a-4463-8210-180cc9f836ba" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:38 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3601c16c-d6b7-4ede-b7b2-8dccdc46464f" + "4e7cb79b-4b99-4138-8e8c-5e64f63f922f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "856973fe-fed8-483e-97ce-8e845b955272" + "42267aa6-b76f-4e9a-96b3-6cd440abe655" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041038Z:856973fe-fed8-483e-97ce-8e845b955272" + "WESTUS2:20190411T020521Z:42267aa6-b76f-4e9a-96b3-6cd440abe655" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:21 GMT" + ], "Content-Length": [ "310" ], @@ -265,59 +265,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"9445bd01b9af2b1b9c41b52a373e14ff5292489e\",\r\n \"isExport\": false,\r\n \"isSynced\": false,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2019-04-02T02:27:39.4450111Z\",\r\n \"configurationChangeDate\": \"2019-04-02T04:10:36.3861738Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5ca2c87db5974412ac07dac8\"\r\n}", + "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"709678560f72e689e469cf98ba9ba6d1b7736893\",\r\n \"isExport\": false,\r\n \"isSynced\": false,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2019-04-11T01:31:48.1555249Z\",\r\n \"configurationChangeDate\": \"2019-04-11T02:05:09.6627126Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5cae98eab597440f487b0d7c\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/syncState?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9zeW5jU3RhdGU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/syncState?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9zeW5jU3RhdGU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a53e882a-e63e-497b-8b8f-3a2255cabc7c" + "3bfe31bd-edc1-475a-aec0-83e1558ee7a7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:11:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5925dab1-03ba-4249-a979-cf6f0a55605f" + "bf0c69a6-c9ef-4982-83c5-5a320fe29a96" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "c8d9b2d9-df3e-4986-857b-66915c004bcf" + "3f294473-73a8-4e45-b602-e36b7d5b7f5a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041109Z:c8d9b2d9-df3e-4986-857b-66915c004bcf" + "WESTUS2:20190411T020552Z:3f294473-73a8-4e45-b602-e36b7d5b7f5a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:51 GMT" + ], "Content-Length": [ "308" ], @@ -328,59 +328,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"9b30ffe95c10ad80b7a329f54fc0878f5c4f7687\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2019-04-02T04:10:55.2928048Z\",\r\n \"configurationChangeDate\": \"2019-04-02T04:10:36.3861738Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5ca2e0beb5974412ac07dbb1\"\r\n}", + "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"7873d93b0057fecb4246c2c76801672d857f01d0\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2019-04-11T02:05:38.3673087Z\",\r\n \"configurationChangeDate\": \"2019-04-11T02:05:09.6627126Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5caea0e1b597440f487b0dc1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/syncState?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9zeW5jU3RhdGU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/syncState?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9zeW5jU3RhdGU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "daa95f3c-8585-437e-83bd-783fcf840824" + "47fe7128-66e0-4422-9f48-11ce345e9b31" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c065134-c977-497c-b026-3ad672a222db" + "13887c05-98fc-4364-b94d-996fe27917c7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "6f91aa04-12eb-4502-872b-7e96977e64c7" + "353669c4-c2fa-46aa-85a2-5cb706bd23cb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041210Z:6f91aa04-12eb-4502-872b-7e96977e64c7" + "WESTUS2:20190411T020653Z:353669c4-c2fa-46aa-85a2-5cb706bd23cb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:06:52 GMT" + ], "Content-Length": [ "309" ], @@ -391,68 +391,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"9b30ffe95c10ad80b7a329f54fc0878f5c4f7687\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2019-04-02T04:12:04.3409749Z\",\r\n \"configurationChangeDate\": \"2019-04-02T04:12:04.3409749Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5ca2e0fcb5974412ac07dbb5\"\r\n}", + "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"7873d93b0057fecb4246c2c76801672d857f01d0\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2019-04-11T02:06:47.1833088Z\",\r\n \"configurationChangeDate\": \"2019-04-11T02:06:47.1833088Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5caea11eb597440f487b0dc5\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/save?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9zYXZlP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/save?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9zYXZlP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"branch\": \"master\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "adb5583b-8e03-4742-91e5-2372ee1bc8f7" + "3472e993-2299-4f30-a8eb-46788f54fd8c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "26" + "52" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:38 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/5ca2e0beb5974412ac07dbb1?api-version=2018-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5caea0e1b597440f487b0dc1?api-version=2019-01-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f440dd8a-9ce9-427e-b10d-58639215f031" + "1ffb28ae-f1ca-4d96-bebb-6be69b5da86b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "9049ede9-9609-4641-8775-bde64fe24501" + "ec50ff99-e79c-4e6a-ad77-193e9cf9492c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041039Z:9049ede9-9609-4641-8775-bde64fe24501" + "WESTUS2:20190411T020521Z:ec50ff99-e79c-4e6a-ad77-193e9cf9492c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:21 GMT" + ], "Content-Length": [ "33" ], @@ -463,55 +463,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5ca2e0beb5974412ac07dbb1\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"5caea0e1b597440f487b0dc1\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5ca2e0beb5974412ac07dbb1?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVjYTJlMGJlYjU5NzQ0MTJhYzA3ZGJiMT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5caea0e1b597440f487b0dc1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVjYWVhMGUxYjU5NzQ0MGY0ODdiMGRjMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:11:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "19363e62-8883-47db-8858-9223709c6845" + "85c116af-601f-489e-a306-f5158a69a26f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "1f9d900b-cc09-4158-bf42-d861c16122d3" + "6f05c60d-81da-402b-9d1a-e8590cd2e979" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041109Z:1f9d900b-cc09-4158-bf42-d861c16122d3" + "WESTUS2:20190411T020551Z:6f05c60d-81da-402b-9d1a-e8590cd2e979" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:51 GMT" + ], "Content-Length": [ - "274" + "272" ], "Content-Type": [ "application/json; charset=utf-8" @@ -520,55 +520,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5ca2e0beb5974412ac07dbb1\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-04-02T04:10:38.993Z\",\r\n \"updated\": \"2019-04-02T04:10:55.277Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 9b30ffe95c10ad80b7a329f54fc0878f5c4f7687.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5caea0e1b597440f487b0dc1\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-04-11T02:05:21.56Z\",\r\n \"updated\": \"2019-04-11T02:05:38.36Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 7873d93b0057fecb4246c2c76801672d857f01d0.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5ca2e0beb5974412ac07dbb1?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVjYTJlMGJlYjU5NzQ0MTJhYzA3ZGJiMT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5caea0e1b597440f487b0dc1?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVjYWVhMGUxYjU5NzQ0MGY0ODdiMGRjMT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:11:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "efd465f5-47c9-4f6b-a6cc-5ddb2d1ed3a5" + "a4c29bae-0404-40a2-9829-05c5657b3da4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "899f8cc9-4ae4-4aa3-901f-75c31e325cb6" + "44bad980-80d5-4dd0-aeac-6f8cab589f43" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041109Z:899f8cc9-4ae4-4aa3-901f-75c31e325cb6" + "WESTUS2:20190411T020552Z:44bad980-80d5-4dd0-aeac-6f8cab589f43" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:51 GMT" + ], "Content-Length": [ - "274" + "272" ], "Content-Type": [ "application/json; charset=utf-8" @@ -577,68 +577,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5ca2e0beb5974412ac07dbb1\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-04-02T04:10:38.993Z\",\r\n \"updated\": \"2019-04-02T04:10:55.277Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 9b30ffe95c10ad80b7a329f54fc0878f5c4f7687.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5caea0e1b597440f487b0dc1\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-04-11T02:05:21.56Z\",\r\n \"updated\": \"2019-04-11T02:05:38.36Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 7873d93b0057fecb4246c2c76801672d857f01d0.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/validate?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/validate?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"branch\": \"master\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3b764906-313e-4293-ac68-7f10f97852fe" + "f9dd69a0-77ac-44e7-8cfd-1a085b9fd5ba" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "26" + "52" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:11:09 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/5ca2e0ddb5974412ac07dbb3?api-version=2018-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5caea100b597440f487b0dc3?api-version=2019-01-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6dccd26c-0297-4c8d-8d3b-ad7adb493e47" + "21e123e7-bb25-4d6e-8341-1b231b3d52d2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "08b570dd-4fd6-478a-a86b-32b1a5a07a23" + "172ee58c-2ced-412a-9102-c8d55bea061d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041109Z:08b570dd-4fd6-478a-a86b-32b1a5a07a23" + "WESTUS2:20190411T020552Z:172ee58c-2ced-412a-9102-c8d55bea061d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:52 GMT" + ], "Content-Length": [ "33" ], @@ -649,53 +649,53 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5ca2e0ddb5974412ac07dbb3\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"5caea100b597440f487b0dc3\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5ca2e0ddb5974412ac07dbb3?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVjYTJlMGRkYjU5NzQ0MTJhYzA3ZGJiMz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5caea100b597440f487b0dc3?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVjYWVhMTAwYjU5NzQ0MGY0ODdiMGRjMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:11:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "42cb5646-e9bf-428f-ba28-24d98c4b2f77" + "7a88028f-f7c1-4854-bfeb-f394857cc05a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "ad0137e0-5638-4359-a7a8-2aff5ca94299" + "e8f38ea8-c5df-484e-a586-56c685734e91" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041140Z:ad0137e0-5638-4359-a7a8-2aff5ca94299" + "WESTUS2:20190411T020622Z:e8f38ea8-c5df-484e-a586-56c685734e91" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:06:21 GMT" + ], "Content-Length": [ "197" ], @@ -706,53 +706,53 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5ca2e0ddb5974412ac07dbb3\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-04-02T04:11:09.587Z\",\r\n \"updated\": \"2019-04-02T04:11:15.383Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5caea100b597440f487b0dc3\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-04-11T02:05:52.337Z\",\r\n \"updated\": \"2019-04-11T02:05:57.947Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5ca2e0ddb5974412ac07dbb3?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVjYTJlMGRkYjU5NzQ0MTJhYzA3ZGJiMz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5caea100b597440f487b0dc3?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVjYWVhMTAwYjU5NzQ0MGY0ODdiMGRjMz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:11:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "716fc81a-bf99-4132-9c2e-cfd8ae65419b" + "6201ad8d-fd62-4272-bb10-ed438ff6c786" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "59131a7a-44c2-449d-8e63-be8763b60336" + "6a0e18a5-9267-40c2-bf14-9cf35ff4a740" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041140Z:59131a7a-44c2-449d-8e63-be8763b60336" + "WESTUS2:20190411T020622Z:6a0e18a5-9267-40c2-bf14-9cf35ff4a740" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:06:21 GMT" + ], "Content-Length": [ "197" ], @@ -763,68 +763,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5ca2e0ddb5974412ac07dbb3\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-04-02T04:11:09.587Z\",\r\n \"updated\": \"2019-04-02T04:11:15.383Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5caea100b597440f487b0dc3\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-04-11T02:05:52.337Z\",\r\n \"updated\": \"2019-04-11T02:05:57.947Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/deploy?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9kZXBsb3k/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/deploy?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9kZXBsb3k/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"branch\": \"master\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8a9fd196-432d-43ea-a504-fc0dc13d2fb9" + "927fc8d2-1e99-43a9-aed5-5ecadcf28e38" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "26" + "52" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:11:39 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/5ca2e0fcb5974412ac07dbb5?api-version=2018-01-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5caea11eb597440f487b0dc5?api-version=2019-01-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bef31636-afc4-46dc-82d2-2c8c3f33e09d" + "ac8d9645-04c9-4613-b6b8-960625cea21c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "49dd294d-bd18-434a-adcd-4538fd9ec24e" + "79bc98a3-e86a-4d87-a724-026526fe6680" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041140Z:49dd294d-bd18-434a-adcd-4538fd9ec24e" + "WESTUS2:20190411T020622Z:79bc98a3-e86a-4d87-a724-026526fe6680" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:06:22 GMT" + ], "Content-Length": [ "33" ], @@ -835,53 +835,53 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5ca2e0fcb5974412ac07dbb5\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"5caea11eb597440f487b0dc5\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5ca2e0fcb5974412ac07dbb5?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVjYTJlMGZjYjU5NzQ0MTJhYzA3ZGJiNT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5caea11eb597440f487b0dc5?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVjYWVhMTFlYjU5NzQ0MGY0ODdiMGRjNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "afb9a660-0e26-47d0-9e4d-ee62c03d9d68" + "746c679a-3dc9-4c2c-b14a-643c6b2194b9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "139fd182-6887-456f-996d-4073ea96da9b" + "023b7751-f049-499e-9e54-52179199bc29" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041210Z:139fd182-6887-456f-996d-4073ea96da9b" + "WESTUS2:20190411T020653Z:023b7751-f049-499e-9e54-52179199bc29" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:06:52 GMT" + ], "Content-Length": [ "378" ], @@ -892,53 +892,53 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5ca2e0fcb5974412ac07dbb5\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-04-02T04:11:40.32Z\",\r\n \"updated\": \"2019-04-02T04:12:04.307Z\",\r\n \"resultInfo\": \"Latest commit 9b30ffe95c10ad80b7a329f54fc0878f5c4f7687 was successfully deployed from master. Objects created: 0, updated: 0, deleted: 0. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5caea11eb597440f487b0dc5\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-04-11T02:06:22.68Z\",\r\n \"updated\": \"2019-04-11T02:06:47.167Z\",\r\n \"resultInfo\": \"Latest commit 7873d93b0057fecb4246c2c76801672d857f01d0 was successfully deployed from master. Objects created: 0, updated: 0, deleted: 0. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5ca2e0fcb5974412ac07dbb5?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVjYTJlMGZjYjU5NzQ0MTJhYzA3ZGJiNT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5caea11eb597440f487b0dc5?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVjYWVhMTFlYjU5NzQ0MGY0ODdiMGRjNT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:12:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab31ad84-3110-4028-a47e-c54b95c96d86" + "cd58a282-4094-4eed-a293-697e1d9fedcc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "68201819-6d5a-448a-a9f1-2acab5343277" + "3eeeb78b-6390-4449-bd56-33751307d3b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041210Z:68201819-6d5a-448a-a9f1-2acab5343277" + "WESTUS2:20190411T020653Z:3eeeb78b-6390-4449-bd56-33751307d3b6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:06:52 GMT" + ], "Content-Length": [ "378" ], @@ -949,7 +949,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5ca2e0fcb5974412ac07dbb5\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-04-02T04:11:40.32Z\",\r\n \"updated\": \"2019-04-02T04:12:04.307Z\",\r\n \"resultInfo\": \"Latest commit 9b30ffe95c10ad80b7a329f54fc0878f5c4f7687 was successfully deployed from master. Objects created: 0, updated: 0, deleted: 0. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5caea11eb597440f487b0dc5\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2019-04-11T02:06:22.68Z\",\r\n \"updated\": \"2019-04-11T02:06:47.167Z\",\r\n \"resultInfo\": \"Latest commit 7873d93b0057fecb4246c2c76801672d857f01d0 was successfully deployed from master. Objects created: 0, updated: 0, deleted: 0. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", "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 3dead2e12c2c..8cb80be1f90d 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "11677001-2297-486f-8b5d-bba94903b9dc" + "3d831def-67e1-4d93-8ad2-cb99d26d4c77" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:01 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91da0982-6a8e-4d75-9dfe-ff7396b7e956", - "d90ca0ba-9627-47ea-9e19-371ffc2840d0" + "4b7fff45-7250-453f-8c86-c83119a13207", + "96106f89-512f-452b-ae6d-785c0d9b582a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-correlation-request-id": [ - "d5892bc0-d4fe-41a3-bb47-34de05b43fd2" + "59dffd63-6bff-4029-8192-7faebe3cf66d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041001Z:d5892bc0-d4fe-41a3-bb47-34de05b43fd2" + "WESTUS2:20190411T020511Z:59dffd63-6bff-4029-8192-7faebe3cf66d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:10 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c839396a-6c05-4e9b-9df8-b8d19b0cb9e2" + "a1043457-8060-421b-bb57-9dd0b0bbc141" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:01 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "979bf9b4-1cfd-458c-a9e3-a8629f1e77cb" + "4fb9e35e-28b8-470c-b3a1-0644c40ba4e5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11999" ], "x-ms-correlation-request-id": [ - "3017e061-4fa7-4698-8b42-1e122b24d744" + "78b64d34-9d45-419a-9b9f-71a4c76713e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041001Z:3017e061-4fa7-4698-8b42-1e122b24d744" + "WESTUS2:20190411T020511Z:78b64d34-9d45-419a-9b9f-71a4c76713e1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:10 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c56724f-145a-4718-bf6b-8fe3cddde3e5" + "8b1efdf3-648e-4a9d-aa59-89c469661f78" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:01 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5bd725e3-e5ee-4f1f-b523-9b970fe07aa2" + "c1af287c-a89c-4714-a444-0a5423ebc53a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11998" ], "x-ms-correlation-request-id": [ - "afc65034-26ff-4426-960d-dd7cc5f2bca0" + "41a8bf46-8bc8-43d9-b7b8-ec50272b614e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041002Z:afc65034-26ff-4426-960d-dd7cc5f2bca0" + "WESTUS2:20190411T020511Z:41a8bf46-8bc8-43d9-b7b8-ec50272b614e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:11 GMT" + ], "Content-Length": [ "667" ], @@ -203,66 +203,66 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId1512?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQxNTEyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4400?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NDAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"active\",\r\n \"note\": \"userNote332\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"firstName\": \"userFirstName8013\",\r\n \"lastName\": \"userLastName7390\",\r\n \"password\": \"userPassword2127\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"active\",\r\n \"note\": \"userNote5180\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"firstName\": \"userFirstName3849\",\r\n \"lastName\": \"userLastName9082\",\r\n \"password\": \"userPassword3685\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0bd830d0-0e8a-4912-bf33-1f31b42a8391" + "0b75ba10-caa8-4c86-abc6-d5e0681f0ee5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "231" + "232" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:02 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZKgAAAAAAABkqg==\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcIkAAAAAAABwiw==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "492fa857-fb11-48c3-b6d0-1c1989668305" + "6620d7f1-271e-4c76-b6ef-b4826c548edb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-correlation-request-id": [ - "62f43810-25ab-4425-98bb-800c0c76fb53" + "7943f2fe-66a0-42da-a896-a06fe4f34dea" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041002Z:62f43810-25ab-4425-98bb-800c0c76fb53" + "WESTUS2:20190411T020512Z:7943f2fe-66a0-42da-a896-a06fe4f34dea" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:11 GMT" + ], "Content-Length": [ - "1089" + "1091" ], "Content-Type": [ "application/json; charset=utf-8" @@ -271,64 +271,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId1512\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"userId1512\",\r\n \"properties\": {\r\n \"firstName\": \"userFirstName8013\",\r\n \"lastName\": \"userLastName7390\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-02T04:10:02.22Z\",\r\n \"note\": \"userNote332\",\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/userId4400\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"userId4400\",\r\n \"properties\": {\r\n \"firstName\": \"userFirstName3849\",\r\n \"lastName\": \"userLastName9082\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-11T02:05:11.827Z\",\r\n \"note\": \"userNote5180\",\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}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId1512?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQxNTEyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4400?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NDAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41453a27-456a-4b4c-9a2a-2abd54a2fa38" + "9f5d8c34-e9ec-4d82-a4f8-ff887004b162" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:02 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZKgAAAAAAABkqg==\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcIkAAAAAAABwiw==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f03af24-afa9-4663-bb3c-038d5e66331e" + "34478c4e-1b84-45eb-b38f-3e4e57dd77dd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11997" ], "x-ms-correlation-request-id": [ - "9e2c0ffd-2ed6-40c0-ace3-f90bf41c8ab2" + "8f7a4bff-fd93-423a-827f-2a4ee2870c22" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041003Z:9e2c0ffd-2ed6-40c0-ace3-f90bf41c8ab2" + "WESTUS2:20190411T020512Z:8f7a4bff-fd93-423a-827f-2a4ee2870c22" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:12 GMT" + ], "Content-Length": [ - "614" + "616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -337,59 +337,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId1512\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"userId1512\",\r\n \"properties\": {\r\n \"firstName\": \"userFirstName8013\",\r\n \"lastName\": \"userLastName7390\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-02T04:10:02.22Z\",\r\n \"note\": \"userNote332\",\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/userId4400\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"userId4400\",\r\n \"properties\": {\r\n \"firstName\": \"userFirstName3849\",\r\n \"lastName\": \"userLastName9082\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-11T02:05:11.827Z\",\r\n \"note\": \"userNote5180\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId1512?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQxNTEyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4400?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NDAwP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0dcb40f9-fca9-44f3-a9c3-74219ff1efc5" + "88f5b3ee-4348-4461-9edc-29a42d2df23f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf33b863-c5dc-404a-ae43-1aa0cfa387d7" + "bacda94c-c7c6-4a3e-a4c1-9536bea42a94" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11995" ], "x-ms-correlation-request-id": [ - "d69a16b0-3654-4943-9960-8ead84ec0107" + "55414103-a442-4f81-b56b-b3fd86fdecb2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041004Z:d69a16b0-3654-4943-9960-8ead84ec0107" + "WESTUS2:20190411T020513Z:55414103-a442-4f81-b56b-b3fd86fdecb2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:12 GMT" + ], "Content-Length": [ "80" ], @@ -404,55 +404,55 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?$top=1&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycz8kdG9wPTEmYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycz8kdG9wPTEmYXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5426331-3db7-4282-a254-2ae239c07d36" + "3837ae70-59f0-4e75-b187-0ec222e014b4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:02 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "625c67bd-2a40-415c-994f-6bece642ff3b" + "b14ac56b-41a8-423d-9b9a-a0f32a7f3ea6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11996" ], "x-ms-correlation-request-id": [ - "cb8afa8e-0b3e-48e9-94e7-84a7b9c07ee6" + "a8ad36e0-1ee8-41d8-9fc1-07db3b9dc432" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041003Z:cb8afa8e-0b3e-48e9-94e7-84a7b9c07ee6" + "WESTUS2:20190411T020512Z:a8ad36e0-1ee8-41d8-9fc1-07db3b9dc432" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:12 GMT" + ], "Content-Length": [ "911" ], @@ -463,59 +463,59 @@ "-1" ] }, - "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}", + "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=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId1512/generateSsoUrl?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQxNTEyL2dlbmVyYXRlU3NvVXJsP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4400/generateSsoUrl?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NDAwL2dlbmVyYXRlU3NvVXJsP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c6c7c13-21c8-4022-a221-fc735901bbd8" + "6e1b0a31-eb3e-42a2-a88c-1e1ca7559d29" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:02 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3863c4db-80f3-4e24-92de-723cb61f24d3" + "90900db3-e4d8-4648-896e-4dc20fb3ffca" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "a4d99c57-0fd8-412e-962d-a568b4ba2f23" + "a7cf463c-b1a0-4798-8418-e043834f0a1a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041003Z:a4d99c57-0fd8-412e-962d-a568b4ba2f23" + "WESTUS2:20190411T020512Z:a7cf463c-b1a0-4798-8418-e043834f0a1a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:12 GMT" + ], "Content-Length": [ "201" ], @@ -526,130 +526,67 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"https://sdktestservice.portal.azure-api.net/signin-sso?token=userId1512%26201904020415%26AjYhZzes9vdiMh8EFs%2bE558i3mdfibk%2bcoybdrRLz0qFpbVRkVKp%2fpSMY0b6LHy6UAMD%2b5Y9JDkeT4NmPEMF6g%3d%3d\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://sdktestservice.portal.azure-api.net/signin-sso?token=userId4400%26201904110210%26AzYLFKWuK0BHunL%2b%2fAi9X58NWspGdKrHm1r90MfTiSk3b4UQpRZP2YFGczHkXwiIiN%2f7KzB59jZm%2boFsaoF0Rg%3d%3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId1512/token?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQxNTEyL3Rva2VuP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4400/token?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NDAwL3Rva2VuP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"keyType\": \"primary\",\r\n \"expiry\": \"2019-04-12T04:10:03.2457795Z\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"keyType\": \"primary\",\r\n \"expiry\": \"2019-04-21T02:05:12.7861764Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a53bb191-9d12-4c83-8d99-d64c46939d7b" + "6ba7cdbf-0ee7-4809-a2da-cc73b92b26c9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "73" + "101" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cd3342fb-2d26-4852-98f2-bdb2d89c74dc" + "f80504c2-b2f2-4cc8-982e-9ef7d38d51da" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "720a2194-02d1-4bb5-92b4-1139a5f58674" + "21f1c83b-7ad4-4e75-8ddb-a5f1cbb12737" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041003Z:720a2194-02d1-4bb5-92b4-1139a5f58674" + "WESTUS2:20190411T020512Z:21f1c83b-7ad4-4e75-8ddb-a5f1cbb12737" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "124" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": \"userId1512&201904120410&rWlPZ2IcxwFJaGUygaxujkQUDLjrB366d9SEd2MuqSrp+4TC9XB0/3o0eaPp0yibES+E2Nzh+CjonSKwSBvMLQ==\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identity?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a565af56-f648-4792-8759-976caf08aa97" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 02 Apr 2019 04:10:03 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "0a3b3787-e0cf-4141-b044-fa17afa6e856" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-correlation-request-id": [ - "4962c215-89ca-44ba-882c-0660b7caa24c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T041003Z:4962c215-89ca-44ba-882c-0660b7caa24c" - ], - "X-Content-Type-Options": [ - "nosniff" + "Thu, 11 Apr 2019 02:05:12 GMT" ], "Content-Length": [ - "10" + "124" ], "Content-Type": [ "application/json; charset=utf-8" @@ -658,125 +595,125 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"1\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"userId4400&201904210205&PK6efjgk4yVre1+tkstQBJcE1Sa8jqI3D48x9+OvCL8/h6KTjA6LhVy5TtALECR/uXyPuzwZ34hHnLJ33kA3NA==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId1512?deleteSubscriptions=true&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQxNTEyP2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4400?deleteSubscriptions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NDAwP2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "613ce62d-39e6-42cb-81a6-8b5f6b56a2ce" + "e11084e6-d0ca-4c02-9c95-9b0e2e0348d0" ], "If-Match": [ - "\"AAAAAAAAZKgAAAAAAABkqg==\"" + "\"AAAAAAAAcIkAAAAAAABwiw==\"" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "552a48f2-f7ed-416e-a0ed-cb6929df146c" + "61a2e397-7ecc-4aeb-9d94-b073473a7212" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14999" ], "x-ms-correlation-request-id": [ - "0be79247-2fef-47f7-9cb2-75268fb5030e" + "57d22948-c609-4a4a-a2c0-d3c28bcff3ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041004Z:0be79247-2fef-47f7-9cb2-75268fb5030e" + "WESTUS2:20190411T020513Z:57d22948-c609-4a4a-a2c0-d3c28bcff3ee" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:05:12 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId1512?deleteSubscriptions=true&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQxNTEyP2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4400?deleteSubscriptions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NDAwP2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0d56750-e26a-4a9c-9d10-3ac868669c0e" + "05cf64cf-ff6a-44bb-a3bf-c000c8cbb6bd" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:04 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "204a8bd3-d1f4-4ba8-82b9-95a38637d13f" + "b5521bd5-0e32-4a3f-9284-06ea9e205b06" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14998" ], "x-ms-correlation-request-id": [ - "854a1cf7-b2ca-4b52-9276-f7bdb59b1253" + "202dffcd-8257-4c15-a989-6f7e882896b9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041004Z:854a1cf7-b2ca-4b52-9276-f7bdb59b1253" + "WESTUS2:20190411T020513Z:202dffcd-8257-4c15-a989-6f7e882896b9" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:12 GMT" + ], "Expires": [ "-1" ] @@ -787,11 +724,11 @@ ], "Names": { "CreateListUpdateDelete": [ - "userId1512", - "userFirstName8013", - "userLastName7390", - "userPassword2127", - "userNote332" + "userId4400", + "userFirstName3849", + "userLastName9082", + "userPassword3685", + "userNote5180" ] }, "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 6e538f69b158..4e5d29bbc846 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8a06f1fa-eed6-42f5-a783-f5a44ef58d58" + "9535a591-8b34-443d-aaa7-f91466bfc998" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:55 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "81433dcc-0497-4b21-ba08-f47e92098e32", - "4432043b-d235-4343-8b09-d2d9fbd681fd" + "c4886c5e-2afc-4de7-bd99-99ed578bde1e", + "449a7bc8-3d64-483c-a865-863e13d749f3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "b926e183-2545-49df-9562-c9c501cdfd0d" + "9e45c8f9-47a2-432f-97de-27050cbf4a8f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040956Z:b926e183-2545-49df-9562-c9c501cdfd0d" + "WESTUS2:20190411T020506Z:9e45c8f9-47a2-432f-97de-27050cbf4a8f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:06 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02ddcb1f-7de6-4d86-a603-d1da03c97571" + "b2b703df-6a34-4a18-8dd9-65b95c794278" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:56 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b1c88304-aa15-4d03-8ef6-6149bd716e7b" + "2bdf8b1f-e868-49ec-803d-c9406b721030" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "057026f6-1677-4273-b500-022268fac838" + "5ef710be-4463-44e9-b047-95ecf539e507" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040956Z:057026f6-1677-4273-b500-022268fac838" + "WESTUS2:20190411T020506Z:5ef710be-4463-44e9-b047-95ecf539e507" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:06 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,70 +136,70 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId192?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDE5Mj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId8073?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDgwNzM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"groupName661\",\r\n \"type\": \"custom\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"groupName5038\",\r\n \"type\": \"custom\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5ccd1581-d04f-4168-b722-20f2c7cb18d7" + "3f9eb3d4-6741-48cf-81fc-a9f624d2c0e9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "86" + "87" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:56 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZJA=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcHE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "df0bf4df-9542-4bf7-83a6-9a248bbdd220" + "b999ddbb-c1a6-4b53-94c3-1ed830fac242" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "c1d7fcf1-8ee1-4726-9fc3-e0196ce07001" + "b38aa76b-a0ea-426d-a7e2-44b53fb8287b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040957Z:c1d7fcf1-8ee1-4726-9fc3-e0196ce07001" + "WESTUS2:20190411T020507Z:b38aa76b-a0ea-426d-a7e2-44b53fb8287b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:07 GMT" + ], "Content-Length": [ - "414" + "417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -208,64 +208,64 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId192\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"groupId192\",\r\n \"properties\": {\r\n \"displayName\": \"groupName661\",\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/groupId8073\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"groupId8073\",\r\n \"properties\": {\r\n \"displayName\": \"groupName5038\",\r\n \"description\": null,\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId192?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDE5Mj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId8073?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDgwNzM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9957cc1b-46b3-4b27-ab2b-fb5cb684fd9b" + "68fc72d1-0d3f-481a-8a88-7a65c1074905" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:56 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZJA=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcHE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2432438-1299-426b-ac23-39baf5064c7f" + "3bd02d74-e3fa-44e5-b70a-2931fc92845d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "7847ccbe-432d-404d-86f5-dc0b0b03ac65" + "a4ff9ec7-9571-4f59-943c-3dffaf5c8d6b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040957Z:7847ccbe-432d-404d-86f5-dc0b0b03ac65" + "WESTUS2:20190411T020507Z:a4ff9ec7-9571-4f59-943c-3dffaf5c8d6b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:07 GMT" + ], "Content-Length": [ - "414" + "417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -274,70 +274,70 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId192\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"groupId192\",\r\n \"properties\": {\r\n \"displayName\": \"groupName661\",\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/groupId8073\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"groupId8073\",\r\n \"properties\": {\r\n \"displayName\": \"groupName5038\",\r\n \"description\": null,\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId9302?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ5MzAyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4608?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NjA4P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"active\",\r\n \"note\": \"note7877\",\r\n \"email\": \"ivan.ivanov6290@contoso.com\",\r\n \"firstName\": \"Ivan9065\",\r\n \"lastName\": \"Ivanov6021\",\r\n \"password\": \"pwd8604\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"active\",\r\n \"note\": \"note1686\",\r\n \"email\": \"ivan.ivanov932@contoso.com\",\r\n \"firstName\": \"Ivan3341\",\r\n \"lastName\": \"Ivanov8340\",\r\n \"password\": \"pwd5902\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a1a938ae-95a4-4f2b-9c47-f36d1356cfb1" + "683fd3b6-02aa-4fd3-a67c-548bc4ab6c7c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "210" + "209" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:57 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZJUAAAAAAABklw==\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcHYAAAAAAABweA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5079a55f-7dfe-40bb-961f-eb3c860b603f" + "d03ed8ba-4d9f-4d6c-a928-603f1b3c6d03" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "999d9d67-d4dc-4e33-b8b9-bd5562419bf5" + "83ad8384-3a69-4f18-8910-9c8839cb603d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040957Z:999d9d67-d4dc-4e33-b8b9-bd5562419bf5" + "WESTUS2:20190411T020508Z:83ad8384-3a69-4f18-8910-9c8839cb603d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:08 GMT" + ], "Content-Length": [ - "1083" + "1082" ], "Content-Type": [ "application/json; charset=utf-8" @@ -346,59 +346,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId9302\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"userId9302\",\r\n \"properties\": {\r\n \"firstName\": \"Ivan9065\",\r\n \"lastName\": \"Ivanov6021\",\r\n \"email\": \"ivan.ivanov6290@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-02T04:09:57.53Z\",\r\n \"note\": \"note7877\",\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.ivanov6290@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/userId4608\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"userId4608\",\r\n \"properties\": {\r\n \"firstName\": \"Ivan3341\",\r\n \"lastName\": \"Ivanov8340\",\r\n \"email\": \"ivan.ivanov932@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-11T02:05:07.863Z\",\r\n \"note\": \"note1686\",\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.ivanov932@contoso.com\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId9302/groups?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ5MzAyL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4608/groups?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NjA4L2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ecb60aa-4700-455a-b7ed-d3dcebb45908" + "751ee267-25c3-4ec8-b8f7-904f570479f2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:57 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4feb0eb0-ea6b-472d-9929-d77a412d2d8e" + "73ed7c27-a18a-4ab2-b56e-fde690d05ee4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "917f64b2-b836-4ffb-8ede-2903dcb4858d" + "6c245170-3ee0-4e78-b7e7-a1f66ddcc8aa" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040957Z:917f64b2-b836-4ffb-8ede-2903dcb4858d" + "WESTUS2:20190411T020508Z:6c245170-3ee0-4e78-b7e7-a1f66ddcc8aa" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:08 GMT" + ], "Content-Length": [ "615" ], @@ -409,61 +409,61 @@ "-1" ] }, - "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/userId9302/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}", + "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/userId4608/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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId9302/groups?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ5MzAyL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4608/groups?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NjA4L2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49694046-5b3b-4f0d-bbae-2d011f4073fb" + "299cd608-0da5-4804-bc11-dea552123975" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:57 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85addd75-b8f3-47ad-a642-2678979617cc" + "acd55558-ecf0-49f5-8695-2af2931c9433" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "f6ee4c8f-aacb-499a-8a44-88d268418bb8" + "044d8029-daae-4865-9363-a8b319a65d08" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040958Z:f6ee4c8f-aacb-499a-8a44-88d268418bb8" + "WESTUS2:20190411T020508Z:044d8029-daae-4865-9363-a8b319a65d08" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:08 GMT" + ], "Content-Length": [ - "1103" + "1106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -472,59 +472,59 @@ "-1" ] }, - "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/userId9302/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/userId9302/groups/groupId192\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"groupId192\",\r\n \"properties\": {\r\n \"displayName\": \"groupName661\",\r\n \"description\": null,\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ]\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/userId4608/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/userId4608/groups/groupId8073\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"groupId8073\",\r\n \"properties\": {\r\n \"displayName\": \"groupName5038\",\r\n \"description\": null,\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId9302/groups?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ5MzAyL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4608/groups?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NjA4L2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2218a867-b3d8-4fe9-9532-a9a0f49cdb30" + "04eea9b3-5db2-408b-8269-90572db483f9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0c16f3bf-7d0a-4aa9-9210-a29bec468414" + "fbdb58a0-c96f-416b-b013-08c7fa38e503" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "cf99f11b-f57d-430d-8b90-0e2500d1c7bf" + "58336e66-fe2c-458f-9cba-9b0cebe4e9f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040959Z:cf99f11b-f57d-430d-8b90-0e2500d1c7bf" + "WESTUS2:20190411T020509Z:58336e66-fe2c-458f-9cba-9b0cebe4e9f6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:09 GMT" + ], "Content-Length": [ "615" ], @@ -535,64 +535,64 @@ "-1" ] }, - "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/userId9302/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}", + "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/userId4608/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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId192/users/userId9302?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDE5Mi91c2Vycy91c2VySWQ5MzAyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId8073/users/userId4608?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDgwNzMvdXNlcnMvdXNlcklkNDYwOD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30eb8018-a5e5-4fda-973e-2e62f86dd5e1" + "815c19dc-1f13-4141-b14b-1df903a67f84" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:57 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAAAZJs=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAAAcHw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4c68341e-fe07-49c7-913a-e02fc4d14319" + "8284385b-deb9-439c-9916-90d87931f339" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "140f0201-c014-4d13-bd5d-b8634a0c9a30" + "01ccce24-145a-4e35-990c-08b665972005" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040958Z:140f0201-c014-4d13-bd5d-b8634a0c9a30" + "WESTUS2:20190411T020508Z:01ccce24-145a-4e35-990c-08b665972005" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:08 GMT" + ], "Content-Length": [ - "553" + "554" ], "Content-Type": [ "application/json; charset=utf-8" @@ -601,190 +601,190 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId192/users/userId9302\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"userId9302\",\r\n \"properties\": {\r\n \"firstName\": \"Ivan9065\",\r\n \"lastName\": \"Ivanov6021\",\r\n \"email\": \"ivan.ivanov6290@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-02T04:09:57.53Z\",\r\n \"note\": \"note7877\",\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/groupId8073/users/userId4608\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"userId4608\",\r\n \"properties\": {\r\n \"firstName\": \"Ivan3341\",\r\n \"lastName\": \"Ivanov8340\",\r\n \"email\": \"ivan.ivanov932@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2019-04-11T02:05:07.863Z\",\r\n \"note\": \"note1686\",\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId192/users/userId9302?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDE5Mi91c2Vycy91c2VySWQ5MzAyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId8073/users/userId4608?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDgwNzMvdXNlcnMvdXNlcklkNDYwOD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba468792-631a-4d52-971e-343dafe32b22" + "c60bce9b-6d72-4140-b3d0-e8f311fe40dc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "08a88290-7a7b-4474-8565-a1f459884e2a" + "f763c6ec-065e-42d5-b93a-f9a9a3fbd769" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "daabd54c-8e2a-4aad-a734-52af9f8de411" + "c6cf87db-47bb-4371-89d0-414a29f143b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040959Z:daabd54c-8e2a-4aad-a734-52af9f8de411" + "WESTUS2:20190411T020509Z:c6cf87db-47bb-4371-89d0-414a29f143b1" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:05:08 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId9302?deleteSubscriptions=true&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ5MzAyP2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4608?deleteSubscriptions=true&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0NjA4P2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53846f25-7eda-49f1-9fc5-f2165f5262d3" + "8a779588-f282-475b-b7e1-0de01ee2ab76" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "881cd3fb-6d50-414a-9828-917f394533e9" + "901cd07e-72c9-4596-8b72-ad7cd774e423" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "388c419f-d5fc-4ac9-b543-bb4b22cbfb38" + "527715cd-0c8f-4e35-bca2-d3194a7c5ba2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T040959Z:388c419f-d5fc-4ac9-b543-bb4b22cbfb38" + "WESTUS2:20190411T020509Z:527715cd-0c8f-4e35-bca2-d3194a7c5ba2" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:05:09 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId192?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDE5Mj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId8073?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDgwNzM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf153988-f3d3-4671-b5bc-4fc108149cb6" + "37e4fc60-7565-4a71-b8c9-5f30f1833ed1" ], "If-Match": [ "*" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:09:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "668b9953-026e-4f56-9e85-8a1e81e657a1" + "03299179-8df7-4ca3-88bf-fdbd436b4aa4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "ee29f309-96a2-4b7d-be75-5f10ba239e45" + "131edf73-c441-4d07-82fb-10026966c1bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041000Z:ee29f309-96a2-4b7d-be75-5f10ba239e45" + "WESTUS2:20190411T020509Z:131edf73-c441-4d07-82fb-10026966c1bd" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 02:05:09 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -793,14 +793,14 @@ ], "Names": { "GroupsListAddRemove": [ - "groupId192", - "groupName661", - "userId9302", - "Ivan9065", - "Ivanov6021", - "ivan.ivanov6290", - "pwd8604", - "note7877" + "groupId8073", + "groupName5038", + "userId4608", + "Ivan3341", + "Ivanov8340", + "ivan.ivanov932", + "pwd5902", + "note1686" ] }, "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 e9f265ce6c30..eb913c1e6597 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f1f09178-42f6-4498-9b22-82a7ed283eb5" + "e316ba68-d070-4190-af57-637efee6b63b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:05 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b070da0a-a0ec-4a65-ab0b-cecbafbd0d89", - "2a000517-4fe7-4c5c-a547-7829f7d1cf26" + "bce75927-2a34-48dd-a3fe-f3c695f6026a", + "506f5a41-846a-4dbe-8868-e944b4b7fe2d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "3c25c527-bbfb-4862-9de1-f93ae4baa897" + "aaf8d562-3850-4b7d-ac64-710c6c7ed7b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041005Z:3c25c527-bbfb-4862-9de1-f93ae4baa897" + "WESTUS2:20190411T020514Z:aaf8d562-3850-4b7d-ac64-710c6c7ed7b2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:14 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdaeffa7-404a-470d-900b-3b1c0e0d178b" + "dbd6bb09-fd1f-4467-90e7-ac04a16390c1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:05 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "88af9480-b6dd-4160-866d-b9f4d5545b0d" + "f6a561b2-a728-43e2-a1e0-f7cd85fb5a03" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "1c47ee37-9d0e-4d8f-beff-10b7267174ee" + "eef0c61c-42a8-4a2d-a2cf-e25df2c4825b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041006Z:1c47ee37-9d0e-4d8f-beff-10b7267174ee" + "WESTUS2:20190411T020515Z:eef0c61c-42a8-4a2d-a2cf-e25df2c4825b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:14 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fde2cac-1ee4-4a30-a263-fa0759955610" + "19837fd4-4f96-47c8-80c3-2218cfbba3f5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86e8caa4-fe22-49c9-9156-f20051e8c3a5" + "1a3d3001-6b72-4e0f-b75a-27926590a9d8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "ae20dbde-7769-444b-9d65-839e123a2cb9" + "052de587-699b-4617-b18e-44cd3cf9b50b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041006Z:ae20dbde-7769-444b-9d65-839e123a2cb9" + "WESTUS2:20190411T020515Z:052de587-699b-4617-b18e-44cd3cf9b50b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:15 GMT" + ], "Content-Length": [ "667" ], @@ -203,57 +203,57 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/subscriptions?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy8xL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/subscriptions?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy8xL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1118c084-6047-49f5-838a-c2bee3b3ccfa" + "b0bc267e-8f34-47a5-af71-e12387925ece" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5d96e6af-7b0e-44fb-a184-a913174d65b8" + "8a564e63-ea11-4a31-a72d-b8c049570275" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-correlation-request-id": [ - "5d4d1db5-07b6-49fc-920b-d42510a485ac" + "d34eae00-8316-4e0e-b61d-b3f453b560a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041006Z:5d4d1db5-07b6-49fc-920b-d42510a485ac" + "WESTUS2:20190411T020515Z:d34eae00-8316-4e0e-b61d-b3f453b560a9" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:15 GMT" + ], "Content-Length": [ - "2254" + "2310" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,61 +262,61 @@ "-1" ] }, - "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}", + "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 \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/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 \"allowTracing\": true\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 \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/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 \"allowTracing\": true\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/subscriptions?$top=1&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy8xL3N1YnNjcmlwdGlvbnM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/subscriptions?$top=1&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy8xL3N1YnNjcmlwdGlvbnM/JHRvcD0xJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88a241c5-a2ca-412c-b48a-eaf9b600f64f" + "b7ef7d73-b892-4079-88ed-631ffffc3eb7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1e6e212c-49ea-4a18-9b8b-27214f9966c4" + "77f4d51c-39e5-4d3f-a416-4c9e52c98fba" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-correlation-request-id": [ - "68408b2d-6bf1-4cc4-897e-6df29d380660" + "c27268df-b057-4c18-a118-b26c3eb74901" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041006Z:68408b2d-6bf1-4cc4-897e-6df29d380660" + "WESTUS2:20190411T020515Z:c27268df-b057-4c18-a118-b26c3eb74901" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:15 GMT" + ], "Content-Length": [ - "1397" + "1425" ], "Content-Type": [ "application/json; charset=utf-8" @@ -325,61 +325,61 @@ "-1" ] }, - "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}", + "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 \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/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 \"allowTracing\": 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/users/1/subscriptions?%24top=1&api-version=2019-01-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/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", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy8xL3N1YnNjcmlwdGlvbnM/JTI0dG9wPTEmYXBpLXZlcnNpb249MjAxOC0wMS0wMSYlMjRza2lwPTE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/subscriptions?%24top=1&api-version=2019-01-01&%24skip=1", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy8xL3N1YnNjcmlwdGlvbnM/JTI0dG9wPTEmYXBpLXZlcnNpb249MjAxOS0wMS0wMSYlMjRza2lwPTE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b3683b7-90ee-4fd7-8918-c6685e5b1b94" + "267481d4-d770-436a-af4d-e7d20a7e5a74" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:06 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "671b9f23-2a00-4f54-b910-314d2efa7309" + "9dcf9e04-5be8-4150-9aaf-ebe456d517c2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-correlation-request-id": [ - "a777979f-c3cf-433f-8e05-1b250ff5acb9" + "e15a0524-66a2-4228-b0b0-959f3f0b1f87" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041006Z:a777979f-c3cf-433f-8e05-1b250ff5acb9" + "WESTUS2:20190411T020515Z:e15a0524-66a2-4228-b0b0-959f3f0b1f87" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:15 GMT" + ], "Content-Length": [ - "1139" + "1167" ], "Content-Type": [ "application/json; charset=utf-8" @@ -388,7 +388,7 @@ "-1" ] }, - "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}", + "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 \"ownerId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"scope\": \"/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 \"allowTracing\": true\r\n }\r\n }\r\n ]\r\n}", "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 2f214abc8e35..750f3af0fe83 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"CentralUS\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7a572d33-b953-4e53-9e90-46c61d295511" + "bd7ace6e-67c2-4a3f-bc35-6bcbcef01172" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,39 +29,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:07 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ce74098-ed6e-4ed4-a017-f34261150fe0", - "d7001ee8-9def-46ce-bf92-4f2d971378e2" + "59a4bde9-95f0-4baa-ab6f-cda2ac1e4b1e", + "f00f1c61-4cda-4363-8ce5-fd656a6884bf" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "b8aeffad-a79d-4906-a3f9-e2365f98aea4" + "6d546f50-4b02-4667-b02b-2cbe253e2785" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041007Z:b8aeffad-a79d-4906-a3f9-e2365f98aea4" + "WESTUS2:20190411T020518Z:6d546f50-4b02-4667-b02b-2cbe253e2785" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:18 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,64 +70,64 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13aa23d1-1596-4f5b-995a-b2e5a26ffe56" + "65c23821-6e61-4ab3-bd51-9cb1317a14fb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:07 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtoSg=\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"AAAAAAFuRAQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1fbe8948-49c8-487c-ad3f-0c9c91f5fe95" + "246fcfd4-599e-43f9-8f4b-50d273ad5d1c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-correlation-request-id": [ - "471521d8-c433-42b3-9668-0da299fbd5e3" + "ad5ba147-80d1-4e7d-a6ef-1a0373611732" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041008Z:471521d8-c433-42b3-9668-0da299fbd5e3" + "WESTUS2:20190411T020518Z:ad5ba147-80d1-4e7d-a6ef-1a0373611732" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:18 GMT" + ], "Content-Length": [ - "1831" + "2039" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,59 +136,59 @@ "-1" ] }, - "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\": \"AAAAAAFtoSg=\",\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.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\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\": \"AAAAAAFuRAQ=\",\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 {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestservice.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.33.36\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"True\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?$filter=firstName%20eq%20'Administrator'&api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycz8kZmlsdGVyPWZpcnN0TmFtZSUyMGVxJTIwJ0FkbWluaXN0cmF0b3InJmFwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?$filter=firstName%20eq%20'Administrator'&api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycz8kZmlsdGVyPWZpcnN0TmFtZSUyMGVxJTIwJ0FkbWluaXN0cmF0b3InJmFwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b263c698-58c7-4b4e-8778-819862b4de69" + "63ec7165-38d6-42b9-8ea1-1ca9bef312fa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9529e38b-7792-4f0c-a8fa-8fa05eb2b9b9" + "169ca52d-a0b3-4e45-a7e1-305c2ed56259" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-correlation-request-id": [ - "ea4eb503-8758-4253-9a45-7282ce8044c5" + "4ab4e456-9b72-483d-a864-5bcdc8cf81db" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041008Z:ea4eb503-8758-4253-9a45-7282ce8044c5" + "WESTUS2:20190411T020518Z:4ab4e456-9b72-483d-a864-5bcdc8cf81db" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:18 GMT" + ], "Content-Length": [ "667" ], @@ -203,55 +203,55 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/identities?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy8xL2lkZW50aXRpZXM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/identities?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy8xL2lkZW50aXRpZXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cba0b1d9-aa2d-4c30-be01-ff3e6c86365e" + "bc6ef5ce-fef6-40d9-9d15-1f082ca319eb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:10:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "52349d8a-bb1b-4fae-8a9b-1b4580e2132c" + "bed0ac31-97b2-464f-a5d5-1f2829f764b0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11995" ], "x-ms-correlation-request-id": [ - "31b74b4c-c0fb-426f-8969-466d8095f37b" + "150d8aa4-18d2-4ba1-a7cf-ad9e8a623328" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T041008Z:31b74b4c-c0fb-426f-8969-466d8095f37b" + "WESTUS2:20190411T020518Z:150d8aa4-18d2-4ba1-a7cf-ad9e8a623328" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 02:05:18 GMT" + ], "Content-Length": [ "86" ], diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/BackupAndRestoreService.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/BackupAndRestoreService.json index 8bf01e549fec..cd5cc6fa84db 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/BackupAndRestoreService.json +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/BackupAndRestoreService.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a233a80-cd39-412c-b79b-fa54cd928435" + "91a89548-4abe-4582-baf3-f9e63b248087" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:50:06 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "b4e0f38a-c1f7-4be9-b4f2-2d828c7413de" + "6b19920c-3d28-4806-a798-44e9c3a18084" ], "x-ms-correlation-request-id": [ - "b4e0f38a-c1f7-4be9-b4f2-2d828c7413de" + "6b19920c-3d28-4806-a798-44e9c3a18084" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T075006Z:b4e0f38a-c1f7-4be9-b4f2-2d828c7413de" + "WESTUS2:20190411T073034Z:6b19920c-3d28-4806-a798-44e9c3a18084" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,33 +44,36 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "1876" + "Date": [ + "Thu, 11 Apr 2019 07:30:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1941" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg2321?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzIzMjE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg6864?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzY4NjQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ff425c3a-df6d-4b0d-a6aa-48235a3182a0" + "e3f180ab-9eff-463e-8f6a-9825307f5ea1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:50:07 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "9b7ba390-d503-458d-8522-00c7b4b5d739" + "f3c29626-69b3-4d25-b775-b908fc8e186a" ], "x-ms-correlation-request-id": [ - "9b7ba390-d503-458d-8522-00c7b4b5d739" + "f3c29626-69b3-4d25-b775-b908fc8e186a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T075007Z:9b7ba390-d503-458d-8522-00c7b4b5d739" + "WESTUS2:20190411T073034Z:f3c29626-69b3-4d25-b775-b908fc8e186a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 07:30:34 GMT" + ], "Content-Length": [ "182" ], @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321\",\r\n \"name\": \"sdktestrg2321\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864\",\r\n \"name\": \"sdktestrg6864\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "23986893-f3c5-4293-9c43-8a6820b3a26d" + "3a99f7f1-fe5a-4e11-b606-07a0e2d2553f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,45 +155,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:50:08 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFttBk=\"" + "\"AAAAAAFzSIs=\"" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3512bef9-93e8-4a78-a7cd-81068b19bc68", - "2601fd4c-4489-4173-8f51-d96667ca1303" + "c57ee9d1-2031-46b5-a1b6-6040c6d60dc0", + "566f9d77-bb31-4e1f-8add-54a68eb3a26e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "b8c22021-f1d8-4475-b575-2a818b928dc3" + "4614768e-ae7a-4345-bdd9-62c8c9f828bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T075009Z:b8c22021-f1d8-4475-b575-2a818b928dc3" + "WESTUS2:20190411T073036Z:4614768e-ae7a-4345-bdd9-62c8c9f828bd" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 07:30:35 GMT" + ], "Content-Length": [ - "949" + "1132" ], "Content-Type": [ "application/json; charset=utf-8" @@ -202,2078 +202,1838 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906\",\r\n \"name\": \"sdktestapim7906\",\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\": \"AAAAAAFttBk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-02T07:50:08.452921Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\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/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791\",\r\n \"name\": \"sdktestapim2791\",\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\": \"AAAAAAFzSIs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-11T07:30:36.0440983Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:51:09 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "491b8834-c5bb-4992-bb60-921d7a2ae3d7" + "1cc0ffc0-fc93-4bbf-9bfc-b097d4f9ef90" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "10fe5afb-515b-4b1b-9c72-7daf9e2c1045" + "6a67552a-2fb7-4faa-aa5f-31a0d6d5d65f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T075109Z:10fe5afb-515b-4b1b-9c72-7daf9e2c1045" + "WESTUS2:20190411T073136Z:6a67552a-2fb7-4faa-aa5f-31a0d6d5d65f" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:31:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:52:09 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "477d124f-ea67-44f5-8317-50a4308feda0" + "e5550ef4-8c73-4bc6-9ae5-4556991e31ef" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "d745f6cd-f493-48a7-a36e-74ce2d8f486f" + "c93985d1-56c2-4e76-b430-0b3c3caa7251" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T075210Z:d745f6cd-f493-48a7-a36e-74ce2d8f486f" + "WESTUS2:20190411T073237Z:c93985d1-56c2-4e76-b430-0b3c3caa7251" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:32:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:53:10 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f21c0abf-af9b-4a5f-ad8e-5f3869e50ff9" + "5fa8e40b-faed-46f8-b1aa-8bf74d2c2dd9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "4c6c2791-01fb-4dd2-9406-8c7ea68fcf4e" + "d3f67511-97ec-4ffa-9076-d5933557d358" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T075310Z:4c6c2791-01fb-4dd2-9406-8c7ea68fcf4e" + "WESTUS2:20190411T073337Z:d3f67511-97ec-4ffa-9076-d5933557d358" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:33:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:54:10 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d4642930-cd08-49f0-89d5-bb4366ea969a" + "a7df1d3c-9fb3-471f-9267-76f9b90a2fde" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-correlation-request-id": [ - "99b58169-b384-4084-a9cd-9284896e64e4" + "f3e982cd-363e-4ded-a426-a76cb8614867" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T075411Z:99b58169-b384-4084-a9cd-9284896e64e4" + "WESTUS2:20190411T073437Z:f3e982cd-363e-4ded-a426-a76cb8614867" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:34:37 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:55:11 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "95539d91-6789-4573-9922-072f29123190" + "64602f3a-d9ca-47b6-9252-bbe4d6ea75df" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-correlation-request-id": [ - "6eab4e02-03bd-4201-9251-8de0240b9b0d" + "f1d12f07-d16c-4349-80c0-c20a3bc2e3d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T075511Z:6eab4e02-03bd-4201-9251-8de0240b9b0d" + "WESTUS2:20190411T073538Z:f1d12f07-d16c-4349-80c0-c20a3bc2e3d1" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:35:37 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:56:11 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "968cd1c2-1181-4cd2-a745-05ac3f1a4dc4" + "9f467f41-a713-43cd-9c80-596044021f1e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-correlation-request-id": [ - "5604e7f2-e2e1-48f2-a233-f189adbea032" + "f7edec59-d5a6-4a76-aa51-a12fc5b614ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T075611Z:5604e7f2-e2e1-48f2-a233-f189adbea032" + "WESTUS2:20190411T073638Z:f7edec59-d5a6-4a76-aa51-a12fc5b614ae" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:36:38 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:57:11 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3aa5e31e-40fc-4289-813b-30068dc8e163" + "90456f30-ef04-454c-8d9f-618203eee89e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-correlation-request-id": [ - "ce07be12-9376-455d-8031-21b000982436" + "8ca50834-c16f-4074-80be-1edcb0fd5596" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T075712Z:ce07be12-9376-455d-8031-21b000982436" + "WESTUS2:20190411T073738Z:8ca50834-c16f-4074-80be-1edcb0fd5596" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:37:38 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:58:11 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ec549f6-ff76-4b20-8c19-7cdbcc407ac4" + "65c9ae0a-9a6f-4c98-8257-c51f867ef6b0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11992" ], "x-ms-correlation-request-id": [ - "8b79bccc-1b05-4eaa-9f9e-46a17380ae4d" + "1a60351e-2a83-4857-bc05-8e82c568331d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T075812Z:8b79bccc-1b05-4eaa-9f9e-46a17380ae4d" + "WESTUS2:20190411T073839Z:1a60351e-2a83-4857-bc05-8e82c568331d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:38:38 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:59:12 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "11e1b507-22c1-4094-ae38-4685f6e46dd6" + "dcc2c106-9fcb-446a-b9df-e2aa0b6f7e18" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11991" ], "x-ms-correlation-request-id": [ - "9a30dc47-2bd5-40b9-8d00-1bc8d2f1ebe7" + "b9c7bed2-ab99-40e4-9a39-5cea07f53ab4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T075913Z:9a30dc47-2bd5-40b9-8d00-1bc8d2f1ebe7" + "WESTUS2:20190411T073939Z:b9c7bed2-ab99-40e4-9a39-5cea07f53ab4" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:39:38 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:00:12 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "183b9ca8-a541-439c-8850-29864f059403" + "608dd641-6dcb-432c-8d48-e6234e56e0ad" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11990" ], "x-ms-correlation-request-id": [ - "4f3d1141-e320-4295-8974-035bfe9ee5c6" + "f2d02b1f-7f08-4a6f-a761-7354cf57e246" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T080013Z:4f3d1141-e320-4295-8974-035bfe9ee5c6" + "WESTUS2:20190411T074039Z:f2d02b1f-7f08-4a6f-a761-7354cf57e246" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:40:39 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:01:13 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cd6db954-0252-4790-a7d5-139ad10f3857" + "dd9794fe-9b4b-41d5-87fc-a4d4c8190881" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11989" ], "x-ms-correlation-request-id": [ - "60dd6504-e300-43a1-b420-cea5f15b41cb" + "42cb7621-fe0b-4587-997e-8a1ceafdead8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T080113Z:60dd6504-e300-43a1-b420-cea5f15b41cb" + "WESTUS2:20190411T074140Z:42cb7621-fe0b-4587-997e-8a1ceafdead8" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:41:39 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:02:13 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8431f510-c53d-47dc-81da-a4a42344b028" + "296fc5c8-a0cc-423e-8a50-a945996c8a7a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11988" ], "x-ms-correlation-request-id": [ - "6210b5ee-7909-4530-b1cf-035d604ac30b" + "646dded9-b798-49ac-a799-cd7f44d5aa3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T080214Z:6210b5ee-7909-4530-b1cf-035d604ac30b" + "WESTUS2:20190411T074240Z:646dded9-b798-49ac-a799-cd7f44d5aa3a" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:42:39 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:03:13 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a4d23449-ee0c-4fef-ae30-81cd421396f4" + "3cfa4f99-8689-4872-96d0-5c2f0f23797e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11987" ], "x-ms-correlation-request-id": [ - "e96234da-f2fe-428f-81b6-89158fe971ab" + "2f7f36af-5ddc-4116-85ed-4c8817412c02" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T080314Z:e96234da-f2fe-428f-81b6-89158fe971ab" + "WESTUS2:20190411T074340Z:2f7f36af-5ddc-4116-85ed-4c8817412c02" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:43:40 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:04:13 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc2b4cb6-6826-4a81-a267-d73a93f42207" + "6eb45585-0ca5-4f20-9667-0f300f2eaabe" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11986" ], "x-ms-correlation-request-id": [ - "b031a282-1cc7-4ee4-8a76-37d1eb66373c" + "fd358c0a-6c3a-43b4-a839-161be10ed26d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T080414Z:b031a282-1cc7-4ee4-8a76-37d1eb66373c" + "WESTUS2:20190411T074441Z:fd358c0a-6c3a-43b4-a839-161be10ed26d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:44:40 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:05:15 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3cbe25b3-9d21-4168-9bc5-a42755252018" + "0663c760-0aa0-4fc4-ad83-2b60a9bfede4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11985" ], "x-ms-correlation-request-id": [ - "b05631db-0e44-4a81-b298-6158bbe020ce" + "da69a6e6-40d7-47df-b079-1f3274664e98" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T080515Z:b05631db-0e44-4a81-b298-6158bbe020ce" + "WESTUS2:20190411T074541Z:da69a6e6-40d7-47df-b079-1f3274664e98" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:45:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:06:15 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f7e61ae5-97a6-4cd9-8f10-850a66f42153" + "e5aeebb9-60e1-4917-94d3-a74b6283d743" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11984" ], "x-ms-correlation-request-id": [ - "dc99e351-fe62-4c9a-a1b1-f4230d22769e" + "a3621819-12d8-4c3f-b6af-589d200c09d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T080615Z:dc99e351-fe62-4c9a-a1b1-f4230d22769e" + "WESTUS2:20190411T074641Z:a3621819-12d8-4c3f-b6af-589d200c09d9" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:46:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:07:15 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e9ca8a59-32aa-48a0-986b-a91dc540fe9d" + "98833a0c-3169-4b57-828f-ba8d1071085b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11983" ], "x-ms-correlation-request-id": [ - "5ece3ac6-293d-45de-ae3d-7e94bde32527" + "5798e6b8-b88c-41d8-b4f8-0835d9a09ba7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T080716Z:5ece3ac6-293d-45de-ae3d-7e94bde32527" + "WESTUS2:20190411T074742Z:5798e6b8-b88c-41d8-b4f8-0835d9a09ba7" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:47:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:08:17 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9570f249-b747-4575-a326-8aff8162ca88" + "e0e25f22-db57-4191-92b7-7ec78f29b297" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11982" ], "x-ms-correlation-request-id": [ - "6dd8a45f-edcc-4997-b91f-136e020cad1f" + "9c6a63e6-f667-462b-b7af-c6cdb824bb34" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T080817Z:6dd8a45f-edcc-4997-b91f-136e020cad1f" + "WESTUS2:20190411T074842Z:9c6a63e6-f667-462b-b7af-c6cdb824bb34" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:48:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:09:17 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ea4e2684-af81-4356-b6a0-06b4a9a9be24" + "22938bf7-614b-4818-88b0-0c9e4c10f26c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11981" ], "x-ms-correlation-request-id": [ - "509a2c74-2b95-40d4-9c88-3506de91809d" + "e83f40b2-aab8-4ba0-9ee9-c979d3bdb842" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T080918Z:509a2c74-2b95-40d4-9c88-3506de91809d" + "WESTUS2:20190411T074942Z:e83f40b2-aab8-4ba0-9ee9-c979d3bdb842" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:49:42 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:10:17 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "264894cd-9c2c-4936-bd2b-df392a66af1b" + "e58e71f5-dd78-413e-abe8-bd6fd1de9379" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11980" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "b226613d-95fd-47e4-9c47-790dbfc7e4df" + "4453339f-150b-4ad3-ba0c-c3808c25c8bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T081018Z:b226613d-95fd-47e4-9c47-790dbfc7e4df" + "WESTUS2:20190411T075043Z:4453339f-150b-4ad3-ba0c-c3808c25c8bb" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:50:42 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:11:18 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb38b9e7-af46-4fdd-963f-8b7bc9271b01" + "a99be4a5-680c-4d6d-b2ba-eec756f7b9a7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11979" ], "x-ms-correlation-request-id": [ - "9fb87585-0d7f-477d-b315-e8a2dd23c59f" + "d57db46e-1cc5-4b6e-b8bf-398acd9ef922" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T081119Z:9fb87585-0d7f-477d-b315-e8a2dd23c59f" + "WESTUS2:20190411T075143Z:d57db46e-1cc5-4b6e-b8bf-398acd9ef922" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:51:42 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:12:18 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1e5c7d66-3cb6-427e-a888-52d0eab9a929" + "1adf61da-e9a0-48bb-a329-3f3927e8f8bb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11978" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "985215ec-eebc-4997-be37-ed778d422069" + "3071c9cf-048b-4081-8f82-4291a38a9e0c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T081219Z:985215ec-eebc-4997-be37-ed778d422069" + "WESTUS2:20190411T075243Z:3071c9cf-048b-4081-8f82-4291a38a9e0c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:52:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:13:19 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4bb001f2-2e09-4b13-985a-fa3fba7e0c08" + "c47f4925-7e85-46ff-932e-4f9544beae56" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11977" ], "x-ms-correlation-request-id": [ - "851052b4-5949-4c58-bb15-26572114f107" + "51ddcafd-d032-47a4-b189-e2fb2fdfa95b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T081319Z:851052b4-5949-4c58-bb15-26572114f107" + "WESTUS2:20190411T075344Z:51ddcafd-d032-47a4-b189-e2fb2fdfa95b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:53:44 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:14:19 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d630a0d0-f7f9-4a21-b302-8a3797709c66" + "4e096ef2-52df-4584-881b-a2083faccc09" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11976" ], "x-ms-correlation-request-id": [ - "b737d9a7-6dd6-45bc-8a20-6292f65b4c60" + "9f547797-f002-4b91-944c-8627d6cf1ac9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T081419Z:b737d9a7-6dd6-45bc-8a20-6292f65b4c60" + "WESTUS2:20190411T075444Z:9f547797-f002-4b91-944c-8627d6cf1ac9" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:54:44 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:15:20 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1083deff-04b1-4e16-8d73-9c974902c56e" + "853df330-9d55-4b98-b990-71ed189b47ec" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11975" ], "x-ms-correlation-request-id": [ - "53a36bfc-5d97-4871-a182-920fcbcb8053" + "bde2f6e5-7737-4982-9aa1-814a2685b370" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T081520Z:53a36bfc-5d97-4871-a182-920fcbcb8053" + "WESTUS2:20190411T075545Z:bde2f6e5-7737-4982-9aa1-814a2685b370" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:55:44 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:16:20 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "58b53034-2738-4a35-9f89-2a35b11aef29" + "af7e9d29-241f-4c1c-9098-5809c79c8d98" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11974" ], "x-ms-correlation-request-id": [ - "10192ab3-e9a4-43da-84d2-527520ba563f" + "97fca5c7-14e4-4481-8f2f-5e6b01601685" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T081620Z:10192ab3-e9a4-43da-84d2-527520ba563f" + "WESTUS2:20190411T075645Z:97fca5c7-14e4-4481-8f2f-5e6b01601685" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:56:45 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:17:20 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "564d9860-47aa-4707-93cd-1be114e49bec" + "dfd98911-5278-4de8-9b8f-4069114765af" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11973" ], "x-ms-correlation-request-id": [ - "8b0ad20e-b0f6-4870-912f-36842f49e866" + "dfa6eddd-046b-4249-8540-d2be9feaf458" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T081720Z:8b0ad20e-b0f6-4870-912f-36842f49e866" + "WESTUS2:20190411T075745Z:dfa6eddd-046b-4249-8540-d2be9feaf458" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:57:45 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0FjdF81OTY4ZjljZQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEZqZEY4MU9UWTRaamxqWlE9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:18:20 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "70a78fd9-351f-44ea-bf34-1c4d5e18fd2f" + "1ea6381b-1028-43c7-a89a-ecf99ceeba27" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11972" ], "x-ms-correlation-request-id": [ - "3926e93c-3316-4b47-b6e9-c792c488a5cf" + "3cc2c501-8dfa-4dba-b452-9b3cf4082b29" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T081821Z:3926e93c-3316-4b47-b6e9-c792c488a5cf" + "WESTUS2:20190411T075846Z:3cc2c501-8dfa-4dba-b452-9b3cf4082b29" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 07:58:45 GMT" + ], "Content-Length": [ - "0" + "2046" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791\",\r\n \"name\": \"sdktestapim2791\",\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\": \"AAAAAAFzSa0=\",\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\": \"2019-04-11T07:30:36.0440983Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2791.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2791-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2791.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2791.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2791.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2791.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.71.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Storage/checkNameAvailability?api-version=2016-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxNi0wNS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"sdkapimbackup6644\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "3a61a8f6-cc4a-4c64-8219-c3ad872f9ead" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/6.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "83" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:19:21 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "d55f96d7-8500-48c5-927e-4559713555be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "2022e7be-d758-4677-a8d0-b16176fb0f4c" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11967" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "8eff9976-979f-44c3-bb50-cc9f296291fc" + "d29f9f2c-973b-494f-918a-2eac0b8a5258" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T081921Z:8eff9976-979f-44c3-bb50-cc9f296291fc" + "WESTUS2:20190411T075846Z:d29f9f2c-973b-494f-918a-2eac0b8a5258" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 07:58:45 GMT" + ], "Content-Length": [ - "0" + "22" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.Storage/storageAccounts/sdkapimbackup6644?api-version=2016-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zZGthcGltYmFja3VwNjY0ND9hcGktdmVyc2lvbj0yMDE2LTA1LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "7f432451-8f93-4772-9a3f-3109d4ff5c38" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/6.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "100" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:20:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "1cbae9a8-2ddc-4057-8007-07bce201fc50" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "67e8391c-4de4-4a4d-94cf-ac366ad046df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T082022Z:67e8391c-4de4-4a4d-94cf-ac366ad046df" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 08:21:22 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Storage/locations/centralus/asyncoperations/ef1f0e2e-f1d6-4df6-92da-165226fad18d?monitor=true&api-version=2016-05-01" ], "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "17" ], "x-ms-request-id": [ - "4bf779ee-156e-47db-af51-ee1c3ae84426" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "3b341edb-183a-40b3-b2c5-fd415821cbba" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T082122Z:3b341edb-183a-40b3-b2c5-fd415821cbba" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0FjdF9kNjIyZjNlMA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEZqZEY5a05qSXlaak5sTUE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 08:22:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "ef1f0e2e-f1d6-4df6-92da-165226fad18d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "a07d0a5a-35de-46e6-aa07-fff98c8c57f8" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "e27a5208-f001-4568-a869-df1e5de3295f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T082223Z:e27a5208-f001-4568-a869-df1e5de3295f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "1837" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906\",\r\n \"name\": \"sdktestapim7906\",\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\": \"AAAAAAFttbQ=\",\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\": \"2019-04-02T07:50:08.452921Z\",\r\n \"gatewayUrl\": \"https://sdktestapim7906.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim7906-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim7906.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim7906.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim7906.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"168.61.214.39\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\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}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Storage/checkNameAvailability?api-version=2016-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxNi0wNS0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdkapimbackup6256\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "25d54c15-8a07-4f80-88c2-bbfe7f35e29d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/6.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "83" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 08:22:23 GMT" - ], - "Pragma": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ - "610cedf3-8c18-4af1-93f2-14012b50da9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], "x-ms-correlation-request-id": [ - "2a3bcab8-5e0e-4ef9-84a9-0869406b3ae5" + "5e4f9a49-c46b-4835-93bd-b40f5f549b5a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T082224Z:2a3bcab8-5e0e-4ef9-84a9-0869406b3ae5" + "WESTUS2:20190411T075847Z:5e4f9a49-c46b-4835-93bd-b40f5f549b5a" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "22" + "Date": [ + "Thu, 11 Apr 2019 07:58:47 GMT" ], "Content-Type": [ - "application/json" + "text/plain; charset=utf-8" ], "Expires": [ "-1" - ] - }, - "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.Storage/storageAccounts/sdkapimbackup6256?api-version=2016-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zZGthcGltYmFja3VwNjI1Nj9hcGktdmVyc2lvbj0yMDE2LTA1LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"Central US\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fb8e0268-3d0e-44e3-b0ea-f8f12d4416d8" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/6.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "100" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 08:22:25 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Storage/locations/centralus/asyncoperations/6a710327-9fa7-4ac8-a3c3-8d0cd1ea394e?monitor=true&api-version=2016-05-01" - ], - "Retry-After": [ - "17" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "6a710327-9fa7-4ac8-a3c3-8d0cd1ea394e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "5070e4ec-48db-4ef9-8bef-a2f8dac15ee1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T082225Z:5070e4ec-48db-4ef9-8bef-a2f8dac15ee1" - ], - "X-Content-Type-Options": [ - "nosniff" ], "Content-Length": [ "0" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Storage/locations/centralus/asyncoperations/6a710327-9fa7-4ac8-a3c3-8d0cd1ea394e?monitor=true&api-version=2016-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvY2VudHJhbHVzL2FzeW5jb3BlcmF0aW9ucy82YTcxMDMyNy05ZmE3LTRhYzgtYTNjMy04ZDBjZDFlYTM5NGU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMDUtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Storage/locations/centralus/asyncoperations/ef1f0e2e-f1d6-4df6-92da-165226fad18d?monitor=true&api-version=2016-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvY2VudHJhbHVzL2FzeW5jb3BlcmF0aW9ucy9lZjFmMGUyZS1mMWQ2LTRkZjYtOTJkYS0xNjUyMjZmYWQxOGQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Storage.StorageManagementClient/6.0.0.0" @@ -2283,33 +2043,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:22:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "e7aaee26-3123-411a-ae39-fa6fbfca3f11" + "13ae0fb1-1866-4530-8b09-57fdecd7e5c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11966" ], "x-ms-correlation-request-id": [ - "631f7a4f-8ab4-49c5-86af-9ad4fd400279" + "61c01908-92fa-494a-af54-4e8eccd34900" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T082243Z:631f7a4f-8ab4-49c5-86af-9ad4fd400279" + "WESTUS2:20190411T075905Z:61c01908-92fa-494a-af54-4e8eccd34900" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 07:59:04 GMT" + ], "Content-Length": [ "957" ], @@ -2320,23 +2080,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.Storage/storageAccounts/sdkapimbackup6256\",\r\n \"name\": \"sdkapimbackup6256\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-02T08:22:25.4605Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-02T08:22:25.1480081Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sdkapimbackup6256.blob.core.windows.net/\",\r\n \"queue\": \"https://sdkapimbackup6256.queue.core.windows.net/\",\r\n \"table\": \"https://sdkapimbackup6256.table.core.windows.net/\",\r\n \"file\": \"https://sdkapimbackup6256.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.Storage/storageAccounts/sdkapimbackup6644\",\r\n \"name\": \"sdkapimbackup6644\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-04-11T07:58:47.3101924Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-11T07:58:47.2008064Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sdkapimbackup6644.blob.core.windows.net/\",\r\n \"queue\": \"https://sdkapimbackup6644.queue.core.windows.net/\",\r\n \"table\": \"https://sdkapimbackup6644.table.core.windows.net/\",\r\n \"file\": \"https://sdkapimbackup6644.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.Storage/storageAccounts/sdkapimbackup6256/listKeys?api-version=2016-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zZGthcGltYmFja3VwNjI1Ni9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTA1LTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.Storage/storageAccounts/sdkapimbackup6644/listKeys?api-version=2016-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zZGthcGltYmFja3VwNjY0NC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTA1LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d0d4832-b5a3-4acb-9392-1bfc4d0cc9f2" + "a025db14-1173-4d57-a4e9-73d08ebbbf22" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Storage.StorageManagementClient/6.0.0.0" @@ -2346,33 +2106,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:22:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "3fb24956-207a-4bd4-8c37-5f73e658d20d" + "516295af-a85c-489c-a07b-195618f2f43d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "68b6d934-1d20-4070-be11-d5c80637297c" + "fd2d2a57-1aa6-4df3-8af7-77f4366c7d51" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T082243Z:68b6d934-1d20-4070-be11-d5c80637297c" + "WESTUS2:20190411T075905Z:fd2d2a57-1aa6-4df3-8af7-77f4366c7d51" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 07:59:04 GMT" + ], "Content-Length": [ "288" ], @@ -2383,2293 +2143,1753 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"fI00uvubTO/aq4CRXuVfz/iOvDWpp9dXeKj+RJSC353saJjmih6B4ZvXi4kJkiwVQba0lhXoGogHcenKTh+E8A==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"49enaXi/7pdv17NadA7ya+c3RJ8zln6aEituJEOIkz6HZPvFeGKUZ38YpYQfS9XuW3fj98eZz6bomJI5d9PWEw==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"mWz1z1+USUmXGy8JZeGiKrudW3iMvzmsWLwtg3EAZZYldKPaTQBbnZ4CWW+iL2x0NeBKgtIoeekx/O6M40t+iA==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"dtT2b/v6VnZd2BDvFOCvNTVH+OFoLWFoqe9ivkWpm9DLlwvkE45CzA8QRfrTwNkmqaSgkOgTZG7BYnjOLKuACQ==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/backup?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L2JhY2t1cD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/backup?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL2JhY2t1cD9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"storageAccount\": \"sdkapimbackup6256\",\r\n \"accessKey\": \"fI00uvubTO/aq4CRXuVfz/iOvDWpp9dXeKj+RJSC353saJjmih6B4ZvXi4kJkiwVQba0lhXoGogHcenKTh+E8A==\",\r\n \"containerName\": \"apimbackupcontainer\",\r\n \"backupName\": \"apimbackup.zip\"\r\n}", + "RequestBody": "{\r\n \"storageAccount\": \"sdkapimbackup6644\",\r\n \"accessKey\": \"mWz1z1+USUmXGy8JZeGiKrudW3iMvzmsWLwtg3EAZZYldKPaTQBbnZ4CWW+iL2x0NeBKgtIoeekx/O6M40t+iA==\",\r\n \"containerName\": \"apimbackupcontainer\",\r\n \"backupName\": \"apimbackup.zip\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "59ea4222-087e-496e-a0d1-84871ca52a6f" + "f222a5b9-f21e-49fd-9b07-1de89b805ff9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "231" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 08:22:43 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906//operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "fbb2b5b2-68bd-4a74-bb26-790c936a2fac" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "f189321d-a6c1-4c90-bf73-eba9a74e11ff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T082244Z:f189321d-a6c1-4c90-bf73-eba9a74e11ff" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906//operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2Ly9vcGVyYXRpb25yZXN1bHRzL2MyUnJkR1Z6ZEdGd2FXMDNPVEEyWDBKaFkydDFjRjlsTlRobE9ERmtOZz09P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 08:23:45 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "fc95b242-d896-4fd4-bf49-ed342db45c53" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "c68e3bb1-7947-49d1-b7b3-c70e63fc6173" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T082346Z:c68e3bb1-7947-49d1-b7b3-c70e63fc6173" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEpoWTJ0MWNGOWxOVGhsT0RGa05nPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 08:24:45 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "02623844-900d-42aa-9a51-22ec5c63b98d" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "82db6eb0-03d3-4c58-8184-870e5125ebee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T082446Z:82db6eb0-03d3-4c58-8184-870e5125ebee" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEpoWTJ0MWNGOWxOVGhsT0RGa05nPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 08:25:46 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "66b5e592-3d6e-42a0-ba26-c7e783379645" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "d9dadfb2-f293-42a8-bc1b-4b42c201f3de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T082546Z:d9dadfb2-f293-42a8-bc1b-4b42c201f3de" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEpoWTJ0MWNGOWxOVGhsT0RGa05nPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 08:26:46 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "56078835-0225-451c-a750-1ec85a18996b" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "c8d9ffc2-571f-41c4-88dd-e44e5378b521" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T082647Z:c8d9ffc2-571f-41c4-88dd-e44e5378b521" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEpoWTJ0MWNGOWxOVGhsT0RGa05nPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 08:27:47 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "6fc0c964-c5dc-4237-83eb-a2370162f1bd" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "66911897-146b-402c-860c-108f3d589de2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T082747Z:66911897-146b-402c-860c-108f3d589de2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEpoWTJ0MWNGOWxOVGhsT0RGa05nPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 08:28:47 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "a7ba4779-aef8-4cc4-8a5c-933b2392fc2f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "eecd7104-f088-4532-91e7-271ef728b566" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T082848Z:eecd7104-f088-4532-91e7-271ef728b566" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEpoWTJ0MWNGOWxOVGhsT0RGa05nPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 08:29:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "2d0a0527-0242-4cbb-a460-8e027af2a3cd" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "ce1faebc-0d17-47ad-aa0f-6db56da4dfdf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T082948Z:ce1faebc-0d17-47ad-aa0f-6db56da4dfdf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEpoWTJ0MWNGOWxOVGhsT0RGa05nPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 08:30:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "ac6651d6-3890-4571-858b-f781f7ccbdf1" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "eb7ae47a-fce5-422a-9c04-a3cae168fede" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T083049Z:eb7ae47a-fce5-422a-9c04-a3cae168fede" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEpoWTJ0MWNGOWxOVGhsT0RGa05nPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "231" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:31:49 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791//operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6cf6bcf4-6a7c-454b-98eb-0d47420b4bff" + "75c4afd3-fe1b-43dd-8e23-58f6ee8b3a2d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "56b0906a-c2d8-4fd1-bc20-71db6e8c753f" + "d72a07e9-6bdc-4b1d-9ea0-b69bb61bc6cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T083149Z:56b0906a-c2d8-4fd1-bc20-71db6e8c753f" + "WESTUS2:20190411T075906Z:d72a07e9-6bdc-4b1d-9ea0-b69bb61bc6cc" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:59:05 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEpoWTJ0MWNGOWxOVGhsT0RGa05nPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791//operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxLy9vcGVyYXRpb25yZXN1bHRzL2MyUnJkR1Z6ZEdGd2FXMHlOemt4WDBKaFkydDFjRjgxTkRkaE9USTJNQT09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:32:49 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "96c0e766-5f03-4b24-963f-855c8c40eba2" + "d979cb49-5265-49de-8946-278ae91a8feb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11971" ], "x-ms-correlation-request-id": [ - "38e5d4d9-f479-4933-8085-0b381787b1db" + "9830a579-785a-437f-860c-da44c9214bef" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T083249Z:38e5d4d9-f479-4933-8085-0b381787b1db" + "WESTUS2:20190411T080006Z:9830a579-785a-437f-860c-da44c9214bef" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:00:06 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEpoWTJ0MWNGOWxOVGhsT0RGa05nPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:33:50 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "509d10e1-8712-4951-b383-7d4f6f7ae03b" + "7e988fa0-fdf6-44b6-bd30-5e5254093153" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11970" ], "x-ms-correlation-request-id": [ - "50d68868-5914-405f-ae94-299c6716447c" + "fdf3c848-92f2-4e68-82dd-1a7c5a38258d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T083350Z:50d68868-5914-405f-ae94-299c6716447c" + "WESTUS2:20190411T080106Z:fdf3c848-92f2-4e68-82dd-1a7c5a38258d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:01:05 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEpoWTJ0MWNGOWxOVGhsT0RGa05nPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:34:50 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "19026f02-90a5-4af6-af34-e4d5e62cd00b" + "f77e7eb5-509d-4ac6-8d0d-5edc19ba1eec" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11969" ], "x-ms-correlation-request-id": [ - "b2f74bec-6ddc-4c8d-a8bc-57348105331b" + "4ff0210f-7ded-4a34-83af-d2b65046a5d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T083450Z:b2f74bec-6ddc-4c8d-a8bc-57348105331b" + "WESTUS2:20190411T080206Z:4ff0210f-7ded-4a34-83af-d2b65046a5d1" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:02:06 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEpoWTJ0MWNGOWxOVGhsT0RGa05nPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:35:50 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b461e3df-c347-468d-a6b2-75daa62dfdb7" + "36e2c734-3f09-4b46-9947-79b8d5aad8c4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11968" ], "x-ms-correlation-request-id": [ - "0d636898-9a6f-4d28-a4d6-d8c1ff96769f" + "04491515-d49c-4175-8374-6209d23f0482" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T083550Z:0d636898-9a6f-4d28-a4d6-d8c1ff96769f" + "WESTUS2:20190411T080307Z:04491515-d49c-4175-8374-6209d23f0482" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:03:06 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEpoWTJ0MWNGOWxOVGhsT0RGa05nPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:36:50 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2af9b17b-997d-40a2-b4b9-3e01e2a975ee" + "cb842d0b-0483-414e-a704-49df6fd62b49" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11967" ], "x-ms-correlation-request-id": [ - "8e9698ad-e63a-4050-9e96-92c4233eea54" + "e33f930c-b6df-43c3-915f-1391fd040c18" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T083651Z:8e9698ad-e63a-4050-9e96-92c4233eea54" + "WESTUS2:20190411T080407Z:e33f930c-b6df-43c3-915f-1391fd040c18" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:04:07 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEpoWTJ0MWNGOWxOVGhsT0RGa05nPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:37:51 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f61342e6-a214-48cb-a699-895485157dea" + "2c4562b8-5096-4f5a-ad5a-42340112dc97" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11966" ], "x-ms-correlation-request-id": [ - "54807f8e-01a3-4436-b662-255a559da561" + "79913ed5-3d2b-477f-ba7c-2289c6aa9270" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T083751Z:54807f8e-01a3-4436-b662-255a559da561" + "WESTUS2:20190411T080507Z:79913ed5-3d2b-477f-ba7c-2289c6aa9270" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:05:06 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEpoWTJ0MWNGOWxOVGhsT0RGa05nPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:38:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d9986ae7-edb9-4232-b52d-f0feac1ec77b" + "28d75bce-6adf-424d-8b7e-53dfe783b041" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11965" ], "x-ms-correlation-request-id": [ - "aa47b110-c1c6-4b41-a09c-3ea65d2ffd79" + "590c0dee-9d78-4f59-9741-5ed17826858c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T083852Z:aa47b110-c1c6-4b41-a09c-3ea65d2ffd79" + "WESTUS2:20190411T080607Z:590c0dee-9d78-4f59-9741-5ed17826858c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "1837" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Date": [ + "Thu, 11 Apr 2019 08:06:07 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906\",\r\n \"name\": \"sdktestapim7906\",\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\": \"AAAAAAFttvY=\",\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\": \"2019-04-02T07:50:08.452921Z\",\r\n \"gatewayUrl\": \"https://sdktestapim7906.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim7906-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim7906.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim7906.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim7906.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"168.61.214.39\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\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}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X0JhY2t1cF9lNThlODFkNg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMEpoWTJ0MWNGOWxOVGhsT0RGa05nPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:38:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e77c47a3-3585-4aad-a0be-45f8a8b12287" + "c42e9437-d581-48cc-928c-e0abc6a44651" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11964" ], "x-ms-correlation-request-id": [ - "42108c09-93a1-40c0-9bd1-fccf1b4f949d" + "2eb06fd0-8887-4687-a33e-04b76a1e8a36" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T083852Z:42108c09-93a1-40c0-9bd1-fccf1b4f949d" + "WESTUS2:20190411T080708Z:2eb06fd0-8887-4687-a33e-04b76a1e8a36" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "1837" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Date": [ + "Thu, 11 Apr 2019 08:07:07 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906\",\r\n \"name\": \"sdktestapim7906\",\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\": \"AAAAAAFttvY=\",\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\": \"2019-04-02T07:50:08.452921Z\",\r\n \"gatewayUrl\": \"https://sdktestapim7906.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim7906-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim7906.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim7906.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim7906.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"168.61.214.39\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\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}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/restore?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L3Jlc3RvcmU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"storageAccount\": \"sdkapimbackup6256\",\r\n \"accessKey\": \"fI00uvubTO/aq4CRXuVfz/iOvDWpp9dXeKj+RJSC353saJjmih6B4ZvXi4kJkiwVQba0lhXoGogHcenKTh+E8A==\",\r\n \"containerName\": \"apimbackupcontainer\",\r\n \"backupName\": \"apimbackup.zip\"\r\n}", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9216d047-617f-4201-a455-cb7b6f4c9d8b" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "231" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:38:53 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906//operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e160db2-6cf7-40aa-9bf2-32611b54ffa6" + "323e8cc5-3274-4e34-bbf7-d7e3eeb3d61a" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" ], "x-ms-correlation-request-id": [ - "3b04f5ba-655b-43e9-992f-2528e2246cba" + "e583cd48-563d-443c-8988-d897ff49fb71" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T083853Z:3b04f5ba-655b-43e9-992f-2528e2246cba" + "WESTUS2:20190411T080808Z:e583cd48-563d-443c-8988-d897ff49fb71" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:08:07 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906//operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2Ly9vcGVyYXRpb25yZXN1bHRzL2MyUnJkR1Z6ZEdGd2FXMDNPVEEyWDFKbGMzUnZjbVZmTlRaaVl6WXpOVGs9P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:39:53 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd5a1727-f812-4335-8ba4-690402aa63fc" + "cfd234fb-d5f7-4786-a4e4-e59fb9f50bbc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11962" ], "x-ms-correlation-request-id": [ - "9a314f33-3cc4-417e-8ea5-e8c492a71620" + "b561ce34-e3cf-4669-9b10-9cbb6ed37c0b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T083953Z:9a314f33-3cc4-417e-8ea5-e8c492a71620" + "WESTUS2:20190411T080908Z:b561ce34-e3cf-4669-9b10-9cbb6ed37c0b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:09:08 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:40:53 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d1bd7246-6fa8-43f5-bf24-ce71422b7919" + "ee437875-f3d3-429b-b3f4-1e23b5396253" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11961" ], "x-ms-correlation-request-id": [ - "cd01a0b6-660e-41b5-b057-e52d305661b3" + "bd3ed4fc-abb0-4be6-b163-8b368119adae" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T084054Z:cd01a0b6-660e-41b5-b057-e52d305661b3" + "WESTUS2:20190411T081008Z:bd3ed4fc-abb0-4be6-b163-8b368119adae" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 08:10:08 GMT" + ], "Content-Length": [ - "0" + "2046" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791\",\r\n \"name\": \"sdktestapim2791\",\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\": \"AAAAAAFzSoQ=\",\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\": \"2019-04-11T07:30:36.0440983Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2791.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2791-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2791.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2791.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2791.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2791.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.71.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX0JhY2t1cF81NDdhOTI2MA==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMEpoWTJ0MWNGODFORGRoT1RJMk1BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:41:54 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9f951c96-8696-46c6-ae0d-4c3e6a10a1ec" + "c8155009-0605-4f4c-b20e-7dbb32ebc1c6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11960" ], "x-ms-correlation-request-id": [ - "d031b337-bbb2-4c2b-b190-951c4c2244c2" + "97f284b1-c6bc-4aff-ad5c-bd16e79e9e47" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T084154Z:d031b337-bbb2-4c2b-b190-951c4c2244c2" + "WESTUS2:20190411T081009Z:97f284b1-c6bc-4aff-ad5c-bd16e79e9e47" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 08:10:08 GMT" + ], "Content-Length": [ - "0" + "2046" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791\",\r\n \"name\": \"sdktestapim2791\",\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\": \"AAAAAAFzSoQ=\",\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\": \"2019-04-11T07:30:36.0440983Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2791.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2791-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2791.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2791.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2791.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2791.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.71.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/restore?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL3Jlc3RvcmU/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"storageAccount\": \"sdkapimbackup6644\",\r\n \"accessKey\": \"mWz1z1+USUmXGy8JZeGiKrudW3iMvzmsWLwtg3EAZZYldKPaTQBbnZ4CWW+iL2x0NeBKgtIoeekx/O6M40t+iA==\",\r\n \"containerName\": \"apimbackupcontainer\",\r\n \"backupName\": \"apimbackup.zip\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "73dae1dc-9f18-41d6-95a3-6a7933611bc2" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "231" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:42:54 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791//operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72b4e2fe-6927-4587-b485-8b0adc0e5cfb" + "15d3be89-3fd0-44a2-85e6-896db7a95f0a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "e7565b33-473d-4800-9d07-84ab19850a32" + "129b6e51-ece5-4acb-95ab-ade71f88824c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T084255Z:e7565b33-473d-4800-9d07-84ab19850a32" + "WESTUS2:20190411T081010Z:129b6e51-ece5-4acb-95ab-ade71f88824c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:10:09 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791//operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxLy9vcGVyYXRpb25yZXN1bHRzL2MyUnJkR1Z6ZEdGd2FXMHlOemt4WDFKbGMzUnZjbVZmTW1KaE9XSm1NVEk9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:43:55 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eab28517-5c4a-4360-bf1e-1ad83bd0493b" + "ae69dfe5-7431-40c4-931d-5fd1c1fa2512" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11959" ], "x-ms-correlation-request-id": [ - "959c39c6-d36b-40b8-83b8-e8b5b915703c" + "3e63c4db-949e-4ddb-8b0b-2a8226adbb7f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T084355Z:959c39c6-d36b-40b8-83b8-e8b5b915703c" + "WESTUS2:20190411T081110Z:3e63c4db-949e-4ddb-8b0b-2a8226adbb7f" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:11:09 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:44:55 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e9c0b463-c836-468b-a554-dd4a45247215" + "08860a9d-912f-4c6a-a001-e72e5985d494" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11958" ], "x-ms-correlation-request-id": [ - "5ceb584b-dc8d-437a-9f31-47475178be10" + "dcfb980e-3f23-4048-9ca9-fa695a73c634" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T084456Z:5ceb584b-dc8d-437a-9f31-47475178be10" + "WESTUS2:20190411T081210Z:dcfb980e-3f23-4048-9ca9-fa695a73c634" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:12:10 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:45:55 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "daadb727-8b41-4828-8b0a-9695a61bd0ee" + "ab0e6d2e-7315-4638-aa0e-db5c05f76e3a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11957" ], "x-ms-correlation-request-id": [ - "b626b6f5-298f-44ff-b980-f6c468d1c3c5" + "e2565bf4-874f-46e1-8b8f-a6a51aaa645b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T084556Z:b626b6f5-298f-44ff-b980-f6c468d1c3c5" + "WESTUS2:20190411T081310Z:e2565bf4-874f-46e1-8b8f-a6a51aaa645b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:13:09 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:46:56 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ada18f1d-4704-4353-9b9d-12166685ba95" + "c908b54e-6be3-40ea-8803-3b3724f5189f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11956" ], "x-ms-correlation-request-id": [ - "7a63db11-8041-464e-988d-f6fabe99227d" + "4f228f16-2ef4-4e1b-967f-d4e2701ebbc4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T084656Z:7a63db11-8041-464e-988d-f6fabe99227d" + "WESTUS2:20190411T081411Z:4f228f16-2ef4-4e1b-967f-d4e2701ebbc4" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:14:10 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:47:57 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e2ea556-b119-4e42-a1e8-1e0eb108ec78" + "33affe6e-f4de-40b5-9b3c-6458623e1b7e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11955" ], "x-ms-correlation-request-id": [ - "b733a452-1369-4c6e-8486-14652a633593" + "ce75ae94-f7b1-4ab9-a214-693b0f6d6c55" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T084757Z:b733a452-1369-4c6e-8486-14652a633593" + "WESTUS2:20190411T081511Z:ce75ae94-f7b1-4ab9-a214-693b0f6d6c55" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:15:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:48:56 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b413dc9b-1630-4248-80e7-8a20ae0d5602" + "01af52b3-1629-427f-bef0-376fa19d379f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11954" ], "x-ms-correlation-request-id": [ - "8fb2a3a4-bc2f-4aec-94c3-cb349ac43ba0" + "21b79e13-c76e-403a-9880-1564c4468932" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T084857Z:8fb2a3a4-bc2f-4aec-94c3-cb349ac43ba0" + "WESTUS2:20190411T081611Z:21b79e13-c76e-403a-9880-1564c4468932" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:16:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:49:58 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5bbfeb0d-b317-4e95-b7dd-8b79f01b8c8c" + "d73c905c-2cd6-4c72-bad1-de0766cdddfb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11953" ], "x-ms-correlation-request-id": [ - "a0036021-549f-4642-9e7a-f8ab29154592" + "fdf0d2cc-e7d6-4ae4-8089-7f144bfefcad" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T084958Z:a0036021-549f-4642-9e7a-f8ab29154592" + "WESTUS2:20190411T081711Z:fdf0d2cc-e7d6-4ae4-8089-7f144bfefcad" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:17:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:50:58 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "de0181f0-03ad-42f2-9528-e29db358426e" + "82e7ec53-f2f1-4baf-82ec-809e20e56cc3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11952" ], "x-ms-correlation-request-id": [ - "29bd467b-2ed1-4a0d-8a0e-dfe45567609c" + "12d7f872-f291-461f-8849-4f7f5968628d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T085058Z:29bd467b-2ed1-4a0d-8a0e-dfe45567609c" + "WESTUS2:20190411T081812Z:12d7f872-f291-461f-8849-4f7f5968628d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:18:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:51:58 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e4139601-17ac-4c97-82ef-5854f7298e3b" + "e43209ed-5e6f-48d8-a2d4-7f8580e3b81c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11951" ], "x-ms-correlation-request-id": [ - "e668eb9f-3c4c-45ef-bc2d-10c96af9a2c2" + "41b056e7-c91c-4b73-b55a-8e5d110ad2a2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T085159Z:e668eb9f-3c4c-45ef-bc2d-10c96af9a2c2" + "WESTUS2:20190411T081912Z:41b056e7-c91c-4b73-b55a-8e5d110ad2a2" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:19:12 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:52:58 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "31516120-7e30-4a64-a53f-b9495bf05833" + "16baf2b4-220f-447a-8bce-b79b2fe8b07c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11950" ], "x-ms-correlation-request-id": [ - "339cde62-3c54-4411-8cb9-7dcd0753c7e5" + "70ca3a56-3a99-4189-85ce-405fbf0171fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T085259Z:339cde62-3c54-4411-8cb9-7dcd0753c7e5" + "WESTUS2:20190411T082013Z:70ca3a56-3a99-4189-85ce-405fbf0171fb" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:20:13 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:53:59 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a10c2f07-886a-4d10-92f9-4b2c10087c58" + "046d3b7a-3480-4cef-b61b-ab5a32c51e85" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11949" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "7d7db74f-c474-4d06-9c78-1b2c156635bf" + "484959ab-eec0-4ed2-b664-8ef3df370521" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T085359Z:7d7db74f-c474-4d06-9c78-1b2c156635bf" + "WESTUS2:20190411T082132Z:484959ab-eec0-4ed2-b664-8ef3df370521" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:21:32 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:54:58 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "895cf859-f777-4448-8b11-6ceabd894c09" + "cf05e95b-7327-44c6-9a0d-72a6ae6e132d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11948" ], "x-ms-correlation-request-id": [ - "b145a129-6b56-49dd-ba36-8c71abfccdda" + "894b1e92-73fe-4470-87a8-4f9bb90b0e72" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T085459Z:b145a129-6b56-49dd-ba36-8c71abfccdda" + "WESTUS2:20190411T082232Z:894b1e92-73fe-4470-87a8-4f9bb90b0e72" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:22:32 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:55:59 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5e17e5e3-0430-432a-891f-3a623e3bcb3b" + "631236af-7fb8-4b2a-abed-b25f3a7cbb84" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11947" ], "x-ms-correlation-request-id": [ - "cf648d35-b43d-422e-b36d-280076468d31" + "6e198247-368a-4d0d-ad66-3f64fb04745d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T085600Z:cf648d35-b43d-422e-b36d-280076468d31" + "WESTUS2:20190411T082333Z:6e198247-368a-4d0d-ad66-3f64fb04745d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:23:32 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:57:00 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c3822c8f-df7c-4f4f-970e-1861334f0371" + "333d03c2-581b-44e0-b832-022e865016e0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11946" ], "x-ms-correlation-request-id": [ - "21665fa9-ba2d-4806-921e-3be4fdbd576c" + "845824a2-582b-4e0c-98c8-cb79ddb9ee46" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T085700Z:21665fa9-ba2d-4806-921e-3be4fdbd576c" + "WESTUS2:20190411T082433Z:845824a2-582b-4e0c-98c8-cb79ddb9ee46" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:24:33 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:58:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f3fa9e5-d16a-4a37-a138-f3f3b714cbf9" + "6ab024de-fb44-43b8-bbad-6aa9aaad9b2c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11945" ], "x-ms-correlation-request-id": [ - "165b2697-2394-486f-ac32-b4cf1baceb20" + "90eb5c5b-4120-480c-9cad-450488880f8e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T085801Z:165b2697-2394-486f-ac32-b4cf1baceb20" + "WESTUS2:20190411T082534Z:90eb5c5b-4120-480c-9cad-450488880f8e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 08:25:33 GMT" + ], "Content-Length": [ - "1837" + "2046" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4678,55 +3898,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906\",\r\n \"name\": \"sdktestapim7906\",\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\": \"AAAAAAFtt7M=\",\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\": \"2019-04-02T07:50:08.452921Z\",\r\n \"gatewayUrl\": \"https://sdktestapim7906.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim7906-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim7906.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim7906.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim7906.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"168.61.214.39\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\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/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791\",\r\n \"name\": \"sdktestapim2791\",\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\": \"AAAAAAFzS9c=\",\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\": \"2019-04-11T07:30:36.0440983Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2791.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2791-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2791.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2791.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2791.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2791.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.71.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906/operationresults/c2RrdGVzdGFwaW03OTA2X1Jlc3RvcmVfNTZiYzYzNTk=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW03OTA2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwM09UQTJYMUpsYzNSdmNtVmZOVFppWXpZek5Uaz0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791/operationresults/c2RrdGVzdGFwaW0yNzkxX1Jlc3RvcmVfMmJhOWJmMTI=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY4NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yNzkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU56a3hYMUpsYzNSdmNtVmZNbUpoT1dKbU1UST0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:58:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43961167-00bf-4a42-b747-bfb0dddc0f9d" + "3bb60418-9e55-47d0-9c27-262cf43c7546" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11944" ], "x-ms-correlation-request-id": [ - "92e07233-16c1-4f0a-b57a-7d4f7145d5b5" + "20be3a4b-1a71-48a3-bfd4-ff319f971b6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T085801Z:92e07233-16c1-4f0a-b57a-7d4f7145d5b5" + "WESTUS2:20190411T082534Z:20be3a4b-1a71-48a3-bfd4-ff319f971b6a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 08:25:34 GMT" + ], "Content-Length": [ - "1837" + "2046" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4735,17 +3955,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2321/providers/Microsoft.ApiManagement/service/sdktestapim7906\",\r\n \"name\": \"sdktestapim7906\",\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\": \"AAAAAAFtt7M=\",\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\": \"2019-04-02T07:50:08.452921Z\",\r\n \"gatewayUrl\": \"https://sdktestapim7906.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim7906-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim7906.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim7906.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim7906.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"168.61.214.39\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\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/sdktestrg6864/providers/Microsoft.ApiManagement/service/sdktestapim2791\",\r\n \"name\": \"sdktestapim2791\",\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\": \"AAAAAAFzS9c=\",\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\": \"2019-04-11T07:30:36.0440983Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2791.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2791-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2791.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2791.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2791.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2791.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.71.87\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 } ], "Names": { "Initialize": [ - "sdktestapim7906", - "sdktestrg2321" + "sdktestapim2791", + "sdktestrg6864" ], "BackupAndRestoreService": [ - "sdkapimbackup6256" + "sdkapimbackup6644" ] }, "Variables": { @@ -4753,8 +3973,8 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestapim7906", + "ServiceName": "sdktestapim2791", "Location": "Central US", - "ResourceGroup": "sdktestrg2321" + "ResourceGroup": "sdktestrg6864" } } \ No newline at end of file diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/CreateInVirtualNetworkTests.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/CreateInVirtualNetworkTests.json index 2d137dc0646d..f52be673f1fd 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/CreateInVirtualNetworkTests.json +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/CreateInVirtualNetworkTests.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41932d2d-bf27-4e47-87dd-4b830a19e3f5" + "7229f210-2cb7-48c8-bd38-9fea6959b8b3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:20:27 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "31ab8933-de05-4fc6-bef4-d2fd070b3be0" + "c79d0cad-78ba-4f23-b023-f5ea91059588" ], "x-ms-correlation-request-id": [ - "31ab8933-de05-4fc6-bef4-d2fd070b3be0" + "c79d0cad-78ba-4f23-b023-f5ea91059588" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T052028Z:31ab8933-de05-4fc6-bef4-d2fd070b3be0" + "WESTUS2:20190411T053726Z:c79d0cad-78ba-4f23-b023-f5ea91059588" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,33 +44,36 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "1876" + "Date": [ + "Thu, 11 Apr 2019 05:37:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1941" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg9602?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzk2MDI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg6588?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzY1ODg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "df543fac-d216-4124-a565-39e84cc9fc24" + "81cb70a8-a82f-4cfd-a17f-95971efc8c71" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" @@ -89,9 +89,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:20:29 GMT" - ], "Pragma": [ "no-cache" ], @@ -99,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "2ebb3dbe-e4fc-4ff6-a520-e7c409d42bbe" + "28e0126a-820f-4702-97ba-2c2c6fcfe44e" ], "x-ms-correlation-request-id": [ - "2ebb3dbe-e4fc-4ff6-a520-e7c409d42bbe" + "28e0126a-820f-4702-97ba-2c2c6fcfe44e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T052029Z:2ebb3dbe-e4fc-4ff6-a520-e7c409d42bbe" + "WESTUS2:20190411T053727Z:28e0126a-820f-4702-97ba-2c2c6fcfe44e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 05:37:27 GMT" + ], "Content-Length": [ "182" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602\",\r\n \"name\": \"sdktestrg9602\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588\",\r\n \"name\": \"sdktestrg6588\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.Network/virtualNetworks/apimvnet8050?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9hcGltdm5ldDgwNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9hcGltdm5ldDQ1Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"apimsubnet9439\"\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"apimsubnet7750\"\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5cfa43b8-85fb-438a-bda9-9b46a86aac4c" + "55cf4a5c-5ab9-488e-bfc1-77a0965a19c9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0.0" @@ -155,42 +155,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:20:30 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "3" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "c49fccb4-e591-499f-8d80-af72050dc9d3" + "ae323786-50cc-41e2-8d72-bbe519667c70" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Network/locations/centralus/operations/c49fccb4-e591-499f-8d80-af72050dc9d3?api-version=2017-03-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Network/locations/centralus/operations/ae323786-50cc-41e2-8d72-bbe519667c70?api-version=2017-03-01" ], "x-ms-correlation-request-id": [ - "d91d3c5e-3baa-470e-a528-2bb9429ed688" + "9d345a80-5d92-4ed9-9452-b4c43b58899c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T052030Z:d91d3c5e-3baa-470e-a528-2bb9429ed688" + "WESTUS2:20190411T053729Z:9d345a80-5d92-4ed9-9452-b4c43b58899c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 05:37:29 GMT" + ], "Content-Length": [ - "1067" + "1064" ], "Content-Type": [ "application/json; charset=utf-8" @@ -199,17 +199,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"apimvnet8050\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.Network/virtualNetworks/apimvnet8050\",\r\n \"etag\": \"W/\\\"e6f7e6e3-37a7-400f-b54c-793a2a499d32\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c290f840-631e-4ddb-b636-85f4c3d664e9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"apimsubnet9439\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.Network/virtualNetworks/apimvnet8050/subnets/apimsubnet9439\",\r\n \"etag\": \"W/\\\"e6f7e6e3-37a7-400f-b54c-793a2a499d32\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"apimvnet452\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452\",\r\n \"etag\": \"W/\\\"5a286be7-fe66-4947-991c-e73fef0916b7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"af10d335-425a-47fd-a3d6-0649c21b86f6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"apimsubnet7750\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"etag\": \"W/\\\"5a286be7-fe66-4947-991c-e73fef0916b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Network/locations/centralus/operations/c49fccb4-e591-499f-8d80-af72050dc9d3?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvYzQ5ZmNjYjQtZTU5MS00OTlmLThkODAtYWY3MjA1MGRjOWQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.Network/locations/centralus/operations/ae323786-50cc-41e2-8d72-bbe519667c70?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzL29wZXJhdGlvbnMvYWUzMjM3ODYtNTBjYy00MWUyLThkNzItYmJlNTE5NjY3YzcwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0.0" @@ -219,34 +219,34 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:20:33 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "daa1cd2c-f310-4480-87ea-16c5f6aec620" + "bb5d8476-86fd-4d22-8e69-1ebe6b8629b5" ], "x-ms-correlation-request-id": [ - "bdc60cf2-49b5-49ca-8f31-dde7fa1b7f76" + "00ce7a5a-8cb6-4a8e-80e4-c283df37b3cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T052034Z:bdc60cf2-49b5-49ca-8f31-dde7fa1b7f76" + "WESTUS2:20190411T053732Z:00ce7a5a-8cb6-4a8e-80e4-c283df37b3cf" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 05:37:32 GMT" + ], "Content-Length": [ "29" ], @@ -261,13 +261,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.Network/virtualNetworks/apimvnet8050?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9hcGltdm5ldDgwNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9hcGltdm5ldDQ1Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0.0" @@ -277,39 +277,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:20:33 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"00b4848d-5905-47b5-acfd-8fb8d4b2d487\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "W/\"330f4854-5201-464c-a19d-25a72b6771c4\"" ], "x-ms-request-id": [ - "c7463c90-3e81-4e82-bf66-2d12d01816a9" + "0c023130-0969-486d-8552-c53748d45403" ], "x-ms-correlation-request-id": [ - "d94429c6-14cf-4567-a3a0-00552b7fdd19" + "a81ec07b-8e3f-4d31-81fe-2888ff726953" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T052034Z:d94429c6-14cf-4567-a3a0-00552b7fdd19" + "WESTUS2:20190411T053732Z:a81ec07b-8e3f-4d31-81fe-2888ff726953" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 05:37:32 GMT" + ], "Content-Length": [ - "1069" + "1066" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,23 +318,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"apimvnet8050\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.Network/virtualNetworks/apimvnet8050\",\r\n \"etag\": \"W/\\\"00b4848d-5905-47b5-acfd-8fb8d4b2d487\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c290f840-631e-4ddb-b636-85f4c3d664e9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"apimsubnet9439\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.Network/virtualNetworks/apimvnet8050/subnets/apimsubnet9439\",\r\n \"etag\": \"W/\\\"00b4848d-5905-47b5-acfd-8fb8d4b2d487\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"apimvnet452\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452\",\r\n \"etag\": \"W/\\\"330f4854-5201-464c-a19d-25a72b6771c4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"af10d335-425a-47fd-a3d6-0649c21b86f6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"apimsubnet7750\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"etag\": \"W/\\\"330f4854-5201-464c-a19d-25a72b6771c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.Network/virtualNetworks/apimvnet8050/subnets/apimsubnet9439?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9hcGltdm5ldDgwNTAvc3VibmV0cy9hcGltc3VibmV0OTQzOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9hcGltdm5ldDQ1Mi9zdWJuZXRzL2FwaW1zdWJuZXQ3NzUwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44a07312-fb29-48a7-9c8c-ac4d4dcb1d8e" + "e26dbfb0-076e-4861-8fd2-4c951bda6f28" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0.0" @@ -344,39 +344,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:20:33 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"00b4848d-5905-47b5-acfd-8fb8d4b2d487\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "W/\"330f4854-5201-464c-a19d-25a72b6771c4\"" ], "x-ms-request-id": [ - "1b2d135c-db44-4da0-bd3e-16f309450a8b" + "2a5faaf0-1a98-475a-a979-61c7458f9135" ], "x-ms-correlation-request-id": [ - "a7bf044d-b305-40cd-a32f-652ed0d3108d" + "ed3db653-92ad-42d3-af10-97029adb084c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T052034Z:a7bf044d-b305-40cd-a32f-652ed0d3108d" + "WESTUS2:20190411T053732Z:ed3db653-92ad-42d3-af10-97029adb084c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 05:37:32 GMT" + ], "Content-Length": [ - "418" + "417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -385,77 +385,77 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"apimsubnet9439\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.Network/virtualNetworks/apimvnet8050/subnets/apimsubnet9439\",\r\n \"etag\": \"W/\\\"00b4848d-5905-47b5-acfd-8fb8d4b2d487\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"apimsubnet7750\",\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"etag\": \"W/\\\"330f4854-5201-464c-a19d-25a72b6771c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.Network/virtualNetworks/apimvnet8050/subnets/apimsubnet9439\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cb635e8b-0fcf-4a32-a690-9a5ce59543ba" + "c46b23f0-5fd6-4be9-bdcb-0cf6bb1bf2a0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "565" + "564" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:20:36 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtq/M=\"" + "\"AAAAAAFzQYo=\"" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b449acac-6411-43df-ad7d-d5d91fb390ef", - "8b368880-fea6-4977-a0c9-b8a1c13077a9" + "f4912757-2273-411b-aabd-a129ec9db7f7", + "101199f4-a0f9-4e5d-a363-9807630c4d04" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "b2ee10a4-eaca-409f-afc6-d967a5636916" + "e033881a-f100-4dc7-ad37-139e27e48d75" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T052036Z:b2ee10a4-eaca-409f-afc6-d967a5636916" + "WESTUS2:20190411T053734Z:e033881a-f100-4dc7-ad37-139e27e48d75" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 05:37:34 GMT" + ], "Content-Length": [ - "1199" + "1380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -464,77 +464,77 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873\",\r\n \"name\": \"sdktestapim4873\",\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\": \"AAAAAAFtq/M=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-02T05:20:36.3061307Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.Network/virtualNetworks/apimvnet8050/subnets/apimsubnet9439\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\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/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087\",\r\n \"name\": \"sdktestapim1087\",\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\": \"AAAAAAFzQYo=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-11T05:37:34.2435191Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.Network/virtualNetworks/apimvnet8050/subnets/apimsubnet9439\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2f66d921-8395-4c45-8a44-2198d71873a4" + "c504cb89-f490-4965-bbe7-1587c4b271d6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "565" + "564" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:02:59 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtrls=\"" + "\"AAAAAAFzQxQ=\"" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e1bcd391-5303-4b83-919e-88bbc71b0bb2", - "edef61db-bd6c-4670-ab0a-4dde4eda3e36" + "31bbbdd5-bd6c-4132-9344-1498d82fe896", + "566d8cb4-7cd9-4692-98ed-7c9f2c17173a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "2195d346-5efb-4dc4-9ec8-73a276f74f72" + "a002a0e0-75d4-4f8b-8dd1-4b38abfb45f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T060259Z:2195d346-5efb-4dc4-9ec8-73a276f74f72" + "WESTUS2:20190411T061452Z:a002a0e0-75d4-4f8b-8dd1-4b38abfb45f7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 06:14:52 GMT" + ], "Content-Length": [ - "2094" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -543,2584 +543,2467 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873\",\r\n \"name\": \"sdktestapim4873\",\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\": \"AAAAAAFtrls=\",\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\": \"Updating\",\r\n \"createdAtUtc\": \"2019-04-02T05:20:36.3061307Z\",\r\n \"gatewayUrl\": \"https://sdktestapim4873.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim4873-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim4873.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim4873.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim4873.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.19\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.Network/virtualNetworks/apimvnet8050/subnets/apimsubnet9439\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\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/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087\",\r\n \"name\": \"sdktestapim1087\",\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\": \"AAAAAAFzQxQ=\",\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\": \"Updating\",\r\n \"createdAtUtc\": \"2019-04-11T05:37:34.2435191Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1087.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1087-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1087.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1087.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1087.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim1087.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.187.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:21:36 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a814ec75-4073-4339-bc5a-5db9346261cd" + "0ba8e1a0-4854-4f7c-ba14-21e8c95c748d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "28911abb-c271-44da-88de-17867186f812" + "a9c9eb48-e1f4-4271-8b3d-a9b37e8a92a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T052137Z:28911abb-c271-44da-88de-17867186f812" + "WESTUS2:20190411T053835Z:a9c9eb48-e1f4-4271-8b3d-a9b37e8a92a9" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:38:34 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:22:37 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5998d01d-c108-4d7f-b590-673a97a83317" + "9e158145-ede7-4e9b-afde-8fbb363e11d4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-correlation-request-id": [ - "5cdc4e2d-6caa-4fbb-8a48-a873eb2011de" + "9560e970-2240-4462-ad52-a3acf846fa36" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T052237Z:5cdc4e2d-6caa-4fbb-8a48-a873eb2011de" + "WESTUS2:20190411T053935Z:9560e970-2240-4462-ad52-a3acf846fa36" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:39:35 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:23:37 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d11ab5ae-b752-48b4-84a3-249b58d16919" + "c6fcc0d8-d94b-4487-a4ab-375b4e93d255" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-correlation-request-id": [ - "b3960e69-3139-4944-b99f-0366553e8c96" + "ab296590-71b2-4ecc-b226-d99ca0bc187f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T052338Z:b3960e69-3139-4944-b99f-0366553e8c96" + "WESTUS2:20190411T054036Z:ab296590-71b2-4ecc-b226-d99ca0bc187f" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:40:35 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:24:37 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f37ff59-f646-438f-b0c5-449024d2d3cb" + "41cccf3d-fde1-4583-9c77-d51f2fc9c4c6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "x-ms-correlation-request-id": [ - "bf68204e-295a-46b4-92cf-9e3711cd1b1d" + "e9a296dd-f752-4df1-b99f-a1b2039b9520" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T052438Z:bf68204e-295a-46b4-92cf-9e3711cd1b1d" + "WESTUS2:20190411T054136Z:e9a296dd-f752-4df1-b99f-a1b2039b9520" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:41:35 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:25:38 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "482cd7e0-891e-4a28-b7f5-bd1b666ac589" + "442d38f6-4051-4eeb-8de2-e09aa1e20733" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-correlation-request-id": [ - "b8f37e3a-ce43-47df-a0c6-0d1e995aba10" + "74b56921-8055-4e2e-af9d-17cad332f7a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T052538Z:b8f37e3a-ce43-47df-a0c6-0d1e995aba10" + "WESTUS2:20190411T054236Z:74b56921-8055-4e2e-af9d-17cad332f7a9" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:42:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:26:38 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "796e01ac-fe30-4433-a919-44098637a27e" + "8faebcb8-9fba-4df1-88de-399cc1f33320" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11992" ], "x-ms-correlation-request-id": [ - "7aeb9f58-46e3-4145-acdb-4dabcdfffbf3" + "08152d78-47ba-4497-8889-8b3bd6e0297a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T052639Z:7aeb9f58-46e3-4145-acdb-4dabcdfffbf3" + "WESTUS2:20190411T054337Z:08152d78-47ba-4497-8889-8b3bd6e0297a" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:43:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:27:39 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6169b44f-cc68-459e-ae7b-0cf45889cb21" + "7f66120e-a981-44cd-9690-ef43c8817f53" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11991" ], "x-ms-correlation-request-id": [ - "02075579-a2db-4871-9be3-29aff7cf20bd" + "e5cb162f-d27e-4d9b-8aa8-63147d018fb9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T052739Z:02075579-a2db-4871-9be3-29aff7cf20bd" + "WESTUS2:20190411T054437Z:e5cb162f-d27e-4d9b-8aa8-63147d018fb9" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:44:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:28:39 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b3faabc-83cb-4f75-868f-953037263404" + "37fce203-2a6d-43dd-b15e-1bf72f4e5912" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11990" ], "x-ms-correlation-request-id": [ - "ed37ea52-4ea6-4494-aea8-8fc7293ff1a5" + "6fbf7a6b-57de-466c-b4f1-c41ef35b3035" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T052839Z:ed37ea52-4ea6-4494-aea8-8fc7293ff1a5" + "WESTUS2:20190411T054537Z:6fbf7a6b-57de-466c-b4f1-c41ef35b3035" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:45:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:29:39 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f477b519-e1a4-42d8-9adf-af2362558631" + "68ce9a8e-03c8-45c3-8577-b63875614764" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11989" ], "x-ms-correlation-request-id": [ - "b9276592-ec02-430b-9dc8-4bcb6a8a9a79" + "605d1da5-29aa-4def-b106-36af1f684540" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T052940Z:b9276592-ec02-430b-9dc8-4bcb6a8a9a79" + "WESTUS2:20190411T054638Z:605d1da5-29aa-4def-b106-36af1f684540" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:46:38 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:30:40 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1e85d413-cc21-4e35-a2de-3474f1146758" + "fd7ff76c-ca4b-4976-b591-fbf946076e44" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11988" ], "x-ms-correlation-request-id": [ - "1a8ca765-d5a7-4296-857c-4d7f25b140b6" + "7ccb0803-4f67-4abd-8633-e68dd958dc62" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T053040Z:1a8ca765-d5a7-4296-857c-4d7f25b140b6" + "WESTUS2:20190411T054738Z:7ccb0803-4f67-4abd-8633-e68dd958dc62" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:47:38 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:31:40 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca1165ff-4db3-4b4d-b783-d50a23ba853c" + "1a42e316-b6a8-4f34-a58f-a98a4bc032e9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11987" ], "x-ms-correlation-request-id": [ - "0bb26c33-a3fa-405a-8d7d-c422b9b3b407" + "9da2a785-3a2d-4df6-84c9-478f0a7d1d90" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T053140Z:0bb26c33-a3fa-405a-8d7d-c422b9b3b407" + "WESTUS2:20190411T054839Z:9da2a785-3a2d-4df6-84c9-478f0a7d1d90" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:48:38 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:32:41 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76129028-f591-485a-b7d0-9bd20548203c" + "d5e05b67-d670-48f8-8796-f3e091130428" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11986" ], "x-ms-correlation-request-id": [ - "ec90d92e-bdaa-464e-9ed3-be7929277f72" + "49525fe0-1272-488e-bfed-827556613eae" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T053241Z:ec90d92e-bdaa-464e-9ed3-be7929277f72" + "WESTUS2:20190411T054939Z:49525fe0-1272-488e-bfed-827556613eae" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:49:39 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:33:41 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dff80839-d80d-4803-918d-59b4cb3082d4" + "810b22a3-ff38-4a2b-ad30-80fde00e3b04" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11985" ], "x-ms-correlation-request-id": [ - "8ae180fd-cfd0-42e7-9ad6-19ce984997f4" + "7ffde6d5-1af6-4120-86b6-0ff53ebea696" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T053341Z:8ae180fd-cfd0-42e7-9ad6-19ce984997f4" + "WESTUS2:20190411T055039Z:7ffde6d5-1af6-4120-86b6-0ff53ebea696" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:50:39 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:34:41 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "387ba4ee-e241-40de-9329-667ab47a9147" + "c8b2e506-d3be-4366-bc9e-a9ddf3c2cb05" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11984" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "c95bc8f6-bb3a-4841-b5d2-69c8c195c12c" + "68270178-2457-4774-87b1-e652ef44ace3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T053442Z:c95bc8f6-bb3a-4841-b5d2-69c8c195c12c" + "WESTUS2:20190411T055140Z:68270178-2457-4774-87b1-e652ef44ace3" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:51:40 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:35:42 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8ba739bc-8186-4930-8f22-29e73e17bd2d" + "4b7ffc7a-64b5-40cf-930f-e894a0ec4510" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11983" ], "x-ms-correlation-request-id": [ - "1e7a1989-1a80-4d1b-bfba-a85891f88af2" + "d1e49259-2113-47fe-8e41-a1348596b937" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T053542Z:1e7a1989-1a80-4d1b-bfba-a85891f88af2" + "WESTUS2:20190411T055240Z:d1e49259-2113-47fe-8e41-a1348596b937" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:52:40 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:36:42 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a7cd740d-46bf-4c2a-b1fd-f269662b4a1e" + "9e3248ae-02aa-4407-b048-1c204dda0b90" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11982" ], "x-ms-correlation-request-id": [ - "61fb7e3f-a35c-4f4b-9f3e-2b3701f80258" + "fd850eb8-4161-4b46-a656-ef44159e07f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T053643Z:61fb7e3f-a35c-4f4b-9f3e-2b3701f80258" + "WESTUS2:20190411T055341Z:fd850eb8-4161-4b46-a656-ef44159e07f8" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:53:40 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:37:43 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b441b18a-1959-4430-b1ec-09270de1fed4" + "e6a5f9b5-ca9b-4ccb-b465-08aef9e00142" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11981" ], "x-ms-correlation-request-id": [ - "294f4c7b-4e23-46ba-aa0c-ca10fb429db6" + "299b3f27-b59b-4aae-a028-388ad446ca19" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T053744Z:294f4c7b-4e23-46ba-aa0c-ca10fb429db6" + "WESTUS2:20190411T055441Z:299b3f27-b59b-4aae-a028-388ad446ca19" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:54:40 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:38:44 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7d5d6c92-38e3-4d9d-b9f3-ba78f1cc3704" + "987df315-ca19-492f-96bc-f7ca26afb499" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11980" ], "x-ms-correlation-request-id": [ - "f5aff47f-a283-4e44-9b38-b09b4769ffb0" + "f72e6723-d006-48f5-bd7e-8d8ba20087fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T053844Z:f5aff47f-a283-4e44-9b38-b09b4769ffb0" + "WESTUS2:20190411T055541Z:f72e6723-d006-48f5-bd7e-8d8ba20087fd" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:55:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:39:44 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d623b4f2-07a9-480c-8de3-f2d57fc6f979" + "ab051216-de8d-481d-8fec-978303c4a4ee" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11979" ], "x-ms-correlation-request-id": [ - "c593ff0f-081a-49cf-9c92-44852f0f3e1b" + "afb57d2c-1044-48b5-8e16-93c75fb882f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T053945Z:c593ff0f-081a-49cf-9c92-44852f0f3e1b" + "WESTUS2:20190411T055641Z:afb57d2c-1044-48b5-8e16-93c75fb882f4" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:56:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:40:45 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "77f297ee-8ac2-4532-926b-5fe5af4cefc8" + "c4196e9f-c2fd-4e74-89ad-b3f39caacc8a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11978" ], "x-ms-correlation-request-id": [ - "a300174c-407d-48bc-98a2-45bb6ddcd052" + "bc142199-270a-4f6a-9689-cfb990d8a113" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T054045Z:a300174c-407d-48bc-98a2-45bb6ddcd052" + "WESTUS2:20190411T055742Z:bc142199-270a-4f6a-9689-cfb990d8a113" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:57:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:41:45 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f857a61-525a-4899-89da-9ba04ab01142" + "79ad1d91-dc32-4a09-a5aa-7ebb2be660d6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11977" ], "x-ms-correlation-request-id": [ - "7aefbbc2-c8ae-4877-8f24-dab5e8715bc1" + "c0bc9a8a-cc9d-4f74-8127-e17a30fa491f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T054145Z:7aefbbc2-c8ae-4877-8f24-dab5e8715bc1" + "WESTUS2:20190411T055842Z:c0bc9a8a-cc9d-4f74-8127-e17a30fa491f" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:58:42 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:42:46 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91a5e35f-e655-4da7-9d7c-b2fe5f54ffa3" + "b098ab26-1ab3-46c3-bca2-f8bba58cc090" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11976" ], "x-ms-correlation-request-id": [ - "bf272edb-931b-402b-9acc-ff4edfa01013" + "9bb23c43-b53c-4f9a-8272-28d0efda2904" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T054246Z:bf272edb-931b-402b-9acc-ff4edfa01013" + "WESTUS2:20190411T055943Z:9bb23c43-b53c-4f9a-8272-28d0efda2904" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:59:42 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:43:46 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "946e9fe9-8b34-4828-bc5a-07454d688a17" + "57dd3e98-a878-45f2-a800-be6ca7a44538" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11977" ], "x-ms-correlation-request-id": [ - "a3c9758c-98c0-4610-a470-ef9a8ee29751" + "bfb9ef9e-6b1a-4dca-bd14-343e7a43c95d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T054346Z:a3c9758c-98c0-4610-a470-ef9a8ee29751" + "WESTUS2:20190411T060043Z:bfb9ef9e-6b1a-4dca-bd14-343e7a43c95d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:00:42 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:44:47 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f04079cf-e20c-4a30-aae4-9e4bd59195db" + "85a55c58-b0d4-4382-ba02-8d181d869363" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11976" ], "x-ms-correlation-request-id": [ - "7d9d816b-683e-4ca5-b951-21cdbdd55eb3" + "584eecae-4973-40a4-8a94-95ff372baf88" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T054447Z:7d9d816b-683e-4ca5-b951-21cdbdd55eb3" + "WESTUS2:20190411T060143Z:584eecae-4973-40a4-8a94-95ff372baf88" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:01:42 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X0FjdF9iYjg5ZDM0Ng==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMEZqZEY5aVlqZzVaRE0wTmc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:45:47 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "516c106d-6dcf-42b3-a386-0aabd2fb3522" + "a21b0eb8-319e-48bf-bec7-94e54db710db" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11975" ], "x-ms-correlation-request-id": [ - "324715db-dce6-4c45-8d64-637d4ad76008" + "f792b8d2-d082-4458-ae4c-3776a1eba611" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T054547Z:324715db-dce6-4c45-8d64-637d4ad76008" + "WESTUS2:20190411T060243Z:f792b8d2-d082-4458-ae4c-3776a1eba611" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 06:02:43 GMT" + ], "Content-Length": [ - "0" + "2294" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087\",\r\n \"name\": \"sdktestapim1087\",\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\": \"AAAAAAFzQp4=\",\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\": \"2019-04-11T05:37:34.2435191Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1087.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1087-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1087.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1087.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1087.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim1087.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.187.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/applynetworkconfigurationupdates?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L2FwcGx5bmV0d29ya2NvbmZpZ3VyYXRpb251cGRhdGVzP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "382e503b-89b2-40a1-931c-b5b9aba2530e" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:46:47 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087//operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4520fcbb-21b8-452c-9be8-0241b6577ffd" + "793220a2-51d5-4009-bb74-d7555eeb9d1d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "b614ec87-5acc-4c92-8fa2-073647e1dac4" + "4392e35d-a6a9-4619-8194-c1f53f547882" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T054648Z:b614ec87-5acc-4c92-8fa2-073647e1dac4" + "WESTUS2:20190411T060244Z:4392e35d-a6a9-4619-8194-c1f53f547882" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:02:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX0FjdF9kMDRmYWIxMQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMEZqZEY5a01EUm1ZV0l4TVE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087//operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3Ly9vcGVyYXRpb25yZXN1bHRzL2MyUnJkR1Z6ZEdGd2FXMHhNRGczWDAxaGJtRm5aVkp2YkdWZlpERXdNRFF4T0RVPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:47:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "415540bb-f707-4ddc-816e-fa9f8ee125ba" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "1029cbda-80db-4997-9f10-ec6604c2852b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T054748Z:1029cbda-80db-4997-9f10-ec6604c2852b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "2086" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873\",\r\n \"name\": \"sdktestapim4873\",\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\": \"AAAAAAFtrWg=\",\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\": \"2019-04-02T05:20:36.3061307Z\",\r\n \"gatewayUrl\": \"https://sdktestapim4873.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim4873-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim4873.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim4873.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim4873.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.19\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.Network/virtualNetworks/apimvnet8050/subnets/apimsubnet9439\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/applynetworkconfigurationupdates?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL2FwcGx5bmV0d29ya2NvbmZpZ3VyYXRpb251cGRhdGVzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a80522d9-8b80-4e66-9c75-83e1df782eea" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "32" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:47:48 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873//operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c2a8ed5-931d-4544-9efa-aea7a7e0f7b2" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "ad49afaa-1096-47ea-bb6a-ae2d214db8ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T054749Z:ad49afaa-1096-47ea-bb6a-ae2d214db8ec" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873//operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczLy9vcGVyYXRpb25yZXN1bHRzL2MyUnJkR1Z6ZEdGd2FXMDBPRGN6WDAxaGJtRm5aVkp2YkdWZllqWmpZalZqTmpBPT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:48:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01" - ], - "Retry-After": [ - "60" + "670f334a-4a24-4c6b-a95e-c9d98ba1e94e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "678a1651-2ab7-4a69-ad56-fdc33cd0c819" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11974" ], "x-ms-correlation-request-id": [ - "c1f32d63-3b93-4ac4-9807-a8c2fe1f5e55" + "8784b92b-ed4b-4e76-ae24-44a631a651e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T054849Z:c1f32d63-3b93-4ac4-9807-a8c2fe1f5e55" + "WESTUS2:20190411T060345Z:8784b92b-ed4b-4e76-ae24-44a631a651e4" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:03:45 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMDFoYm1GblpWSnZiR1ZmWWpaallqVmpOakE9P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:49:49 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87c4e424-b3a6-41b9-a309-3531476c017f" + "7587b4b0-7185-427c-a2bb-490c12bd13e7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11973" ], "x-ms-correlation-request-id": [ - "68d27150-7f5b-4f1f-b49a-15547a0748c1" + "68100295-f2cd-4de3-811e-a7e4fcf5aabc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T054950Z:68d27150-7f5b-4f1f-b49a-15547a0748c1" + "WESTUS2:20190411T060445Z:68100295-f2cd-4de3-811e-a7e4fcf5aabc" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:04:45 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMDFoYm1GblpWSnZiR1ZmWWpaallqVmpOakE9P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:50:49 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5986012e-137b-4ac8-b32d-84d5d8236c38" + "7d9b0bd4-fa4b-452a-bfe9-f8f10ab576e8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11972" ], "x-ms-correlation-request-id": [ - "b747b364-aad2-4d90-9918-f7f137c0bb40" + "565ba234-0dcb-42ae-b7aa-d283d33e9ceb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T055050Z:b747b364-aad2-4d90-9918-f7f137c0bb40" + "WESTUS2:20190411T060545Z:565ba234-0dcb-42ae-b7aa-d283d33e9ceb" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:05:45 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMDFoYm1GblpWSnZiR1ZmWWpaallqVmpOakE9P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:51:49 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "42c5b4d3-0069-4502-9529-8b6df8c1fb93" + "503b6d58-f05c-47fc-bccd-36b33b590c6a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11971" ], "x-ms-correlation-request-id": [ - "709bdc8a-7fe8-4271-a067-3411401ed68c" + "d175cd48-ad18-4ab1-9571-89154680cee1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T055150Z:709bdc8a-7fe8-4271-a067-3411401ed68c" + "WESTUS2:20190411T060646Z:d175cd48-ad18-4ab1-9571-89154680cee1" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:06:45 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMDFoYm1GblpWSnZiR1ZmWWpaallqVmpOakE9P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:52:50 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b591415a-8e4c-40e0-ac17-272cf961eaea" + "8106ac33-aa79-4a93-bc55-59995f41e617" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11970" ], "x-ms-correlation-request-id": [ - "8f4fefb6-f4de-4556-8e67-b47e954e6ad4" + "b4618f96-80f1-477e-88f3-6ecb06e7b442" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T055250Z:8f4fefb6-f4de-4556-8e67-b47e954e6ad4" + "WESTUS2:20190411T060746Z:b4618f96-80f1-477e-88f3-6ecb06e7b442" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:07:45 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMDFoYm1GblpWSnZiR1ZmWWpaallqVmpOakE9P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:53:50 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e9eb34fb-4043-4c21-a25b-9a810854fa2b" + "6c7bcdbd-ec8a-4086-a608-dfdecb6a70ea" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11969" ], "x-ms-correlation-request-id": [ - "b6456287-928b-400f-a734-e5104e987519" + "1af9c5d7-8311-400a-a387-9e5d36d6bb42" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T055351Z:b6456287-928b-400f-a734-e5104e987519" + "WESTUS2:20190411T060846Z:1af9c5d7-8311-400a-a387-9e5d36d6bb42" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:08:46 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMDFoYm1GblpWSnZiR1ZmWWpaallqVmpOakE9P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:54:50 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "53546b96-e23a-451c-ab0e-ce712a890241" + "c6993f02-eac4-4673-91f8-34afb1da9ae1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11968" ], "x-ms-correlation-request-id": [ - "deec41a5-8283-48f9-bd25-9ac3d50ab882" + "78814d4c-178b-4b74-aa93-af113f51ae5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T055451Z:deec41a5-8283-48f9-bd25-9ac3d50ab882" + "WESTUS2:20190411T060946Z:78814d4c-178b-4b74-aa93-af113f51ae5d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:09:46 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMDFoYm1GblpWSnZiR1ZmWWpaallqVmpOakE9P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:55:51 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5bc29f14-5fd5-43ec-b508-10ceeb24ac0b" + "fc86c7be-9747-45fa-9db6-008a34cb141e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11967" ], "x-ms-correlation-request-id": [ - "c834be90-9d97-47d8-8c80-58e633654466" + "eeb83214-2bba-43d3-9567-e703fbd68012" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T055551Z:c834be90-9d97-47d8-8c80-58e633654466" + "WESTUS2:20190411T061047Z:eeb83214-2bba-43d3-9567-e703fbd68012" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:10:46 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMDFoYm1GblpWSnZiR1ZmWWpaallqVmpOakE9P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:56:51 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f769d634-2f30-4ad6-8242-bf91eaced884" + "c56b5d71-ba5b-4530-9312-7ccea76485ff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11966" ], "x-ms-correlation-request-id": [ - "09a7735a-1329-4d4d-8bd5-bb6f249e2284" + "c88d40b9-0127-414d-9c4f-49fa2c130771" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T055652Z:09a7735a-1329-4d4d-8bd5-bb6f249e2284" + "WESTUS2:20190411T061147Z:c88d40b9-0127-414d-9c4f-49fa2c130771" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:11:47 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMDFoYm1GblpWSnZiR1ZmWWpaallqVmpOakE9P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:57:51 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b6d660a-c7a9-4de6-9174-699df7f621a4" + "9725db35-37da-47b9-b916-e9f013d41e6a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11965" ], "x-ms-correlation-request-id": [ - "6f5adaeb-4e1a-4617-b0ba-a132061169e8" + "7ac74817-5242-4274-af9b-615ca8f37117" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T055752Z:6f5adaeb-4e1a-4617-b0ba-a132061169e8" + "WESTUS2:20190411T061247Z:7ac74817-5242-4274-af9b-615ca8f37117" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:12:47 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMDFoYm1GblpWSnZiR1ZmWWpaallqVmpOakE9P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:58:52 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ea8c0735-c962-4162-a938-0ccc00fb8666" + "80092f6a-43f1-46d7-aeba-9574f79a08bd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11964" ], "x-ms-correlation-request-id": [ - "1018f16c-1d96-4fdd-968b-53f13225b273" + "2498be47-9001-4291-96aa-dfeeb34de431" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T055853Z:1018f16c-1d96-4fdd-968b-53f13225b273" + "WESTUS2:20190411T061347Z:2498be47-9001-4291-96aa-dfeeb34de431" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:13:46 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMDFoYm1GblpWSnZiR1ZmWWpaallqVmpOakE9P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 05:59:53 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ba0f7816-ddfe-4592-a3ae-50f5c6cffef4" + "13ab99dd-7967-47d3-8c03-171f663e8430" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11963" ], "x-ms-correlation-request-id": [ - "585c3901-5875-4085-987c-3a2e6c23214d" + "1ba1b62a-ed74-44c8-8dee-bb2cc77b1274" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T055953Z:585c3901-5875-4085-987c-3a2e6c23214d" + "WESTUS2:20190411T061448Z:1ba1b62a-ed74-44c8-8dee-bb2cc77b1274" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 06:14:47 GMT" + ], "Content-Length": [ - "0" + "2294" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087\",\r\n \"name\": \"sdktestapim1087\",\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\": \"AAAAAAFzQxA=\",\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\": \"2019-04-11T05:37:34.2435191Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1087.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1087-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1087.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1087.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1087.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim1087.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.187.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMDFoYm1GblpWSnZiR1ZmWWpaallqVmpOakE9P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X01hbmFnZVJvbGVfZDEwMDQxODU=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMDFoYm1GblpWSnZiR1ZmWkRFd01EUXhPRFU9P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:00:53 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e10f6998-b533-43f8-b564-21d8c186eb3f" + "f7dbd2f8-e2a8-4a43-927f-180a252e51e6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11962" ], "x-ms-correlation-request-id": [ - "b8490af1-20fc-4568-9e04-f1cc7e71ad3a" + "51f58302-6eef-4e29-936c-563441b695ef" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T060053Z:b8490af1-20fc-4568-9e04-f1cc7e71ad3a" + "WESTUS2:20190411T061448Z:51f58302-6eef-4e29-936c-563441b695ef" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 06:14:47 GMT" + ], "Content-Length": [ - "0" + "2294" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087\",\r\n \"name\": \"sdktestapim1087\",\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\": \"AAAAAAFzQxA=\",\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\": \"2019-04-11T05:37:34.2435191Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1087.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1087-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1087.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1087.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1087.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim1087.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.187.7\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMDFoYm1GblpWSnZiR1ZmWWpaallqVmpOakE9P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/networkstatus?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L25ldHdvcmtzdGF0dXM/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6d71aed0-900b-45d7-b43f-f5ac04f2a821" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:01:53 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0c7a3702-f50b-4b50-aaf5-564abf418010" + "7e21f13c-ab20-44f8-80b2-7a6b7095e66f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11961" ], "x-ms-correlation-request-id": [ - "2799f5bd-e66f-4f26-93f1-08190aca0af3" + "332ef502-aec2-4317-8e9d-d1e7e2f79aa3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T060154Z:2799f5bd-e66f-4f26-93f1-08190aca0af3" + "WESTUS2:20190411T061449Z:332ef502-aec2-4317-8e9d-d1e7e2f79aa3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 06:14:49 GMT" + ], "Content-Length": [ - "0" + "1539" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "[\r\n {\r\n \"location\": \"Central US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimgmtstuovku4lzqoxzsfn.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:26.9394226Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:26.1794691Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstuovku4lzqoxzsfn.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:26.4058646Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.0535388Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstuovku4lzqoxzsfn.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:26.6094907Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.2137387Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstuovku4lzqoxzsfn.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:26.9524458Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.3815689Z\"\r\n },\r\n {\r\n \"name\": \"https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:27.0770101Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.8346941Z\"\r\n },\r\n {\r\n \"name\": \"prod.warmpath.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:27.0303939Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.7911376Z\"\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"failure\",\r\n \"error\": \"An error occurred while sending the request.\",\r\n \"lastUpdated\": \"2019-04-11T06:05:27.9832887Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:28.8702543Z\"\r\n },\r\n {\r\n \"name\": \"uun8gpuqro.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:25.655056Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.2575467Z\"\r\n }\r\n ]\r\n }\r\n }\r\n]", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMDFoYm1GblpWSnZiR1ZmWWpaallqVmpOakE9P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/locations/Central%20US/networkstatus?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L2xvY2F0aW9ucy9DZW50cmFsJTIwVVMvbmV0d29ya3N0YXR1cz9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a4e766d7-0425-4319-b2bb-455ad6be69b3" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:02:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8e195165-44e5-4b65-815f-3fad0efe4f62" + "21b3484a-309b-4f56-b65f-7d29a5c35a72" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11960" ], "x-ms-correlation-request-id": [ - "6cfd6b41-a006-4981-9092-9297e050b2bc" + "ad60379f-1f87-4850-8d30-926c8ecc3a8c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T060254Z:6cfd6b41-a006-4981-9092-9297e050b2bc" + "WESTUS2:20190411T061450Z:ad60379f-1f87-4850-8d30-926c8ecc3a8c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 06:14:49 GMT" + ], "Content-Length": [ - "2086" + "1495" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3129,1801 +3012,1795 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873\",\r\n \"name\": \"sdktestapim4873\",\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\": \"AAAAAAFtrlE=\",\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\": \"2019-04-02T05:20:36.3061307Z\",\r\n \"gatewayUrl\": \"https://sdktestapim4873.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim4873-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim4873.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim4873.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim4873.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.19\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.Network/virtualNetworks/apimvnet8050/subnets/apimsubnet9439\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimgmtstuovku4lzqoxzsfn.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:26.9394226Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:26.1794691Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstuovku4lzqoxzsfn.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:26.4058646Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.0535388Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstuovku4lzqoxzsfn.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:26.6094907Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.2137387Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstuovku4lzqoxzsfn.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:26.9524458Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.3815689Z\"\r\n },\r\n {\r\n \"name\": \"https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:27.0770101Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.8346941Z\"\r\n },\r\n {\r\n \"name\": \"prod.warmpath.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:27.0303939Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.7911376Z\"\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"failure\",\r\n \"error\": \"An error occurred while sending the request.\",\r\n \"lastUpdated\": \"2019-04-11T06:05:27.9832887Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:28.8702543Z\"\r\n },\r\n {\r\n \"name\": \"uun8gpuqro.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-11T06:05:25.655056Z\",\r\n \"lastStatusChange\": \"2019-04-11T05:54:27.2575467Z\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX01hbmFnZVJvbGVfYjZjYjVjNjA=?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMDFoYm1GblpWSnZiR1ZmWWpaallqVmpOakE9P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 06:02:55 GMT" + "no-cache" ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "31d733d1-d174-465f-9ccc-08a2c32dab41" + "3a921ebb-1f27-4f6c-a479-92935f9f525f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11959" ], "x-ms-correlation-request-id": [ - "7665db14-4411-4ce1-933a-2103d949be13" + "ff82c185-8560-45f8-a2c2-e3ea97478483" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T060255Z:7665db14-4411-4ce1-933a-2103d949be13" + "WESTUS2:20190411T061553Z:ff82c185-8560-45f8-a2c2-e3ea97478483" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "2086" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Date": [ + "Thu, 11 Apr 2019 06:15:53 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873\",\r\n \"name\": \"sdktestapim4873\",\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\": \"AAAAAAFtrlE=\",\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\": \"2019-04-02T05:20:36.3061307Z\",\r\n \"gatewayUrl\": \"https://sdktestapim4873.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim4873-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim4873.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim4873.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim4873.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"40.78.133.19\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.Network/virtualNetworks/apimvnet8050/subnets/apimsubnet9439\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"External\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/networkstatus?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL25ldHdvcmtzdGF0dXM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "974019af-eb01-44d1-a546-bca67fae920f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:02:56 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a81aa3d2-29da-4d86-b3eb-db7ce509af76" + "1410bd19-7b4f-467d-8177-5139c879d99d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11958" ], "x-ms-correlation-request-id": [ - "1a571dab-45f4-4c22-bdd5-591d4ee825a9" + "14a93ad2-29b6-4b8f-92f1-af0e95c4962d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T060256Z:1a571dab-45f4-4c22-bdd5-591d4ee825a9" + "WESTUS2:20190411T061653Z:14a93ad2-29b6-4b8f-92f1-af0e95c4962d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "1612" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Date": [ + "Thu, 11 Apr 2019 06:16:52 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"Central US\",\r\n \"networkStatus\": {\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimgmtstujlss2ntfqyx8kc.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-02T05:53:19.2107206Z\",\r\n \"lastStatusChange\": \"2019-04-02T05:38:42.0781203Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstujlss2ntfqyx8kc.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-02T05:53:19.8168575Z\",\r\n \"lastStatusChange\": \"2019-04-02T05:38:41.9485853Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstujlss2ntfqyx8kc.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-02T05:53:19.3201224Z\",\r\n \"lastStatusChange\": \"2019-04-02T05:38:42.294966Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstujlss2ntfqyx8kc.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-02T05:53:19.2405204Z\",\r\n \"lastStatusChange\": \"2019-04-02T05:38:42.2143576Z\"\r\n },\r\n {\r\n \"name\": \"https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"status\": \"failure\",\r\n \"error\": \"Failed to connect to https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"lastUpdated\": \"2019-04-02T05:53:40.3853008Z\",\r\n \"lastStatusChange\": \"2019-04-02T05:53:40.3853008Z\"\r\n },\r\n {\r\n \"name\": \"murlbpx7wn.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-02T05:53:18.8355228Z\",\r\n \"lastStatusChange\": \"2019-04-02T05:38:42.2757006Z\"\r\n },\r\n {\r\n \"name\": \"prod.warmpath.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-02T05:53:19.4105758Z\",\r\n \"lastStatusChange\": \"2019-04-02T05:38:42.3382012Z\"\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"failure\",\r\n \"error\": \"An error occurred while sending the request.\",\r\n \"lastUpdated\": \"2019-04-02T05:53:20.4926793Z\",\r\n \"lastStatusChange\": \"2019-04-02T05:38:43.9026157Z\"\r\n }\r\n ]\r\n }\r\n }\r\n]", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/locations/Central%20US/networkstatus?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL2xvY2F0aW9ucy9DZW50cmFsJTIwVVMvbmV0d29ya3N0YXR1cz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4ce969b8-5452-4520-926f-59af13679de1" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:02:56 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Location": [ + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" + ], + "Retry-After": [ + "60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "50f0f0d4-898e-491e-913d-abdd4dfc344e" + "7f7eadc2-94a0-4b69-964f-3e095f49bd43" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11957" ], "x-ms-correlation-request-id": [ - "cc587e3c-1bda-4978-bd0f-9c1914b37ad7" + "8832deb8-1203-4317-a733-715c00c2f038" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T060256Z:cc587e3c-1bda-4978-bd0f-9c1914b37ad7" + "WESTUS2:20190411T061753Z:8832deb8-1203-4317-a733-715c00c2f038" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "1568" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Date": [ + "Thu, 11 Apr 2019 06:17:53 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"dnsServers\": [\r\n \"168.63.129.16\"\r\n ],\r\n \"connectivityStatus\": [\r\n {\r\n \"name\": \"apimgmtstujlss2ntfqyx8kc.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-02T05:53:19.2107206Z\",\r\n \"lastStatusChange\": \"2019-04-02T05:38:42.0781203Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstujlss2ntfqyx8kc.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-02T05:53:19.8168575Z\",\r\n \"lastStatusChange\": \"2019-04-02T05:38:41.9485853Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstujlss2ntfqyx8kc.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-02T05:53:19.3201224Z\",\r\n \"lastStatusChange\": \"2019-04-02T05:38:42.294966Z\"\r\n },\r\n {\r\n \"name\": \"apimgmtstujlss2ntfqyx8kc.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-02T05:53:19.2405204Z\",\r\n \"lastStatusChange\": \"2019-04-02T05:38:42.2143576Z\"\r\n },\r\n {\r\n \"name\": \"https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"status\": \"failure\",\r\n \"error\": \"Failed to connect to https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"lastUpdated\": \"2019-04-02T05:53:40.3853008Z\",\r\n \"lastStatusChange\": \"2019-04-02T05:53:40.3853008Z\"\r\n },\r\n {\r\n \"name\": \"murlbpx7wn.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-02T05:53:18.8355228Z\",\r\n \"lastStatusChange\": \"2019-04-02T05:38:42.2757006Z\"\r\n },\r\n {\r\n \"name\": \"prod.warmpath.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2019-04-02T05:53:19.4105758Z\",\r\n \"lastStatusChange\": \"2019-04-02T05:38:42.3382012Z\"\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"failure\",\r\n \"error\": \"An error occurred while sending the request.\",\r\n \"lastUpdated\": \"2019-04-02T05:53:20.4926793Z\",\r\n \"lastStatusChange\": \"2019-04-02T05:38:43.9026157Z\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:03:59 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d0d7edad-1117-4791-bbb5-71733f18d0a9" + "9de1f28a-f013-4292-8192-88ac6fbb6ba9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11956" ], "x-ms-correlation-request-id": [ - "e7e20442-d42a-41fe-81b2-bac9005cf22c" + "c2c0dba0-c03f-45c6-829b-fed0ee9c877c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T060359Z:e7e20442-d42a-41fe-81b2-bac9005cf22c" + "WESTUS2:20190411T061853Z:c2c0dba0-c03f-45c6-829b-fed0ee9c877c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:18:52 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:04:59 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e94a423d-6ac2-4a0d-b8f5-66cf39af850c" + "68d8911b-57e6-419d-a2c6-196e2351a5f1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11955" ], "x-ms-correlation-request-id": [ - "79edf5c1-7f42-44ea-8eb5-40ca8ac2ea22" + "daeb356c-c306-4e91-8b2f-687154a0bd7e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T060500Z:79edf5c1-7f42-44ea-8eb5-40ca8ac2ea22" + "WESTUS2:20190411T061954Z:daeb356c-c306-4e91-8b2f-687154a0bd7e" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:19:53 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:06:00 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "473108b6-c91a-49ab-9c95-38335f8035d4" + "8dda03ee-30de-43a9-96bc-ad5e261f9048" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11954" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "687011e1-347f-403f-a459-6b0aa3d5a37f" + "912561d0-482d-4232-aa06-93f4621eb132" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T060600Z:687011e1-347f-403f-a459-6b0aa3d5a37f" + "WESTUS2:20190411T062054Z:912561d0-482d-4232-aa06-93f4621eb132" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:20:53 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:07:00 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a589a91c-745c-498e-acf4-6776455403f3" + "cc9e739f-a29f-4c88-97ee-64195afdc397" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11953" ], "x-ms-correlation-request-id": [ - "06cf8f1e-b4fa-426d-be44-f3dc410f60a9" + "4676eed6-1607-4a55-863e-f9a73652b238" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T060701Z:06cf8f1e-b4fa-426d-be44-f3dc410f60a9" + "WESTUS2:20190411T062154Z:4676eed6-1607-4a55-863e-f9a73652b238" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:21:54 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:08:00 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "431fe15a-72bc-447c-b3d7-d0ed91aee8b1" + "31c07fac-7876-44ad-96eb-6d667ca33d6d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11952" ], "x-ms-correlation-request-id": [ - "069c0572-87e1-4ad1-bd9f-a116b9f5f585" + "b4f0d4ae-103f-46f3-bc1d-38762d272e5b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T060801Z:069c0572-87e1-4ad1-bd9f-a116b9f5f585" + "WESTUS2:20190411T062254Z:b4f0d4ae-103f-46f3-bc1d-38762d272e5b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:22:53 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:09:01 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "97d52844-46d5-4156-8948-b87c0a78d09d" + "4bae7992-0342-4910-b250-0a9bfd859ec8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11951" ], "x-ms-correlation-request-id": [ - "90125496-583c-4458-98b8-47f4be36d822" + "3e146b9c-b564-4b37-81fc-e1b69ee99712" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T060902Z:90125496-583c-4458-98b8-47f4be36d822" + "WESTUS2:20190411T062355Z:3e146b9c-b564-4b37-81fc-e1b69ee99712" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:23:54 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:10:01 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "64730c73-e432-4952-9405-00b69581a78e" + "7fccfb4d-8df0-44a1-9dfd-ad8fe10f1e07" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11950" ], "x-ms-correlation-request-id": [ - "4454f6c9-f054-4c2c-a39c-87d8076de97f" + "fbfac0c5-5ad9-45e0-a0c3-a0e2142fe7bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T061002Z:4454f6c9-f054-4c2c-a39c-87d8076de97f" + "WESTUS2:20190411T062455Z:fbfac0c5-5ad9-45e0-a0c3-a0e2142fe7bc" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:24:54 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:11:02 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6e26a477-0408-4ae9-a0a8-d4854e337675" + "036deb11-b26b-437f-9ff5-f8db16762351" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11949" ], "x-ms-correlation-request-id": [ - "54eba1d8-2ad9-4bc0-bfbd-ca0ca4b75c05" + "581861b7-d5e9-4c53-a342-aefefac8d330" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T061102Z:54eba1d8-2ad9-4bc0-bfbd-ca0ca4b75c05" + "WESTUS2:20190411T062555Z:581861b7-d5e9-4c53-a342-aefefac8d330" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:25:55 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:12:02 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d74cd4a4-779b-4ffc-b35f-42fc45e1df1e" + "652a869f-cb0f-4654-9b8f-84321f49d296" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11948" ], "x-ms-correlation-request-id": [ - "23d0e3aa-3e41-4ab5-a3c5-a16da6d55b34" + "81e7b3f7-6c24-4ff4-baa5-64d23c75af42" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T061203Z:23d0e3aa-3e41-4ab5-a3c5-a16da6d55b34" + "WESTUS2:20190411T062656Z:81e7b3f7-6c24-4ff4-baa5-64d23c75af42" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:26:55 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:13:02 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "027ee0a8-d35e-4d3f-a88e-5fcb44f33c35" + "860d68d2-1e36-4ebd-a805-701190758ac5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11947" ], "x-ms-correlation-request-id": [ - "5106656f-3d2f-4f86-8884-719cbe8a8e9e" + "68e17ce9-8b64-4894-8713-bbb57fab516f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T061303Z:5106656f-3d2f-4f86-8884-719cbe8a8e9e" + "WESTUS2:20190411T062756Z:68e17ce9-8b64-4894-8713-bbb57fab516f" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:27:56 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:14:04 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6501a03d-483b-4181-9924-bfe8b8db7c2e" + "1f3ac002-e607-40e4-9f58-5bd1da06acf5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11946" ], "x-ms-correlation-request-id": [ - "a0a3ca5a-6eaa-4b9b-a1e6-122af45e5e42" + "fb3ae465-d17f-4d74-88ae-594d15b3b1b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T061404Z:a0a3ca5a-6eaa-4b9b-a1e6-122af45e5e42" + "WESTUS2:20190411T062856Z:fb3ae465-d17f-4d74-88ae-594d15b3b1b2" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:28:56 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:15:04 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bd24dfb4-0710-4a5d-a9a9-5f35461df11c" + "f6b39f09-e500-476f-83e5-0eea1b2c5920" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11945" ], "x-ms-correlation-request-id": [ - "74b286ba-45b0-4073-9d8c-1c45d50a5fed" + "1563c69c-bb12-4fd1-8cfe-fa780539858b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T061504Z:74b286ba-45b0-4073-9d8c-1c45d50a5fed" + "WESTUS2:20190411T062957Z:1563c69c-bb12-4fd1-8cfe-fa780539858b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:29:56 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:16:04 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "361f78f8-1da7-433e-baaa-b89f519cb46d" + "17c55602-9cd4-4db4-9a0d-d2c723a0767f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11944" ], "x-ms-correlation-request-id": [ - "9a4c7710-782f-42bc-8277-e94ac36c5d6e" + "1444767d-e24d-40a5-b9e1-57fdfacb4b38" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T061604Z:9a4c7710-782f-42bc-8277-e94ac36c5d6e" + "WESTUS2:20190411T063057Z:1444767d-e24d-40a5-b9e1-57fdfacb4b38" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:30:56 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:17:04 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3cb83fad-f412-4f89-8879-46a6ab56eef6" + "9902594b-5674-4eb0-ab15-b987b5a14840" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11943" ], "x-ms-correlation-request-id": [ - "698efe56-3eb5-4539-9353-49faf1710b8e" + "0b1da6d3-1a87-41c6-b6ec-050602d6b957" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T061705Z:698efe56-3eb5-4539-9353-49faf1710b8e" + "WESTUS2:20190411T063157Z:0b1da6d3-1a87-41c6-b6ec-050602d6b957" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:31:57 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:18:05 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "05ff71b4-4950-4d94-9f36-560fad88afa6" + "0241dfcf-c61c-411b-a478-43f1733def62" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11942" ], "x-ms-correlation-request-id": [ - "525ddfe7-ff96-4f48-894b-35aa8ae0fe08" + "1bfadc30-1934-4ef7-a597-2712a7b55ed9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T061805Z:525ddfe7-ff96-4f48-894b-35aa8ae0fe08" + "WESTUS2:20190411T063258Z:1bfadc30-1934-4ef7-a597-2712a7b55ed9" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:32:57 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:19:05 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c92ce447-4424-43d9-b5ca-8b67387a1eb7" + "4cd3c948-db2c-4395-bade-79c020a15015" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11941" ], "x-ms-correlation-request-id": [ - "3ee42a93-3d89-4c92-b905-efdc685ff840" + "a4fe5fb1-bac6-40a0-a3e9-4b4772e34a17" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T061905Z:3ee42a93-3d89-4c92-b905-efdc685ff840" + "WESTUS2:20190411T063358Z:a4fe5fb1-bac6-40a0-a3e9-4b4772e34a17" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:33:57 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:20:05 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "08c40b91-afa9-4ac6-815a-ea16d6965991" + "83ba4d61-fbcf-404b-9a94-134f257d5561" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11940" ], "x-ms-correlation-request-id": [ - "cae84ae8-8b81-4d55-9c49-e05e9b89b0bf" + "bcc4635f-8ec6-437c-8d98-15ccf9bf4c54" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T062006Z:cae84ae8-8b81-4d55-9c49-e05e9b89b0bf" + "WESTUS2:20190411T063458Z:bcc4635f-8ec6-437c-8d98-15ccf9bf4c54" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:34:58 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:21:06 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f45c7b7f-4b8a-4fc4-bda7-f12b8513edac" + "168fa752-44cb-4199-8ca0-d81e1c73ef30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11939" ], "x-ms-correlation-request-id": [ - "f91a0b4f-87b7-44cc-9c43-523822d36853" + "3d8c26dd-cd20-424b-928f-7248dd64b433" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T062106Z:f91a0b4f-87b7-44cc-9c43-523822d36853" + "WESTUS2:20190411T063559Z:3d8c26dd-cd20-424b-928f-7248dd64b433" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:35:58 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:22:06 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b75e794a-7fb1-450a-a6ff-4effbcd722ed" + "2ff8c78d-c593-4ded-be7a-e794ff8c63ad" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11938" ], "x-ms-correlation-request-id": [ - "3300363c-fe49-4b0d-bd16-3c5db5b3e64f" + "a519a56e-ff72-4ece-af12-66f177f3652d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T062207Z:3300363c-fe49-4b0d-bd16-3c5db5b3e64f" + "WESTUS2:20190411T063659Z:a519a56e-ff72-4ece-af12-66f177f3652d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:36:58 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:23:07 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "643c83c5-5b62-4b53-949a-4722869c4a89" + "b179fdc2-ec5c-4137-813b-edc3f81d9d84" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11937" ], "x-ms-correlation-request-id": [ - "33bc71be-0574-4138-8ebc-1a92d20c4cbd" + "894b33d9-5818-468f-ac00-1b20be6c378c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T062307Z:33bc71be-0574-4138-8ebc-1a92d20c4cbd" + "WESTUS2:20190411T063800Z:894b33d9-5818-468f-ac00-1b20be6c378c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:37:59 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:24:07 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c9295516-c056-44c6-b091-6680736a0eec" + "397a5bb7-89af-40bc-a8ca-597cc53c1dd4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11936" ], "x-ms-correlation-request-id": [ - "49e59ed6-424b-4a29-9499-668aa19e0a00" + "6ec0b01b-7e1c-4fa8-80a9-980c1a0b7c61" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T062407Z:49e59ed6-424b-4a29-9499-668aa19e0a00" + "WESTUS2:20190411T063900Z:6ec0b01b-7e1c-4fa8-80a9-980c1a0b7c61" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:39:00 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1VwZGF0ZV8xOTY3YjNmMw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVZ3WkdGMFpWOHhPVFkzWWpObU13PT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:25:07 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e809c2d-3a00-4c88-ad9a-b123a9919f83" + "4e2cac49-715d-41aa-a181-dec659ca88d0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11937" ], "x-ms-correlation-request-id": [ - "69a76ad6-a0cf-4bac-ac34-81ffc96d3164" + "5fc44988-d270-4e6c-8edd-5737ed8811dd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T062508Z:69a76ad6-a0cf-4bac-ac34-81ffc96d3164" + "WESTUS2:20190411T064001Z:5fc44988-d270-4e6c-8edd-5737ed8811dd" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 06:40:00 GMT" + ], "Content-Length": [ - "0" + "2303" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087\",\r\n \"name\": \"sdktestapim1087\",\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\": \"AAAAAAFzRJM=\",\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\": \"2019-04-11T05:37:34.2435191Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1087.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1087-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1087.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1087.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1087.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim1087.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.43.172.16\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"10.0.1.6\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "595454c9-a320-445d-9b25-e8cfc2e4fcf7" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:26:08 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1Rlcm1fNWE5MDMzMjQ=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d0c593e8-c6c5-484c-81c3-4ebf2c042ca5" + "35336049-c9e1-4666-b825-73b7ecfc8493" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "33e7a72d-146d-4517-81aa-f344d7b3588e" + "740214b4-c08a-4c51-81e0-a54fcfa86a81" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T062608Z:33e7a72d-146d-4517-81aa-f344d7b3588e" + "WESTUS2:20190411T064001Z:740214b4-c08a-4c51-81e0-a54fcfa86a81" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 06:40:01 GMT" + ], "Content-Length": [ - "0" + "2102" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087\",\r\n \"name\": \"sdktestapim1087\",\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\": \"AAAAAAFzRJQ=\",\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\": \"Deleting\",\r\n \"createdAtUtc\": \"2019-04-11T05:37:34.2435191Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1087.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1087-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1087.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1087.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1087.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"104.43.172.16\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"10.0.1.6\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.Network/virtualNetworks/apimvnet452/subnets/apimsubnet7750\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1Rlcm1fNWE5MDMzMjQ=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVJsY20xZk5XRTVNRE16TWpRPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:27:08 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1Rlcm1fNWE5MDMzMjQ=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cadffe0f-c7df-4073-8e12-c42885b4c4f5" + "45ddbe35-3385-4c95-ac7c-999516ff49ad" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11936" ], "x-ms-correlation-request-id": [ - "4f7ab13e-37c2-4f1a-98f6-89534f155af0" + "247e510c-bcc5-4d02-9e34-5799d94f354c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T062708Z:4f7ab13e-37c2-4f1a-98f6-89534f155af0" + "WESTUS2:20190411T064102Z:247e510c-bcc5-4d02-9e34-5799d94f354c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 06:41:01 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873/operationresults/c2RrdGVzdGFwaW00ODczX1VwZGF0ZV9jNGQ5OGZmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwME9EY3pYMVZ3WkdGMFpWOWpOR1E1T0dabU5RPT0/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1Rlcm1fNWE5MDMzMjQ=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVJsY20xZk5XRTVNRE16TWpRPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:28:08 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c031d638-baa1-4943-8dc0-75215c1ec079" + "b5d06dd9-3ffb-4e09-a590-846f306822dc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11935" ], "x-ms-correlation-request-id": [ - "caaf6216-8c3a-4544-8f5b-73634ebbc69b" + "926f4c6b-5ba6-4152-8df6-78c20cb108dd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T062809Z:caaf6216-8c3a-4544-8f5b-73634ebbc69b" + "WESTUS2:20190411T064202Z:926f4c6b-5ba6-4152-8df6-78c20cb108dd" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "2095" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Date": [ + "Thu, 11 Apr 2019 06:42:02 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873\",\r\n \"name\": \"sdktestapim4873\",\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\": \"AAAAAAFtr9g=\",\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\": \"2019-04-02T05:20:36.3061307Z\",\r\n \"gatewayUrl\": \"https://sdktestapim4873.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim4873-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim4873.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim4873.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim4873.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.16.203\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"10.0.1.6\"\r\n ],\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": {\r\n \"subnetResourceId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.Network/virtualNetworks/apimvnet8050/subnets/apimsubnet9439\",\r\n \"vnetid\": \"00000000-0000-0000-0000-000000000000\",\r\n \"subnetname\": null\r\n },\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"Internal\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087/operationresults/c2RrdGVzdGFwaW0xMDg3X1Rlcm1fNWE5MDMzMjQ=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1EZzNYMVJsY20xZk5XRTVNRE16TWpRPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fa788388-0a1f-4efd-91b3-c05b2e0627fc" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:28:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "608e7cb7-6844-4031-b094-05a772d49a38" + "7fcc4681-4124-4a24-b0f5-0c2268c63de4" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" ], "x-ms-correlation-request-id": [ - "7dc9a0db-a3e8-40c2-a0c3-92889cd557bd" + "92bd312b-3ee1-4b23-a587-3c22d38759c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T062810Z:7dc9a0db-a3e8-40c2-a0c3-92889cd557bd" + "WESTUS2:20190411T064202Z:92bd312b-3ee1-4b23-a587-3c22d38759c1" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Date": [ + "Thu, 11 Apr 2019 06:42:02 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "\"\"", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9602/providers/Microsoft.ApiManagement/service/sdktestapim4873?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW00ODczP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg6588/providers/Microsoft.ApiManagement/service/sdktestapim1087?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMDg3P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7d9cfda-2792-4a1e-847a-8fa5fed86a7b" + "d538c3b2-4f14-4b09-bcaa-b44f07332db3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 06:28:09 GMT" - ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" ], "x-ms-request-id": [ - "04dafc48-4761-469e-abbc-b3e4ef5cc8e4" + "39c4d6ce-b66c-4f07-ae9c-7fef67e82d03" ], "x-ms-correlation-request-id": [ - "04dafc48-4761-469e-abbc-b3e4ef5cc8e4" + "39c4d6ce-b66c-4f07-ae9c-7fef67e82d03" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T062810Z:04dafc48-4761-469e-abbc-b3e4ef5cc8e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20190411T064202Z:39c4d6ce-b66c-4f07-ae9c-7fef67e82d03" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 06:42:02 GMT" + ], "Content-Length": [ - "164" + "115" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4932,18 +4809,18 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ApiManagement/service/sdktestapim4873' under resource group 'sdktestrg9602' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"code\": \"ServiceNotFound\",\r\n \"message\": \"Api service does not exist: sdktestapim1087\",\r\n \"details\": null,\r\n \"innerError\": null\r\n}", "StatusCode": 404 } ], "Names": { "Initialize": [ - "sdktestapim4873", - "sdktestrg9602" + "sdktestapim1087", + "sdktestrg6588" ], "CreateInVirtualNetworkTests": [ - "apimvnet8050", - "apimsubnet9439" + "apimvnet452", + "apimsubnet7750" ] }, "Variables": { @@ -4951,8 +4828,8 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestapim4873", + "ServiceName": "sdktestapim1087", "Location": "Central US", - "ResourceGroup": "sdktestrg9602" + "ResourceGroup": "sdktestrg6588" } } \ No newline at end of file diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/CreateListDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/CreateListDelete.json index 068015beae5d..d1634d3c0178 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/CreateListDelete.json +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/CreateListDelete.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a9a9d02-1dab-4f65-b0de-13be3df7799f" + "082ef640-dcd9-4055-8c5e-700b329e3be1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:18:46 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "980b2c2d-8f7e-4156-9ece-1bfc2d056cb7" + "51d2688a-0498-4926-a396-1323ca0ca23e" ], "x-ms-correlation-request-id": [ - "980b2c2d-8f7e-4156-9ece-1bfc2d056cb7" + "51d2688a-0498-4926-a396-1323ca0ca23e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T071847Z:980b2c2d-8f7e-4156-9ece-1bfc2d056cb7" + "WESTUS2:20190411T070216Z:51d2688a-0498-4926-a396-1323ca0ca23e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,33 +44,36 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "1876" + "Date": [ + "Thu, 11 Apr 2019 07:02:16 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1941" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg5301?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzUzMDE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg9348?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzkzNDg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8bbc9934-cd05-48e7-8e97-58f910c9c636" + "46a27c55-a706-479d-9816-17d5e9dfadcd" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" @@ -89,9 +89,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:18:47 GMT" - ], "Pragma": [ "no-cache" ], @@ -99,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "105ded05-02e4-4979-8741-68ffed6a5174" + "cb6e163f-e43f-44b5-b6a0-1c7966043405" ], "x-ms-correlation-request-id": [ - "105ded05-02e4-4979-8741-68ffed6a5174" + "cb6e163f-e43f-44b5-b6a0-1c7966043405" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T071848Z:105ded05-02e4-4979-8741-68ffed6a5174" + "WESTUS2:20190411T070218Z:cb6e163f-e43f-44b5-b6a0-1c7966043405" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 07:02:17 GMT" + ], "Content-Length": [ "182" ], @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301\",\r\n \"name\": \"sdktestrg5301\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348\",\r\n \"name\": \"sdktestrg9348\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement/checkNameAvailability?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement/checkNameAvailability?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdktestapim5190\"\r\n}", + "RequestBody": "{\r\n \"name\": \"sdktestapim1591\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a6576102-057c-4ca8-b499-f60f730d5a9b" + "d996cc3f-3a7f-4de3-9772-613f66b0f3c7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,33 +155,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:18:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4b690f3-6960-4e25-ac71-c6ad0222704d" + "56439f87-991f-4aef-a99d-543b718ec640" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "512961f3-581b-4940-859c-6ec4ee9885ad" + "b97d8abf-b3ca-40d2-8d1e-c759d204df87" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T071848Z:512961f3-581b-4940-859c-6ec4ee9885ad" + "WESTUS2:20190411T070218Z:b97d8abf-b3ca-40d2-8d1e-c759d204df87" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 07:02:17 GMT" + ], "Content-Length": [ "52" ], @@ -196,22 +196,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f48bad13-3ab6-4a84-8b46-2752cf86cede" + "5da6d61c-a754-495d-9191-4cb756c33227" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -224,45 +224,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:18:49 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtsjk=\"" + "\"AAAAAAFzRiw=\"" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "258e594f-1254-4017-a59c-a5f163e0f125", - "80e8b787-f7a8-463b-96cd-7edef3ab2af9" + "f0f3f5df-0302-4287-80d1-8ea60bc4d747", + "4de6fa67-fdbe-4a77-ba57-912f3c48370d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "ac6a7476-e1da-4caa-9ba0-02c7b0f0ee36" + "cf48cc8b-68b9-437d-94c7-4874ceae5002" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T071850Z:ac6a7476-e1da-4caa-9ba0-02c7b0f0ee36" + "WESTUS2:20190411T070219Z:cf48cc8b-68b9-437d-94c7-4874ceae5002" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 07:02:18 GMT" + ], "Content-Length": [ - "950" + "1132" ], "Content-Type": [ "application/json; charset=utf-8" @@ -271,2104 +271,1981 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190\",\r\n \"name\": \"sdktestapim5190\",\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\": \"AAAAAAFtsjk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-02T07:18:49.4183452Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\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/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591\",\r\n \"name\": \"sdktestapim1591\",\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\": \"AAAAAAFzRiw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-11T07:02:18.8577084Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:19:49 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54842356-7705-46f1-8d58-b02a190624a4" + "87031826-1cd4-43b8-83df-0eb8fb5e99e9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-correlation-request-id": [ - "2f639f79-6c10-4cd9-9a06-0640458b3368" + "e06ddb92-fd55-493f-b1e0-99665244d9b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T071950Z:2f639f79-6c10-4cd9-9a06-0640458b3368" + "WESTUS2:20190411T070319Z:e06ddb92-fd55-493f-b1e0-99665244d9b1" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:03:19 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:20:50 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f23977d9-e2e1-4e66-9636-23ee563c8d42" + "0cfc46e6-82f8-44f8-a64a-e89b680b1c33" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "182f56e4-cd9c-47f5-91d0-c5e3568742d3" + "3a26e990-0d4c-4db3-8cec-f449cea2f990" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T072050Z:182f56e4-cd9c-47f5-91d0-c5e3568742d3" + "WESTUS2:20190411T070419Z:3a26e990-0d4c-4db3-8cec-f449cea2f990" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:04:19 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:21:50 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b288ceb8-eae0-41b3-8c98-2bf1d9f8c2d6" + "1f927f89-9648-45f9-bf3f-f2654d3159e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-correlation-request-id": [ - "56fc7437-4475-41d3-b3cc-739d0c792d75" + "7fb92360-497a-4a2c-a285-01f501ef2632" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T072151Z:56fc7437-4475-41d3-b3cc-739d0c792d75" + "WESTUS2:20190411T070520Z:7fb92360-497a-4a2c-a285-01f501ef2632" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:05:19 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:22:50 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f18208f-0690-4a48-861a-13fe147e0438" + "989c24a7-16df-425e-acc8-f54b0b6bd17d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11994" ], "x-ms-correlation-request-id": [ - "ab5c4eaf-dacc-4551-bb1f-77b40d2a83fb" + "8dac6b27-3bfa-4a0a-b155-8784a69b12e2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T072251Z:ab5c4eaf-dacc-4551-bb1f-77b40d2a83fb" + "WESTUS2:20190411T070620Z:8dac6b27-3bfa-4a0a-b155-8784a69b12e2" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:06:20 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:23:51 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3a0dc68a-6256-4f7a-b0b5-09d1c733f6f2" + "1264ff40-c38d-422d-84d4-62f207946e6f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11993" ], "x-ms-correlation-request-id": [ - "c084ee0a-0039-4dc8-98ea-2f6d2c673735" + "d8980aa5-6b34-427e-b065-6b48d9093a26" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T072351Z:c084ee0a-0039-4dc8-98ea-2f6d2c673735" + "WESTUS2:20190411T070720Z:d8980aa5-6b34-427e-b065-6b48d9093a26" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:07:20 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:24:51 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "881ec02c-591d-4ef3-b26f-b93dd7465cb4" + "fd3b44e8-b1ec-42b4-b05f-c56ccbf26032" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11992" ], "x-ms-correlation-request-id": [ - "1afec27d-bdd2-433d-a8f3-f80d95a8db35" + "d3d88f3d-99ed-477e-a78e-d237dd39ff7d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T072451Z:1afec27d-bdd2-433d-a8f3-f80d95a8db35" + "WESTUS2:20190411T070821Z:d3d88f3d-99ed-477e-a78e-d237dd39ff7d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:08:20 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:25:51 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "38a3d894-69ec-4da6-8804-f220b98a8ca7" + "d8e0f315-5560-4a2e-8b1c-a798136cd631" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11991" ], "x-ms-correlation-request-id": [ - "055f5fec-d4bd-490b-8526-88cb2b50614f" + "19517ff8-78b6-4121-827a-186d704f76cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T072552Z:055f5fec-d4bd-490b-8526-88cb2b50614f" + "WESTUS2:20190411T070921Z:19517ff8-78b6-4121-827a-186d704f76cf" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:09:21 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:26:52 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2603c50d-9f1b-4f7a-8a43-636bd4697bc3" + "1562a752-5c6c-4aca-9a31-083641a209dc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11990" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "715cea5d-a893-4654-928c-17007f1984a2" + "f088ae66-7e80-4c49-b43e-9a27fc4c3262" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T072652Z:715cea5d-a893-4654-928c-17007f1984a2" + "WESTUS2:20190411T071021Z:f088ae66-7e80-4c49-b43e-9a27fc4c3262" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:10:20 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:27:53 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c799cddf-8946-46f3-a0a3-f0c8a98c9798" + "86f1d25d-1771-4272-a70f-dd8ae983d4db" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11989" ], "x-ms-correlation-request-id": [ - "64cc4c81-eac4-4fe4-aaa8-e69336730a9c" + "9f345e47-7cf8-429e-88c6-a8ed544cedb7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T072753Z:64cc4c81-eac4-4fe4-aaa8-e69336730a9c" + "WESTUS2:20190411T071121Z:9f345e47-7cf8-429e-88c6-a8ed544cedb7" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:11:21 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:28:52 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aab7f8f4-2e70-4377-930a-c697c9a4a1fa" + "4657ad03-0e52-43b2-b917-9cc96cf08ff7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11988" ], "x-ms-correlation-request-id": [ - "0fc6d4f6-d04c-4a7b-9be0-85a9ec477265" + "3d88a372-a205-414f-bb6c-fb8126e14d9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T072853Z:0fc6d4f6-d04c-4a7b-9be0-85a9ec477265" + "WESTUS2:20190411T071222Z:3d88a372-a205-414f-bb6c-fb8126e14d9f" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:12:21 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:29:53 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4daae6b-54ff-4750-a5ae-731036074759" + "4f93a38c-4ae0-49a3-b94a-65ed9760d577" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11987" ], "x-ms-correlation-request-id": [ - "ecabb773-5ec6-4966-a079-dbef2b9b8132" + "4444b0bb-8296-4a5e-854c-97ec98de7376" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T072953Z:ecabb773-5ec6-4966-a079-dbef2b9b8132" + "WESTUS2:20190411T071322Z:4444b0bb-8296-4a5e-854c-97ec98de7376" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:13:22 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:30:53 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b8e86327-06f4-4607-b084-ac74dea43808" + "0b862076-2a2a-4169-8004-2652f9be8e7a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11986" ], "x-ms-correlation-request-id": [ - "b6ce1677-80be-486a-b14e-b8bfe082ed18" + "7ecf0702-6a4e-4394-b4a3-0199558b941b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T073054Z:b6ce1677-80be-486a-b14e-b8bfe082ed18" + "WESTUS2:20190411T071423Z:7ecf0702-6a4e-4394-b4a3-0199558b941b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:14:22 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:31:53 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ebaba05a-9c68-4c07-8bba-5e4018bbb853" + "7752f642-6afc-4fa8-b90e-d29a40bccdd4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11985" ], "x-ms-correlation-request-id": [ - "67aaec8c-6413-4416-9ddd-18d90bafa53a" + "6fbd6306-9d51-47bd-91ab-036d48cd6232" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T073154Z:67aaec8c-6413-4416-9ddd-18d90bafa53a" + "WESTUS2:20190411T071523Z:6fbd6306-9d51-47bd-91ab-036d48cd6232" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:15:22 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:32:54 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "48b114d8-8152-4c08-9a1a-bef040b5ff9f" + "ccb658be-f538-45a3-9d8a-0e6e30bc2105" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11984" ], "x-ms-correlation-request-id": [ - "5bd11581-c2b5-432e-b1a1-e017f11e81e9" + "13f14269-eea4-4835-b3bc-3474d5d47d8d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T073255Z:5bd11581-c2b5-432e-b1a1-e017f11e81e9" + "WESTUS2:20190411T071623Z:13f14269-eea4-4835-b3bc-3474d5d47d8d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:16:22 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:33:55 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d1ddec66-58c6-49fe-a487-aa3420ab131b" + "2bbe6d49-7711-44b1-9b06-bdc206af7835" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11983" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "0d8c0b9b-b6c1-4a9c-b085-3b73d8205529" + "90811f09-babe-4309-a906-f01c9dbc3284" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T073355Z:0d8c0b9b-b6c1-4a9c-b085-3b73d8205529" + "WESTUS2:20190411T071723Z:90811f09-babe-4309-a906-f01c9dbc3284" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:17:23 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:34:55 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d01c0b93-858e-47c3-9ee9-dfcb77c80292" + "d6a35b7c-3f8d-4feb-b62a-39e023f89626" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11982" ], "x-ms-correlation-request-id": [ - "b789ac8a-62ac-4fe2-a4d1-4e60f7e17d99" + "0371acfc-d49c-4248-b0c8-d0e3858b1317" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T073456Z:b789ac8a-62ac-4fe2-a4d1-4e60f7e17d99" + "WESTUS2:20190411T071824Z:0371acfc-d49c-4248-b0c8-d0e3858b1317" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:18:23 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:35:56 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1da3298d-bac4-4db7-bf5a-d66155dcc4e2" + "483b780b-8d57-4d0c-8e14-11a7e59efa1e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11981" ], "x-ms-correlation-request-id": [ - "cb8468c1-31df-400c-9b83-bc05ca7f7767" + "70696a85-0a68-4362-8d02-57defaa20b8e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T073556Z:cb8468c1-31df-400c-9b83-bc05ca7f7767" + "WESTUS2:20190411T071924Z:70696a85-0a68-4362-8d02-57defaa20b8e" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:19:24 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:36:56 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "84480813-5edd-4b36-af02-ef4f58b33254" + "b375fb90-222c-4365-be7a-66c89bd506e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11980" ], "x-ms-correlation-request-id": [ - "fd56e9ec-fcc2-43f8-8a92-de35bcb21966" + "de8b5fdf-6460-47c7-8bbc-3c86dc598d4d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T073657Z:fd56e9ec-fcc2-43f8-8a92-de35bcb21966" + "WESTUS2:20190411T072024Z:de8b5fdf-6460-47c7-8bbc-3c86dc598d4d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:20:24 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:37:57 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fac076ab-9e58-40dd-84d1-54118e1c53f7" + "ecaa9242-163b-4875-9286-ee0f52612558" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11979" ], "x-ms-correlation-request-id": [ - "aa1f99b4-87ee-4e3c-8689-f9fb63ddcdd5" + "3ece7517-752d-4c2f-b8a7-fdaeeb0c3d57" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T073757Z:aa1f99b4-87ee-4e3c-8689-f9fb63ddcdd5" + "WESTUS2:20190411T072125Z:3ece7517-752d-4c2f-b8a7-fdaeeb0c3d57" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:21:24 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:38:57 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a86cce77-f277-44eb-9491-142801a4c49c" + "b5e908c9-4263-463e-ab4a-91d378316e38" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11978" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "a7981b80-d985-4981-badd-5aac83481a45" + "dba694ce-4c91-4383-ae43-5aea8500599c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T073858Z:a7981b80-d985-4981-badd-5aac83481a45" + "WESTUS2:20190411T072225Z:dba694ce-4c91-4383-ae43-5aea8500599c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:22:24 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:39:58 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0a14cae2-a42d-4768-9d12-6e898e07be25" + "9bc1a3e5-7a7e-41e9-bf74-c5a1f73843ab" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11977" ], "x-ms-correlation-request-id": [ - "c77cf62c-2cf3-460e-a376-2e571ebcd8ff" + "34dcdd11-6636-4aa7-b2e7-0848d552373c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T073958Z:c77cf62c-2cf3-460e-a376-2e571ebcd8ff" + "WESTUS2:20190411T072326Z:34dcdd11-6636-4aa7-b2e7-0848d552373c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:23:25 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:40:58 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0a3e022-d168-4a64-9cfe-d364a4e2d5b7" + "326cae33-d542-48f2-ad80-ff584e2e14d5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11976" ], "x-ms-correlation-request-id": [ - "db0600c3-a3d3-4c8d-888b-3c8baa68fb65" + "51add960-0421-4647-870a-3c08584e5732" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T074059Z:db0600c3-a3d3-4c8d-888b-3c8baa68fb65" + "WESTUS2:20190411T072426Z:51add960-0421-4647-870a-3c08584e5732" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:24:26 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:41:59 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4c0f482b-4063-4340-8a66-ca361c602301" + "014b1292-9acc-459d-a126-deccc70f0905" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11975" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "a4ac61f4-4bd3-449b-bd02-871c7eb978d6" + "e27bba04-89ea-46aa-8194-65f1d7aaeb75" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T074159Z:a4ac61f4-4bd3-449b-bd02-871c7eb978d6" + "WESTUS2:20190411T072526Z:e27bba04-89ea-46aa-8194-65f1d7aaeb75" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:25:25 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:42:59 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "087529e0-ef97-4912-b893-36e9f82619c0" + "ae78882d-fe61-4df8-bc7e-c13e3f808410" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11974" ], "x-ms-correlation-request-id": [ - "993276fc-75a6-41e2-bd6d-5d39ec3c2268" + "d3ac99ef-42e8-451f-8e0c-0d905b7b1100" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T074259Z:993276fc-75a6-41e2-bd6d-5d39ec3c2268" + "WESTUS2:20190411T072626Z:d3ac99ef-42e8-451f-8e0c-0d905b7b1100" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:26:26 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:44:00 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7cb2c417-e611-4cef-8bc6-3a97a41914f2" + "b3fdca9d-4755-4add-bba0-13a939c85eca" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11973" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "61eab688-25f9-49f7-afad-f9ae08e0d6b7" + "9c17e2d3-ac47-4dad-8eec-1d4abfd48a61" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T074400Z:61eab688-25f9-49f7-afad-f9ae08e0d6b7" + "WESTUS2:20190411T072727Z:9c17e2d3-ac47-4dad-8eec-1d4abfd48a61" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:27:26 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX0FjdF9jZTkyMmNmOQ==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMEZqZEY5alpUa3lNbU5tT1E9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:45:00 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "01ab627e-02f0-45fa-a98e-cbaf5697f9b1" + "e8608411-05a2-4b40-b97c-096324153f76" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11972" ], "x-ms-correlation-request-id": [ - "419c5445-eeb0-4ab4-87a6-bdce27bc2aa2" + "0982e5fb-f31c-435a-a2b3-ab4a8b1f737f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T074500Z:419c5445-eeb0-4ab4-87a6-bdce27bc2aa2" + "WESTUS2:20190411T072828Z:0982e5fb-f31c-435a-a2b3-ab4a8b1f737f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 07:28:27 GMT" + ], "Content-Length": [ - "0" + "2047" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591\",\r\n \"name\": \"sdktestapim1591\",\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\": \"AAAAAAFzSFg=\",\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\": \"2019-04-11T07:02:18.8577084Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1591.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1591-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1591.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1591.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1591.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim1591.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.89.236.232\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\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}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2U/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0e51bd0b-c6fe-40ae-b606-380dd09b7fd1" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:45:59 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5a65e772-6e63-4543-aff4-23e931e410d7" + "1d0cac87-864a-4599-b07e-2511436ae4e9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11971" ], "x-ms-correlation-request-id": [ - "951cea21-29da-4ee1-8130-1a8b7a7eb945" + "cf70d4e8-472a-4e3b-aaed-7a981f958c32" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T074600Z:951cea21-29da-4ee1-8130-1a8b7a7eb945" + "WESTUS2:20190411T072829Z:cf70d4e8-472a-4e3b-aaed-7a981f958c32" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 07:28:28 GMT" + ], "Content-Length": [ - "0" + "2059" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591\",\r\n \"name\": \"sdktestapim1591\",\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\": \"AAAAAAFzSFg=\",\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\": \"2019-04-11T07:02:18.8577084Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1591.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1591-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1591.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1591.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1591.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim1591.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.89.236.232\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\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 }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/getssotoken?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL2dldHNzb3Rva2VuP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "999f52dd-815a-4ed9-be3f-cda7701ad250" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:47:00 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3e7f8d27-0ca0-436a-84cf-73797862a0a6" + "0e8719ec-0260-4dd0-8b3b-f8e5982cb452" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "424da915-b6e8-43a7-8a41-3a2dbef19e09" + "b7c5f94c-6540-4ace-9872-fc609bfaf887" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T074701Z:424da915-b6e8-43a7-8a41-3a2dbef19e09" + "WESTUS2:20190411T072829Z:b7c5f94c-6540-4ace-9872-fc609bfaf887" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 07:28:29 GMT" + ], "Content-Length": [ - "0" + "199" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"redirectUri\": \"https://sdktestapim1591.portal.azure-api.net:443/signin-sso?token=1%26201904110733%26lB0ngLI7wLAwvfrSEWaI7utZiMQ8exI9LeFvkMjq62DY7fY571acSETNCMeKt%2bamZGJEVIg5dl%2btg1YxpVRDdg%3d%3d\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "baf0ca9e-a561-4ada-8027-866d79c7e40b" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:48:00 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX1Rlcm1fNGRkMjA0OTE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e485de7a-4bc0-476f-9ccf-3e28f6d2a2e3" + "50386874-0dd8-4757-9882-7f8b4273142e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "ee10495e-3974-4375-b6f4-9bed1b42b486" + "fe131526-3a10-47ea-85e6-51570b908b01" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T074801Z:ee10495e-3974-4375-b6f4-9bed1b42b486" + "WESTUS2:20190411T072830Z:fe131526-3a10-47ea-85e6-51570b908b01" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 07:28:30 GMT" + ], "Content-Length": [ - "0" + "1846" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591\",\r\n \"name\": \"sdktestapim1591\",\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\": \"AAAAAAFzSF4=\",\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\": \"Deleting\",\r\n \"createdAtUtc\": \"2019-04-11T07:02:18.8577084Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1591.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1591-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1591.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1591.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1591.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"13.89.236.232\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\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}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX1Rlcm1fNGRkMjA0OTE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMVJsY20xZk5HUmtNakEwT1RFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:49:01 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX1Rlcm1fNGRkMjA0OTE=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fc85c24c-f0b1-49e1-bab1-6d316eefafb7" + "2a3ee087-05d4-4a29-8779-7dd8ee068c2f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11970" ], "x-ms-correlation-request-id": [ - "7c951d2a-93ec-438e-978e-90633246cb86" + "5fa22bb3-b18b-49d5-a0ce-8c4495cf56c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T074901Z:7c951d2a-93ec-438e-978e-90633246cb86" + "WESTUS2:20190411T072931Z:5fa22bb3-b18b-49d5-a0ce-8c4495cf56c0" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 07:29:30 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/operationresults/c2RrdGVzdGFwaW01MTkwX0FjdF85MTIyMzM2ZA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1Ua3dYMEZqZEY4NU1USXlNek0yWkE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX1Rlcm1fNGRkMjA0OTE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMVJsY20xZk5HUmtNakEwT1RFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:50:01 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b440c71a-b88e-44cf-8628-7d62e8148f6d" + "f486afd1-e76e-484c-b009-aa7cba807644" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11969" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "7565170d-01ec-4953-8b24-635819f797d8" + "49e19a76-fc26-43a1-b9bd-cc93f540b35e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T075002Z:7565170d-01ec-4953-8b24-635819f797d8" + "WESTUS2:20190411T073031Z:49e19a76-fc26-43a1-b9bd-cc93f540b35e" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "1838" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Date": [ + "Thu, 11 Apr 2019 07:30:30 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190\",\r\n \"name\": \"sdktestapim5190\",\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\": \"AAAAAAFttA4=\",\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\": \"2019-04-02T07:18:49.4183452Z\",\r\n \"gatewayUrl\": \"https://sdktestapim5190.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim5190-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim5190.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim5190.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim5190.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"40.122.70.183\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\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": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591/operationresults/c2RrdGVzdGFwaW0xNTkxX1Rlcm1fNGRkMjA0OTE=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE5Ua3hYMVJsY20xZk5HUmtNakEwT1RFPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bf0f5cf4-e39d-453d-86c0-e2cd1a0ea1fd" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:50:02 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9d7f561f-ddda-4fde-be53-bee2782522b4" + "2eb3eb61-0868-45b3-b6ff-743d0704729f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11968" ], "x-ms-correlation-request-id": [ - "aa29375a-6390-4b45-8b10-92267ca5d3d3" + "ff46f42a-af04-494e-a224-ba2621f6f3bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T075002Z:aa29375a-6390-4b45-8b10-92267ca5d3d3" + "WESTUS2:20190411T073031Z:ff46f42a-af04-494e-a224-ba2621f6f3bf" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "1850" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Date": [ + "Thu, 11 Apr 2019 07:30:31 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190\",\r\n \"name\": \"sdktestapim5190\",\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\": \"AAAAAAFttA4=\",\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\": \"2019-04-02T07:18:49.4183452Z\",\r\n \"gatewayUrl\": \"https://sdktestapim5190.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim5190-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim5190.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim5190.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim5190.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"40.122.70.183\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\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 }\r\n ]\r\n}", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190/getssotoken?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwL2dldHNzb3Rva2VuP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9348/providers/Microsoft.ApiManagement/service/sdktestapim1591?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xNTkxP2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c31f450-6fd6-4185-8b4b-3a78088b371f" + "4e3082b1-2b15-461d-86a5-0ce4d8084682" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 07:50:02 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "3bdc4e98-1b3e-400d-87d1-ad161aeb8aaa" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "fbd1542b-396d-4feb-b4a4-3ca38e650707" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T075002Z:fbd1542b-396d-4feb-b4a4-3ca38e650707" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "207" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"redirectUri\": \"https://sdktestapim5190.portal.azure-api.net:443/signin-sso?token=1%26201904020755%26jCwnw7wP3ipQ%2b4GwU1%2bnHk%2fbeB%2fTwSFwIsuMdjJzpg%2fhw8DbDOxo1mtxvct0WX1khU35WR4qrGzkOydWh0a%2bPA%3d%3d\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "45657349-e84d-4e1a-9965-3445a2c4abc0" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 07:50:04 GMT" - ], - "Pragma": [ - "no-cache" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" ], "x-ms-request-id": [ - "990fb8b1-cae2-4d9f-8ef6-dd0ea691c999" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "7c82991c-c056-47f7-851d-553c6d18f7fe" ], "x-ms-correlation-request-id": [ - "677c26af-df0f-441f-9506-058de191d8c5" + "7c82991c-c056-47f7-851d-553c6d18f7fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T075004Z:677c26af-df0f-441f-9506-058de191d8c5" + "WESTUS2:20190411T073032Z:7c82991c-c056-47f7-851d-553c6d18f7fe" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "\"\"", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg5301/providers/Microsoft.ApiManagement/service/sdktestapim5190?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUzMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MTkwP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "90d7fec8-9b9b-401f-929d-353c5132b5af" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 02 Apr 2019 07:50:04 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "346e310c-1426-474f-a6c8-c6da5fffe080" - ], - "x-ms-correlation-request-id": [ - "346e310c-1426-474f-a6c8-c6da5fffe080" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T075004Z:346e310c-1426-474f-a6c8-c6da5fffe080" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "Thu, 11 Apr 2019 07:30:31 GMT" ], "Content-Length": [ - "164" + "115" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2377,14 +2254,14 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ApiManagement/service/sdktestapim5190' under resource group 'sdktestrg5301' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"code\": \"ServiceNotFound\",\r\n \"message\": \"Api service does not exist: sdktestapim1591\",\r\n \"details\": null,\r\n \"innerError\": null\r\n}", "StatusCode": 404 } ], "Names": { "Initialize": [ - "sdktestapim5190", - "sdktestrg5301" + "sdktestapim1591", + "sdktestrg9348" ] }, "Variables": { @@ -2392,8 +2269,8 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestapim5190", + "ServiceName": "sdktestapim1591", "Location": "Central US", - "ResourceGroup": "sdktestrg5301" + "ResourceGroup": "sdktestrg9348" } } \ No newline at end of file diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/CreateMultiHostNameService.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/CreateMultiHostNameService.json index c848e70ca1c8..c49e93031fd7 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/CreateMultiHostNameService.json +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/CreateMultiHostNameService.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a945fe89-a089-40b9-87ca-a789d90e7044" + "f9071d86-3c9a-470a-8128-78f0b6952a33" ], "accept-language": [ "en-US" @@ -24,7 +24,7 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 06:59:30 GMT" + "Thu, 11 Apr 2019 20:11:27 GMT" ], "Pragma": [ "no-cache" @@ -33,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "8efb9e0e-23e3-464b-afcd-314cb8fab4d4" + "b7c88395-5b83-48c8-88e8-47439abf62c3" ], "x-ms-correlation-request-id": [ - "8efb9e0e-23e3-464b-afcd-314cb8fab4d4" + "b7c88395-5b83-48c8-88e8-47439abf62c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T065931Z:8efb9e0e-23e3-464b-afcd-314cb8fab4d4" + "WESTUS2:20190411T201127Z:b7c88395-5b83-48c8-88e8-47439abf62c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Content-Length": [ - "1876" + "1941" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,17 +57,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg4630?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzQ2MzA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg2264?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzIyNjQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c868b2e5-1f6e-416a-b4f8-3cdc04fba1f3" + "bf699433-6be9-4483-8d20-3319e517c57e" ], "accept-language": [ "en-US" @@ -90,7 +90,7 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 06:59:31 GMT" + "Thu, 11 Apr 2019 20:11:28 GMT" ], "Pragma": [ "no-cache" @@ -99,13 +99,13 @@ "1199" ], "x-ms-request-id": [ - "97e61d60-8c18-407f-ae2b-4c94857ed177" + "559a9130-e1bb-4770-8dad-15f1ab7aef16" ], "x-ms-correlation-request-id": [ - "97e61d60-8c18-407f-ae2b-4c94857ed177" + "559a9130-e1bb-4770-8dad-15f1ab7aef16" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T065932Z:97e61d60-8c18-407f-ae2b-4c94857ed177" + "WESTUS2:20190411T201128Z:559a9130-e1bb-4770-8dad-15f1ab7aef16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -123,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630\",\r\n \"name\": \"sdktestrg4630\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264\",\r\n \"name\": \"sdktestrg2264\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+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 \"certificatePassword\": \"Password\",\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": \"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 \"certificatePassword\": \"Password\",\r\n \"negotiateClientCertificate\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"encodedCertificate\": \"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 \"certificatePassword\": \"Password\"\r\n }\r\n ],\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8608bb88-cb84-42c7-b8c7-cdbefe5745b1" + "76469360-0719-4173-9a49-e880724482ce" ], "accept-language": [ "en-US" @@ -142,7 +142,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -156,16 +156,16 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 06:59:34 GMT" + "Thu, 11 Apr 2019 20:11:30 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtsRY=\"" + "\"AAAAAAFze84=\"" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -177,23 +177,23 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "509bf48b-3384-4587-a228-ac788a977854", - "cc07245d-5ace-4916-8b60-b2d209b032f9" + "02492fcc-b0a4-4616-9d7f-d30669c26b69", + "53a9bd69-bb36-4973-b89d-5fceb43daa94" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "2801adfa-57e9-4539-854c-dc70338d633f" + "c6678371-ed6d-4a3b-9136-b223025676bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T065934Z:2801adfa-57e9-4539-854c-dc70338d633f" + "WESTUS2:20190411T201131Z:c6678371-ed6d-4a3b-9136-b223025676bd" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Length": [ - "1925" + "2109" ], "Content-Type": [ "application/json; charset=utf-8" @@ -202,17 +202,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843\",\r\n \"name\": \"sdktestapim1843\",\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\": \"AAAAAAFtsRY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-02T06:59:33.6184214Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866\",\r\n \"name\": \"sdktestapim2866\",\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\": \"AAAAAAFze84=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-11T20:11:30.3999871Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2036-01-01T07:00:00Z\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2036-01-01T07:00:00Z\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2036-01-01T07:00:00Z\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ],\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\",\r\n \"client\": \"test\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2866.azure-api.net\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2036-01-01T07:00:00Z\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"defaultSslBinding\": true,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2036-01-01T07:00:00Z\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"defaultSslBinding\": false,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2036-01-01T07:00:00Z\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ],\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\",\r\n \"client\": \"test\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "31b76bd8-5259-4135-a5e5-677dbffdb4bd" + "8d16ec62-9ec5-4a0e-b8de-2c9c37869fac" ], "accept-language": [ "en-US" @@ -221,13 +221,13 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2342" + "2523" ] }, "ResponseHeaders": { @@ -235,13 +235,13 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:18:43 GMT" + "Thu, 11 Apr 2019 20:28:57 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtsjE=\"" + "\"AAAAAAFzfTQ=\"" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -250,23 +250,23 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c614c650-b136-4d21-b47c-7cdbba6761aa", - "1391ed5d-c47c-4f43-830d-bae460f05070" + "e44c05b5-dbe6-450b-ab57-8137ca62e493", + "11eccbf8-ae05-4606-a36a-a23652bd754f" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "84dcfa2a-3581-4a58-a415-66de9b1d00a4" + "7b35cf53-ce35-4e46-a0f9-3f953a313acb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T071844Z:84dcfa2a-3581-4a58-a415-66de9b1d00a4" + "WESTUS2:20190411T202857Z:7b35cf53-ce35-4e46-a0f9-3f953a313acb" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Length": [ - "2829" + "3041" ], "Content-Type": [ "application/json; charset=utf-8" @@ -275,12 +275,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843\",\r\n \"name\": \"sdktestapim1843\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\",\r\n \"client\": \"test\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFtsjE=\",\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\": \"2019-04-02T06:59:33.6184214Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1843.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1843-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1843.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1843.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1843.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.100.81.220\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866\",\r\n \"name\": \"sdktestapim2866\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\",\r\n \"client\": \"test\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzfTQ=\",\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\": \"2019-04-11T20:11:30.3999871Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2866.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2866-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2866.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2866.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2866.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2866.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.115.230\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -288,7 +288,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -296,13 +296,13 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:00:34 GMT" + "Thu, 11 Apr 2019 20:12:30 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -314,16 +314,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "115398c5-b2cc-448c-b373-7838a01f571b" + "0174714a-6e22-4c23-b910-0b5dda0f44b8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "61e8e6d9-c2bc-4823-b6a7-ad2f4268912b" + "370e4f71-e2e1-4e5b-b204-c5a465569916" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T070034Z:61e8e6d9-c2bc-4823-b6a7-ad2f4268912b" + "WESTUS2:20190411T201231Z:370e4f71-e2e1-4e5b-b204-c5a465569916" ], "X-Content-Type-Options": [ "nosniff" @@ -339,8 +339,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -348,7 +348,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -356,13 +356,13 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:01:34 GMT" + "Thu, 11 Apr 2019 20:13:30 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -374,16 +374,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2aa87b9b-7d95-4dd3-a044-cf88c939e51a" + "3fa50170-5e13-4b3b-833f-83c698a76906" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "3582c2d4-013f-4a17-ae22-38d317e78fc6" + "8aafd6a9-2be3-4827-9e2e-67e77495ce90" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T070135Z:3582c2d4-013f-4a17-ae22-38d317e78fc6" + "WESTUS2:20190411T201331Z:8aafd6a9-2be3-4827-9e2e-67e77495ce90" ], "X-Content-Type-Options": [ "nosniff" @@ -399,8 +399,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -408,7 +408,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -416,13 +416,13 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:02:35 GMT" + "Thu, 11 Apr 2019 20:14:32 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -434,16 +434,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f57dace-4964-4f66-bc2f-1079eb9a74fb" + "fbb5029d-5686-4f69-a31b-54fb8d9aaca3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "474c3b04-1827-4ceb-91b3-8ae014979eba" + "b2d5b39b-49b0-435e-be79-0a63e7e60ee0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T070235Z:474c3b04-1827-4ceb-91b3-8ae014979eba" + "WESTUS2:20190411T201432Z:b2d5b39b-49b0-435e-be79-0a63e7e60ee0" ], "X-Content-Type-Options": [ "nosniff" @@ -459,8 +459,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -468,7 +468,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -476,13 +476,13 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:03:35 GMT" + "Thu, 11 Apr 2019 20:15:31 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -494,16 +494,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "63deba28-e5a7-4502-8a76-fa92091eb80d" + "50ca78c6-ac9c-4fdb-9b23-004336fe51d4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "72222ba6-8101-4421-8f19-cc358cf7a252" + "48d2fa16-8c0e-404c-a346-3b2bc5d7b316" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T070335Z:72222ba6-8101-4421-8f19-cc358cf7a252" + "WESTUS2:20190411T201532Z:48d2fa16-8c0e-404c-a346-3b2bc5d7b316" ], "X-Content-Type-Options": [ "nosniff" @@ -519,8 +519,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -528,7 +528,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -536,13 +536,13 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:04:36 GMT" + "Thu, 11 Apr 2019 20:16:32 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -554,16 +554,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bda82411-4e05-4531-b3aa-585457d4d177" + "d90b0598-794a-4cb9-8282-c11e08d4e249" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "53844726-b00c-4c97-a9a0-d66fc79390c6" + "84a42937-ed2a-40ff-ba0a-646c5272f810" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T070436Z:53844726-b00c-4c97-a9a0-d66fc79390c6" + "WESTUS2:20190411T201633Z:84a42937-ed2a-40ff-ba0a-646c5272f810" ], "X-Content-Type-Options": [ "nosniff" @@ -579,8 +579,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -588,7 +588,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -596,13 +596,13 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:05:38 GMT" + "Thu, 11 Apr 2019 20:17:32 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -614,16 +614,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "96cf20bb-b191-4818-891e-b680f8138628" + "cf5219f9-96c5-4287-9705-9b0b0e1ef66a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "73923d11-367d-4c05-bb9e-cab096288af0" + "13fd1f0b-6ca4-4758-90b4-85cdcfacd725" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T070538Z:73923d11-367d-4c05-bb9e-cab096288af0" + "WESTUS2:20190411T201733Z:13fd1f0b-6ca4-4758-90b4-85cdcfacd725" ], "X-Content-Type-Options": [ "nosniff" @@ -639,8 +639,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -648,7 +648,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -656,13 +656,13 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:06:38 GMT" + "Thu, 11 Apr 2019 20:18:32 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -674,16 +674,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "139d1701-c32f-4ee5-908b-ab0f127e17ee" + "ca452b29-4b7d-496b-9e0d-51f4633b13c4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "938a078f-682a-459f-86cb-48e1efcacfab" + "beaf1147-71ba-425e-8946-f2de0dec72f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T070638Z:938a078f-682a-459f-86cb-48e1efcacfab" + "WESTUS2:20190411T201833Z:beaf1147-71ba-425e-8946-f2de0dec72f5" ], "X-Content-Type-Options": [ "nosniff" @@ -699,8 +699,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -708,7 +708,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -716,13 +716,13 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:07:38 GMT" + "Thu, 11 Apr 2019 20:19:33 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -734,16 +734,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cfbb9885-1e02-4548-8a1e-16da2f7edc6c" + "67838778-92b4-4129-891f-b282e9e78f17" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "39d99b5c-f1a4-4228-88d4-edd3dd91c039" + "c629f4f6-515e-44d1-8180-6ac83adf3ed3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T070739Z:39d99b5c-f1a4-4228-88d4-edd3dd91c039" + "WESTUS2:20190411T201933Z:c629f4f6-515e-44d1-8180-6ac83adf3ed3" ], "X-Content-Type-Options": [ "nosniff" @@ -759,8 +759,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -768,7 +768,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -776,13 +776,13 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:08:39 GMT" + "Thu, 11 Apr 2019 20:20:33 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -794,16 +794,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e064b75-0335-4fa1-b3b8-4e939bd730fb" + "b296d1bd-7862-4c56-a146-1b9b238ff1e8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "3bca438b-2378-4b9c-a1ea-b80911ee68a6" + "e43be248-896c-4577-8459-45774c92b5a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T070839Z:3bca438b-2378-4b9c-a1ea-b80911ee68a6" + "WESTUS2:20190411T202034Z:e43be248-896c-4577-8459-45774c92b5a9" ], "X-Content-Type-Options": [ "nosniff" @@ -819,8 +819,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -828,7 +828,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -836,13 +836,13 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:09:39 GMT" + "Thu, 11 Apr 2019 20:21:33 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -854,16 +854,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dff21703-ee51-4fbb-873d-38807c03e43d" + "9e20816c-c11e-41f5-84e8-f77da32deb34" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "4683b210-bee6-476b-895e-ff044fcc8195" + "7b1b2016-ce8f-4a05-a662-66cfe0c782ce" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T070940Z:4683b210-bee6-476b-895e-ff044fcc8195" + "WESTUS2:20190411T202134Z:7b1b2016-ce8f-4a05-a662-66cfe0c782ce" ], "X-Content-Type-Options": [ "nosniff" @@ -879,8 +879,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -888,7 +888,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -896,13 +896,13 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:10:40 GMT" + "Thu, 11 Apr 2019 20:22:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -914,16 +914,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "44f292a3-148a-4972-b3d7-1afe497243dd" + "4f958879-0507-4945-8bb1-35b289eb860a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "7a038a02-146c-4b62-8e8e-d630d39bb3a2" + "fde90046-2a27-40a2-a5c8-46b88e6cd050" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T071040Z:7a038a02-146c-4b62-8e8e-d630d39bb3a2" + "WESTUS2:20190411T202234Z:fde90046-2a27-40a2-a5c8-46b88e6cd050" ], "X-Content-Type-Options": [ "nosniff" @@ -939,8 +939,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -948,7 +948,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -956,13 +956,13 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:11:40 GMT" + "Thu, 11 Apr 2019 20:23:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -974,16 +974,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5aa9d3ea-0da0-4d16-a50e-e3eb75baf07e" + "62d8f21a-b196-492d-94b0-af7edc8bd708" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "c6e2d779-fa10-455a-886b-414dd0c8bf97" + "f9f6eae6-466f-4e1c-a45c-a9b2b854e4f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T071140Z:c6e2d779-fa10-455a-886b-414dd0c8bf97" + "WESTUS2:20190411T202335Z:f9f6eae6-466f-4e1c-a45c-a9b2b854e4f0" ], "X-Content-Type-Options": [ "nosniff" @@ -999,8 +999,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1008,7 +1008,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1016,13 +1016,13 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:12:40 GMT" + "Thu, 11 Apr 2019 20:24:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1034,16 +1034,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6bc4579a-c738-4490-9241-66a2cd9f3c7d" + "10ef6d70-ca8d-4ae8-bd93-8f1e06b6ed6d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "b2607a41-dccd-48fb-a61a-ba0a623a3b9c" + "5617baa1-fa30-4d01-8aad-ed842f01e377" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T071241Z:b2607a41-dccd-48fb-a61a-ba0a623a3b9c" + "WESTUS2:20190411T202435Z:5617baa1-fa30-4d01-8aad-ed842f01e377" ], "X-Content-Type-Options": [ "nosniff" @@ -1059,8 +1059,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1068,7 +1068,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1076,13 +1076,13 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:13:40 GMT" + "Thu, 11 Apr 2019 20:25:36 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1094,16 +1094,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a02f105f-92d3-41b6-a80b-fa9084ff58d4" + "84b6b4c2-5e6e-44a8-9f17-4df8149c278e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-correlation-request-id": [ - "2118e6d1-116d-4316-bc2b-4897dc863ee7" + "e0cd3564-d370-454d-9e0f-a61ce351fbd6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T071341Z:2118e6d1-116d-4316-bc2b-4897dc863ee7" + "WESTUS2:20190411T202536Z:e0cd3564-d370-454d-9e0f-a61ce351fbd6" ], "X-Content-Type-Options": [ "nosniff" @@ -1119,8 +1119,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1128,7 +1128,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1136,13 +1136,13 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:14:41 GMT" + "Thu, 11 Apr 2019 20:26:36 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1154,16 +1154,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2d470c2d-b230-4357-a7e4-136856c38618" + "b632011f-6fd6-4406-969b-5733f33b4b82" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "5dd9822f-aede-402f-860b-b139df3f20b8" + "40d94714-c599-4f28-bab0-6ca48d195510" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T071441Z:5dd9822f-aede-402f-860b-b139df3f20b8" + "WESTUS2:20190411T202636Z:40d94714-c599-4f28-bab0-6ca48d195510" ], "X-Content-Type-Options": [ "nosniff" @@ -1179,8 +1179,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1188,7 +1188,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1196,13 +1196,13 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:15:42 GMT" + "Thu, 11 Apr 2019 20:27:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1214,16 +1214,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dff50a18-14af-4234-a82b-f950326249f8" + "8b337334-b340-4f0f-b8fa-13d76ae3474b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-correlation-request-id": [ - "3dd0906b-e780-4b3c-b3ea-fdd151c5780a" + "ce2d4f4b-b778-49e4-bd30-2c1c5d3d3cfe" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T071542Z:3dd0906b-e780-4b3c-b3ea-fdd151c5780a" + "WESTUS2:20190411T202736Z:ce2d4f4b-b778-49e4-bd30-2c1c5d3d3cfe" ], "X-Content-Type-Options": [ "nosniff" @@ -1239,8 +1239,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X0FjdF82ZmY5NWUxMg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMEZqZEY4MlptWTVOV1V4TWc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1248,7 +1248,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1256,13 +1256,76 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:16:42 GMT" + "Thu, 11 Apr 2019 20:28:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bfedd02d-097a-4140-a227-be6ac8ff1550" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "e53ab6db-1fee-415d-8259-af2bf7d8b277" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190411T202856Z:e53ab6db-1fee-415d-8259-af2bf7d8b277" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "3025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866\",\r\n \"name\": \"sdktestapim2866\",\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\": \"AAAAAAFzfSs=\",\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\": \"2019-04-11T20:11:30.3999871Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2866.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2866-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2866.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2866.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2866.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim2866.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.115.230\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4bbfc760-3e58-43b6-84b0-16fb040dd351" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 11 Apr 2019 20:28:58 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X1Rlcm1fMzBhYjc3Zjc=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1274,33 +1337,36 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eb31f015-89fd-4bb6-a0ba-4f86071614bd" + "4d3f6ff1-7a4b-4459-a68d-23201bdcb50c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "277df856-a6f3-4f3a-9057-27911c04f2fe" + "3897b9eb-3751-40e3-b819-caabd5057270" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T071642Z:277df856-a6f3-4f3a-9057-27911c04f2fe" + "WESTUS2:20190411T202858Z:3897b9eb-3751-40e3-b819-caabd5057270" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Length": [ - "0" + "2838" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866\",\r\n \"name\": \"sdktestapim2866\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\",\r\n \"client\": \"test\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAFzfTU=\",\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\": \"Deleting\",\r\n \"createdAtUtc\": \"2019-04-11T20:11:30.3999871Z\",\r\n \"gatewayUrl\": \"https://sdktestapim2866.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim2866-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim2866.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim2866.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim2866.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.115.230\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X1Rlcm1fMzBhYjc3Zjc=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMVJsY20xZk16QmhZamMzWmpjPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1308,7 +1374,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1316,13 +1382,13 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:17:41 GMT" + "Thu, 11 Apr 2019 20:29:58 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X1Rlcm1fMzBhYjc3Zjc=?api-version=2019-01-01" ], "Retry-After": [ "60" @@ -1334,16 +1400,16 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "21d516b5-ca86-4e0a-8c98-915f047c3c5c" + "9b18eb77-1d0d-4ee4-a27f-6b9652ec1e98" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "79a23526-f1eb-4656-91eb-a33af55ec51b" + "57aaffec-2911-4aa3-8bb6-8da2203ff4d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T071742Z:79a23526-f1eb-4656-91eb-a33af55ec51b" + "WESTUS2:20190411T202958Z:57aaffec-2911-4aa3-8bb6-8da2203ff4d9" ], "X-Content-Type-Options": [ "nosniff" @@ -1359,8 +1425,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843/operationresults/c2RrdGVzdGFwaW0xODQzX0FjdF82ODhkYmM5Mg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE9EUXpYMEZqZEY4Mk9EaGtZbU01TWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X1Rlcm1fMzBhYjc3Zjc=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMVJsY20xZk16QmhZamMzWmpjPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1368,7 +1434,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1376,7 +1442,7 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:18:42 GMT" + "Thu, 11 Apr 2019 20:30:58 GMT" ], "Pragma": [ "no-cache" @@ -1388,50 +1454,41 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca46f240-9cd1-43e5-9b0e-aa936dd817a1" + "68b49604-2a17-4034-8bbd-8c891a41c079" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "438627ea-e8f0-41e9-9ada-c04ae5695fdf" + "160e5bbe-ceb2-4de5-9c9f-68217cb4ba81" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T071843Z:438627ea-e8f0-41e9-9ada-c04ae5695fdf" + "WESTUS2:20190411T203058Z:160e5bbe-ceb2-4de5-9c9f-68217cb4ba81" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Length": [ - "2813" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843\",\r\n \"name\": \"sdktestapim1843\",\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\": \"AAAAAAFtsjA=\",\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\": \"2019-04-02T06:59:33.6184214Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1843.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1843-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1843.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1843.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1843.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": true,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Portal\",\r\n \"hostName\": \"portal1.msitesting.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n },\r\n \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.100.81.220\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866/operationresults/c2RrdGVzdGFwaW0yODY2X1Rlcm1fMzBhYjc3Zjc=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweU9EWTJYMVJsY20xZk16QmhZamMzWmpjPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4c8dad10-953f-418d-8421-953fc8d06c39" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1439,7 +1496,7 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:18:44 GMT" + "Thu, 11 Apr 2019 20:30:59 GMT" ], "Pragma": [ "no-cache" @@ -1451,41 +1508,38 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2a94790b-de96-476f-8533-bd9a5f8c5f7b" + "544ab162-38d2-4f6f-9e5f-82f90834b880" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "x-ms-correlation-request-id": [ - "2ffc5a34-e5dc-43d5-abde-62f453be3344" + "bc4015e4-7ad6-420b-b6f7-d5f940079fb7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T071845Z:2ffc5a34-e5dc-43d5-abde-62f453be3344" + "WESTUS2:20190411T203059Z:bc4015e4-7ad6-420b-b6f7-d5f940079fb7" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" ] }, - "ResponseBody": "\"\"", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg4630/providers/Microsoft.ApiManagement/service/sdktestapim1843?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xODQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg2264/providers/Microsoft.ApiManagement/service/sdktestapim2866?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIyNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0yODY2P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36e8014c-fce7-4372-a647-bcdd47191790" + "78424e86-f3e9-43f4-8cab-c3996c07b09b" ], "accept-language": [ "en-US" @@ -1494,7 +1548,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { @@ -1502,31 +1556,34 @@ "no-cache" ], "Date": [ - "Tue, 02 Apr 2019 07:18:44 GMT" + "Thu, 11 Apr 2019 20:30:59 GMT" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" ], "x-ms-request-id": [ - "30c9de41-f3b2-438d-8bf8-5f9fdea86314" + "be109a3b-57e5-4142-82dd-e19e4685c65c" ], "x-ms-correlation-request-id": [ - "30c9de41-f3b2-438d-8bf8-5f9fdea86314" + "be109a3b-57e5-4142-82dd-e19e4685c65c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T071845Z:30c9de41-f3b2-438d-8bf8-5f9fdea86314" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20190411T203059Z:be109a3b-57e5-4142-82dd-e19e4685c65c" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Length": [ - "164" + "115" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1535,14 +1592,14 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ApiManagement/service/sdktestapim1843' under resource group 'sdktestrg4630' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"code\": \"ServiceNotFound\",\r\n \"message\": \"Api service does not exist: sdktestapim2866\",\r\n \"details\": null,\r\n \"innerError\": null\r\n}", "StatusCode": 404 } ], "Names": { "Initialize": [ - "sdktestapim1843", - "sdktestrg4630" + "sdktestapim2866", + "sdktestrg2264" ] }, "Variables": { @@ -1550,8 +1607,8 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestapim1843", + "ServiceName": "sdktestapim2866", "Location": "Central US", - "ResourceGroup": "sdktestrg4630" + "ResourceGroup": "sdktestrg2264" } } \ No newline at end of file diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/CreateMultiRegionService.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/CreateMultiRegionService.json index 8781aff39600..4643d9b745e7 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/CreateMultiRegionService.json +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/CreateMultiRegionService.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "780c4e7a-4cd7-47ef-bc6e-c43307d013f3" + "9d277413-82b7-4006-836f-c4dddc426916" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:58:03 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "4f2f05d4-42b2-4aaa-b217-3c9b90ae30bc" + "cba2f5a1-8bd2-45f8-b9cf-57fbd324c5f4" ], "x-ms-correlation-request-id": [ - "4f2f05d4-42b2-4aaa-b217-3c9b90ae30bc" + "cba2f5a1-8bd2-45f8-b9cf-57fbd324c5f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T085803Z:4f2f05d4-42b2-4aaa-b217-3c9b90ae30bc" + "WESTUS2:20190411T082536Z:cba2f5a1-8bd2-45f8-b9cf-57fbd324c5f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,17 +44,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "1876" + "Date": [ + "Thu, 11 Apr 2019 08:25:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1941" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { @@ -67,13 +67,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3801b02c-d300-4a75-8f16-e6abc4fd7f9e" + "e3460efe-d963-4b8d-9d73-69389987ae2a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" @@ -83,23 +83,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:58:04 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "e41865d1-b482-48ba-b1ff-0b8496804617" + "c62963b5-62b3-4801-b9e7-6a59f051c8ac" ], "x-ms-correlation-request-id": [ - "e41865d1-b482-48ba-b1ff-0b8496804617" + "c62963b5-62b3-4801-b9e7-6a59f051c8ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T085804Z:e41865d1-b482-48ba-b1ff-0b8496804617" + "WESTUS2:20190411T082537Z:c62963b5-62b3-4801-b9e7-6a59f051c8ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -107,33 +104,36 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "1876" + "Date": [ + "Thu, 11 Apr 2019 08:25:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1941" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg9459?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzk0NTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg993?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzk5Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7c0f137b-37eb-4d5a-b134-ed7c252bc9e5" + "3e852214-fbdc-488b-b012-96ab47cf1e91" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" @@ -149,9 +149,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:58:04 GMT" - ], "Pragma": [ "no-cache" ], @@ -159,13 +156,13 @@ "1199" ], "x-ms-request-id": [ - "f7d5260d-f01f-4293-9521-49c63913f510" + "d94aade3-d00c-41c5-83cd-19569db88da5" ], "x-ms-correlation-request-id": [ - "f7d5260d-f01f-4293-9521-49c63913f510" + "d94aade3-d00c-41c5-83cd-19569db88da5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T085804Z:f7d5260d-f01f-4293-9521-49c63913f510" + "WESTUS2:20190411T082537Z:d94aade3-d00c-41c5-83cd-19569db88da5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -173,8 +170,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 08:25:36 GMT" + ], "Content-Length": [ - "182" + "180" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,26 +183,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459\",\r\n \"name\": \"sdktestrg9459\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993\",\r\n \"name\": \"sdktestrg993\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"sku\": {\r\n \"name\": \"Premium\"\r\n }\r\n }\r\n ],\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e4921af3-826b-4438-85d6-5b5bdf3f0275" + "51b8ba5a-db4b-4452-bd52-ab98088c0110" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -215,45 +215,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:58:05 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtt7Y=\"" + "\"AAAAAAFzS98=\"" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b2d5145f-e35e-4ebb-8964-3004296c4c48", - "d7c3f22d-f9d0-4d52-a401-e74058303cff" + "c1db2628-a7e5-4e7e-857c-4660641db972", + "ffee4a55-3310-4bef-926f-1559e2e7b998" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "5970321e-9e56-4b98-94de-fbf85b499afc" + "0b71e6fe-b792-4f97-9d6c-0fef9be55754" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T085806Z:5970321e-9e56-4b98-94de-fbf85b499afc" + "WESTUS2:20190411T082539Z:0b71e6fe-b792-4f97-9d6c-0fef9be55754" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 08:25:39 GMT" + ], "Content-Length": [ - "1123" + "1304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,1618 +262,1495 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661\",\r\n \"name\": \"sdktestapim9661\",\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\": \"AAAAAAFtt7Y=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-02T08:58:05.5911739Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": null\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521\",\r\n \"name\": \"sdktestapim7521\",\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\": \"AAAAAAFzS98=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-11T08:25:38.5086594Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": null\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 08:59:05 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3035f4c8-9647-4f87-8a46-8dc0b899974f" + "ff1972a4-ce5a-4661-b7e6-24a16dfbb0f0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "550161f6-29fd-48f8-aaba-ed509ac54d91" + "436a2b62-09db-4d03-baae-4b7846c63dd3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T085906Z:550161f6-29fd-48f8-aaba-ed509ac54d91" + "WESTUS2:20190411T082639Z:436a2b62-09db-4d03-baae-4b7846c63dd3" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:26:39 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:00:06 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0a672b5-b4bc-4cfd-85f1-e16dc52dad3e" + "b71208fb-6e61-4877-94a5-f48103d53bff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "7c7c43c6-6bcd-43e1-9d5b-0fee804da32c" + "29868e31-5ec2-42d0-929a-b6527200ec14" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T090006Z:7c7c43c6-6bcd-43e1-9d5b-0fee804da32c" + "WESTUS2:20190411T082739Z:29868e31-5ec2-42d0-929a-b6527200ec14" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:27:39 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:01:06 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5d5956b3-f99f-4c70-81d2-dd8706303e86" + "3279702c-5de4-4eec-a3ab-abb5d0ae1267" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "11045350-054d-41f8-8d6e-43149991ce88" + "bf56763d-1a73-4b2a-80c3-17ba4f6fd260" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T090107Z:11045350-054d-41f8-8d6e-43149991ce88" + "WESTUS2:20190411T082840Z:bf56763d-1a73-4b2a-80c3-17ba4f6fd260" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:28:39 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:02:06 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a640cc8e-3ce1-4623-b321-41926612d137" + "f32ddde2-b816-40ca-af82-2d079678610f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-correlation-request-id": [ - "5b4d47cc-a35e-44dc-85c1-3c5bcc6a6dff" + "78a73bb2-9374-47d9-9974-cb6577c66ae0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T090207Z:5b4d47cc-a35e-44dc-85c1-3c5bcc6a6dff" + "WESTUS2:20190411T082940Z:78a73bb2-9374-47d9-9974-cb6577c66ae0" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:29:40 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:03:07 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb797ce4-9bd0-4215-b7f8-a156104ae86f" + "d23edbf6-c211-48d6-85b4-0af7c248b01f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-correlation-request-id": [ - "d258ff4c-9b4b-4ea6-9907-b11e2a7b1661" + "a6dea9ea-522b-4b60-b92a-5dfde56bb932" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T090308Z:d258ff4c-9b4b-4ea6-9907-b11e2a7b1661" + "WESTUS2:20190411T083040Z:a6dea9ea-522b-4b60-b92a-5dfde56bb932" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:30:39 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:04:08 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff2a774b-4bca-43b9-9438-898d08b5c3a4" + "0ab6f721-09f8-4fb8-8502-7048ec952a60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "x-ms-correlation-request-id": [ - "435ca151-a4b6-4686-a6c9-ec938144f136" + "9f6287f7-05bf-43a1-a62f-bdc98fb017fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T090408Z:435ca151-a4b6-4686-a6c9-ec938144f136" + "WESTUS2:20190411T083141Z:9f6287f7-05bf-43a1-a62f-bdc98fb017fb" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:31:40 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:05:08 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62cc9310-31ba-4e54-abab-70114c939bf7" + "ad33f12e-5c63-416e-811d-09a68c868062" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11993" ], "x-ms-correlation-request-id": [ - "885215d9-4679-429a-9ba4-d7062e797886" + "c7ead615-66d8-4c7c-bfb0-0ee9bc245707" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T090509Z:885215d9-4679-429a-9ba4-d7062e797886" + "WESTUS2:20190411T083241Z:c7ead615-66d8-4c7c-bfb0-0ee9bc245707" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:32:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:06:09 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "37851715-4b96-4cda-b2ce-819cf4176ea8" + "6ad5b057-b81c-44cb-aa6f-b20ec14f72e5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11992" ], "x-ms-correlation-request-id": [ - "884e1959-d779-4048-8416-0563ea867231" + "277a2857-70a8-4cb7-932e-725495cf9bb4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T090609Z:884e1959-d779-4048-8416-0563ea867231" + "WESTUS2:20190411T083341Z:277a2857-70a8-4cb7-932e-725495cf9bb4" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:33:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:07:09 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f76cb1f-a971-487f-8d29-77e1898da7e5" + "c4a68089-f717-48d8-879f-14b64dab0b20" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11991" ], "x-ms-correlation-request-id": [ - "8ddf6ab5-7035-4f66-8bd7-9694d16425dc" + "18fa7161-2e4e-4eb6-86f0-d99eb1d09920" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T090709Z:8ddf6ab5-7035-4f66-8bd7-9694d16425dc" + "WESTUS2:20190411T083442Z:18fa7161-2e4e-4eb6-86f0-d99eb1d09920" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:34:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:08:09 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7dc688e-df59-40e1-a8ac-3d40f9d1c3e6" + "cb7685a0-e0a1-4ce1-a9fc-cfdc9fb267f1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11990" ], "x-ms-correlation-request-id": [ - "d82a623a-7f7f-4c21-bd23-91c8c989f11d" + "12894888-bc03-46c6-b1a9-239daea6a60e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T090810Z:d82a623a-7f7f-4c21-bd23-91c8c989f11d" + "WESTUS2:20190411T083542Z:12894888-bc03-46c6-b1a9-239daea6a60e" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:35:42 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:09:10 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c0796b8c-c90d-42b3-adee-70c1ca77447a" + "2e3bd92a-dcaa-476d-81f8-f1482a5f3202" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11989" ], "x-ms-correlation-request-id": [ - "f3523ec7-0907-4944-a31e-9cb5484a7c8a" + "2267e8d6-385c-467e-b3fa-b7f286295db0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T090910Z:f3523ec7-0907-4944-a31e-9cb5484a7c8a" + "WESTUS2:20190411T083643Z:2267e8d6-385c-467e-b3fa-b7f286295db0" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:36:42 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:10:30 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd267847-abc5-4ce5-9669-372e9e13196b" + "7db44346-1197-40a7-a58b-b90a8515e21f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11988" ], "x-ms-correlation-request-id": [ - "e9eb0085-068d-4b2d-910a-e9343e3b6cdc" + "fd010185-dd5b-41e1-b807-a3b224480953" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T091030Z:e9eb0085-068d-4b2d-910a-e9343e3b6cdc" + "WESTUS2:20190411T083743Z:fd010185-dd5b-41e1-b807-a3b224480953" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:37:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:11:30 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2be4ce14-1a84-48af-9b00-e8b3018c4dd3" + "a1968b00-008e-4300-98e0-6cb8faea4d24" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11987" ], "x-ms-correlation-request-id": [ - "00ae934c-4fe7-4fd4-a5b3-6a7046ed4ca9" + "318720fa-152e-4557-9a9d-b2f74191f5a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T091130Z:00ae934c-4fe7-4fd4-a5b3-6a7046ed4ca9" + "WESTUS2:20190411T083844Z:318720fa-152e-4557-9a9d-b2f74191f5a1" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:38:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:12:31 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4aababe6-dd28-4d67-b7f8-62875901be7f" + "cfc1f88c-bd59-451a-bf64-6f15784ec82c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11986" ], "x-ms-correlation-request-id": [ - "af3f97a0-133f-4014-ae28-a555a4c17607" + "d4015b4d-7d45-4d6a-b5c8-a07011c5f9db" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T091231Z:af3f97a0-133f-4014-ae28-a555a4c17607" + "WESTUS2:20190411T083944Z:d4015b4d-7d45-4d6a-b5c8-a07011c5f9db" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:39:44 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:13:31 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "17b40fee-818a-4651-b9fc-028d91622221" + "4d8d5edb-b337-4504-8fdc-71613292fe80" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11985" ], "x-ms-correlation-request-id": [ - "030a8802-3c57-4d44-bc0e-6a6cdc42fd8d" + "bca9134a-4c2f-476a-b47b-42de1571a468" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T091332Z:030a8802-3c57-4d44-bc0e-6a6cdc42fd8d" + "WESTUS2:20190411T084044Z:bca9134a-4c2f-476a-b47b-42de1571a468" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:40:44 GMT" ], "Expires": [ "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 09:14:31 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "e6c37cd6-f3d7-44d7-99e9-79b9944d0c13" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "b2e0323c-513a-4eea-8931-1a91ee847c35" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T091432Z:b2e0323c-513a-4eea-8931-1a91ee847c35" - ], - "X-Content-Type-Options": [ - "nosniff" ], "Content-Length": [ "0" - ], - "Expires": [ - "-1" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:15:32 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b988741c-08a4-4ba4-aea3-5af433050216" + "2821311e-0513-40e1-b58d-2cc67eb4356e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11984" ], "x-ms-correlation-request-id": [ - "0f2a42ab-182a-4395-930c-b0f0cd793aa2" + "1ea09b92-d77f-48ad-8cea-8a1844b4b163" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T091532Z:0f2a42ab-182a-4395-930c-b0f0cd793aa2" + "WESTUS2:20190411T084145Z:1ea09b92-d77f-48ad-8cea-8a1844b4b163" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:41:44 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:16:32 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0727d006-5df8-4584-abf0-556c6c53e8f4" + "97cf17ef-480b-4776-b2da-bf0d4d8c137e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11983" ], "x-ms-correlation-request-id": [ - "19e3582b-1a1a-461c-b82b-2deb0f012245" + "b8785e61-b61e-41d7-b75c-090e97c6cf05" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T091633Z:19e3582b-1a1a-461c-b82b-2deb0f012245" + "WESTUS2:20190411T084245Z:b8785e61-b61e-41d7-b75c-090e97c6cf05" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:42:44 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:17:32 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "abe89c76-9bef-45fb-aa83-f5c0249dd71d" + "87be4f79-627b-4b95-9352-49bdb041d36a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11982" ], "x-ms-correlation-request-id": [ - "b1b6e80b-3f0b-4a45-b91b-81fa2f7eeaa6" + "05a38b84-3064-4c73-9d13-3347e3d15a3c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T091733Z:b1b6e80b-3f0b-4a45-b91b-81fa2f7eeaa6" + "WESTUS2:20190411T084345Z:05a38b84-3064-4c73-9d13-3347e3d15a3c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:43:45 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:18:34 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87fa9b97-0936-4405-89d1-b47472712cd1" + "b9824d73-297d-4a08-baf1-a9256c17f670" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11981" ], "x-ms-correlation-request-id": [ - "267d567d-508a-4714-9a13-21479da579ae" + "dbceb787-e098-4c7f-bdba-c76e61b69652" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T091834Z:267d567d-508a-4714-9a13-21479da579ae" + "WESTUS2:20190411T084446Z:dbceb787-e098-4c7f-bdba-c76e61b69652" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:44:45 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX0FjdF9lNGM3OWU5Zg==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgwRmpkRjlsTkdNM09XVTVaZz09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:19:34 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2064b18f-9b11-4945-a2da-6492e93666fb" + "27b39268-df48-49f4-910c-3ed41f862ab7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11980" ], "x-ms-correlation-request-id": [ - "04bcb9eb-d322-4060-b454-1b5f42149df8" + "7d6d5722-aec6-4415-b357-3a18d94e5a92" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T091934Z:04bcb9eb-d322-4060-b454-1b5f42149df8" + "WESTUS2:20190411T084546Z:7d6d5722-aec6-4415-b357-3a18d94e5a92" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 08:45:46 GMT" + ], "Content-Length": [ - "0" + "2292" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521\",\r\n \"name\": \"sdktestapim7521\",\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\": \"AAAAAAFzTM0=\",\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\": \"2019-04-11T08:25:38.5086594Z\",\r\n \"gatewayUrl\": \"https://sdktestapim7521.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim7521-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim7521.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim7521.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim7521.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim7521.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.43.254.72\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"52.138.197.222\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://sdktestapim7521-northeurope-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ab4a512c-5409-46bd-8401-1ccb83ddcc55" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:20:34 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX1Rlcm1fODIyMjkyMmM=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "35454649-d25b-4013-986f-19e5d356ac86" + "909a751e-10d6-4cbd-8a12-50c6ca4ac9d2" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "b5b416ab-7126-494d-a995-2249a7b1df9c" + "094b326e-ea91-4043-bf08-08fe028b5918" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T092035Z:b5b416ab-7126-494d-a995-2249a7b1df9c" + "WESTUS2:20190411T084547Z:094b326e-ea91-4043-bf08-08fe028b5918" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 08:45:46 GMT" + ], "Content-Length": [ - "0" + "2091" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521\",\r\n \"name\": \"sdktestapim7521\",\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\": \"AAAAAAFzTNI=\",\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\": \"Deleting\",\r\n \"createdAtUtc\": \"2019-04-11T08:25:38.5086594Z\",\r\n \"gatewayUrl\": \"https://sdktestapim7521.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim7521-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim7521.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim7521.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim7521.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"104.43.254.72\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"52.138.197.222\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://sdktestapim7521-northeurope-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX1Rlcm1fODIyMjkyMmM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgxUmxjbTFmT0RJeU1qa3lNbU09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:21:34 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX1Rlcm1fODIyMjkyMmM=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86e67d85-0149-4fa8-a879-8fa0cc902640" + "ddeb5be7-ff42-4ad3-a935-9cb507399c1c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11979" ], "x-ms-correlation-request-id": [ - "dfbf24ff-350e-4957-be74-538facc0b581" + "aecd6956-8fcf-4537-a6f4-84a12e5e62c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T092135Z:dfbf24ff-350e-4957-be74-538facc0b581" + "WESTUS2:20190411T084647Z:aecd6956-8fcf-4537-a6f4-84a12e5e62c7" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:46:46 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX1Rlcm1fODIyMjkyMmM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgxUmxjbTFmT0RJeU1qa3lNbU09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:22:34 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "83dd23e6-4926-4437-862d-ea395fd4ac9e" + "b73f6105-3597-4799-a2ea-c8acddf2f3e2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11978" ], "x-ms-correlation-request-id": [ - "d7e0b9e2-7470-4599-a792-b7ccfbf40c6b" + "fdd6b841-2c93-4c9f-8fdb-c41cb23f871a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T092235Z:d7e0b9e2-7470-4599-a792-b7ccfbf40c6b" + "WESTUS2:20190411T084747Z:fdd6b841-2c93-4c9f-8fdb-c41cb23f871a" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 08:47:46 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661/operationresults/c2RrdGVzdGFwaW05NjYxX0FjdF8zODFiZDZlMg==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxL29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwNU5qWXhYMEZqZEY4ek9ERmlaRFpsTWc9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521/operationresults/c2RrdGVzdGFwaW03NTIxX1Rlcm1fODIyMjkyMmM=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjEvb3BlcmF0aW9ucmVzdWx0cy9jMlJyZEdWemRHRndhVzAzTlRJeFgxUmxjbTFmT0RJeU1qa3lNbU09P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:23:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "07eb5142-0884-47ae-8857-85b3d38425ab" + "014b1457-6021-487c-b8b7-544f0cb81181" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11977" ], "x-ms-correlation-request-id": [ - "9109523c-72bd-4a6c-afc0-1da1eb45cc94" + "eb512328-bac5-4701-9104-5c3faa05e898" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T092336Z:9109523c-72bd-4a6c-afc0-1da1eb45cc94" + "WESTUS2:20190411T084747Z:eb512328-bac5-4701-9104-5c3faa05e898" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "2082" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Date": [ + "Thu, 11 Apr 2019 08:47:47 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661\",\r\n \"name\": \"sdktestapim9661\",\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\": \"AAAAAAFtuZg=\",\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\": \"2019-04-02T08:58:05.5911739Z\",\r\n \"gatewayUrl\": \"https://sdktestapim9661.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim9661-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim9661.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim9661.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim9661.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"104.43.133.161\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": [\r\n {\r\n \"location\": \"North Europe\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"40.69.27.52\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://sdktestapim9661-northeurope-01.regional.azure-api.net\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg993/providers/Microsoft.ApiManagement/service/sdktestapim7521?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk5My9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0YXBpbTc1MjE/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68e54345-53bf-4684-9498-3fa36a5e753b" + "3815c81e-a465-40f9-b28a-febb869dc217" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 09:23:36 GMT" - ], "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" ], "x-ms-request-id": [ - "b25c041d-d0fc-4986-8851-c112e5002c6b" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "04d8996c-c587-4a2d-a38c-d04da4458b9b" ], "x-ms-correlation-request-id": [ - "fa61a6d8-9a1b-44ec-91e0-83e468970780" + "04d8996c-c587-4a2d-a38c-d04da4458b9b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T092337Z:fa61a6d8-9a1b-44ec-91e0-83e468970780" + "WESTUS2:20190411T084747Z:04d8996c-c587-4a2d-a38c-d04da4458b9b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "\"\"", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg9459/providers/Microsoft.ApiManagement/service/sdktestapim9661?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk0NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW05NjYxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a6f4ba7f-0a3a-46a0-9480-6b781db01cdd" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 02 Apr 2019 09:23:36 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "91c02092-1aed-4980-aecd-5d4c76e4f5ce" - ], - "x-ms-correlation-request-id": [ - "91c02092-1aed-4980-aecd-5d4c76e4f5ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T092337Z:91c02092-1aed-4980-aecd-5d4c76e4f5ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "Thu, 11 Apr 2019 08:47:47 GMT" ], "Content-Length": [ - "164" + "115" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1882,14 +1759,14 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ApiManagement/service/sdktestapim9661' under resource group 'sdktestrg9459' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"code\": \"ServiceNotFound\",\r\n \"message\": \"Api service does not exist: sdktestapim7521\",\r\n \"details\": null,\r\n \"innerError\": null\r\n}", "StatusCode": 404 } ], "Names": { "Initialize": [ - "sdktestapim9661", - "sdktestrg9459" + "sdktestapim7521", + "sdktestrg993" ] }, "Variables": { @@ -1897,8 +1774,8 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestapim9661", + "ServiceName": "sdktestapim7521", "Location": "Central US", - "ResourceGroup": "sdktestrg9459" + "ResourceGroup": "sdktestrg993" } } \ No newline at end of file diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/InstallIntermediateCertificatesTest.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/InstallIntermediateCertificatesTest.json index d510e7337b16..eea18fa14b7f 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/InstallIntermediateCertificatesTest.json +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/InstallIntermediateCertificatesTest.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bee76812-8709-4490-8908-f68da49e7c61" + "2b28485b-ae7c-4be2-9a46-af1491a16950" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:22:46 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-request-id": [ - "4c785c7d-5969-4c05-9713-394d02af7fc4" + "48eb704e-3faf-45f0-ae6e-b3db2dea07a0" ], "x-ms-correlation-request-id": [ - "4c785c7d-5969-4c05-9713-394d02af7fc4" + "48eb704e-3faf-45f0-ae6e-b3db2dea07a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T042246Z:4c785c7d-5969-4c05-9713-394d02af7fc4" + "WESTUS2:20190411T050802Z:48eb704e-3faf-45f0-ae6e-b3db2dea07a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,33 +44,36 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "1876" + "Date": [ + "Thu, 11 Apr 2019 05:08:01 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1941" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg8890?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzg4OTA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg1297?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzEyOTc/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2a546308-1189-4a13-811a-23c7bcf7550c" + "42596f97-ac76-4c9d-be19-1491dfe4d060" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" @@ -89,9 +89,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:22:47 GMT" - ], "Pragma": [ "no-cache" ], @@ -99,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "539a2fa3-5a68-41fb-b2c9-41f94bf897f7" + "bd541734-c506-4f1b-b41f-2adae66e6ae3" ], "x-ms-correlation-request-id": [ - "539a2fa3-5a68-41fb-b2c9-41f94bf897f7" + "bd541734-c506-4f1b-b41f-2adae66e6ae3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T042247Z:539a2fa3-5a68-41fb-b2c9-41f94bf897f7" + "WESTUS2:20190411T050803Z:bd541734-c506-4f1b-b41f-2adae66e6ae3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 05:08:02 GMT" + ], "Content-Length": [ "182" ], @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890\",\r\n \"name\": \"sdktestrg8890\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297\",\r\n \"name\": \"sdktestrg1297\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": \"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 \"certificatePassword\": \"Password\",\r\n \"storeName\": \"CertificateAuthority\"\r\n }\r\n ],\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "860767e7-1b6a-4575-8125-1d57d2359928" + "fd0724f1-ae31-4def-b09b-7c3cca139829" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,45 +155,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:22:50 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtqR4=\"" + "\"AAAAAAFzP8Q=\"" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7d5c8c78-0e22-43fc-b57b-d73ecbfdf070", - "8047cfc4-77ea-4ba1-886f-1efaf57bf463" + "42edc804-ae9d-42aa-bdb1-66fe313e45a4", + "f81fa506-c295-4caa-9354-6d2c0ac7ba6c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-correlation-request-id": [ - "1a3ca56f-a4d5-4131-ac47-91d01bce6b88" + "18bab3b6-bcba-4ee7-84fe-07d1e7c12294" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T042251Z:1a3ca56f-a4d5-4131-ac47-91d01bce6b88" + "WESTUS2:20190411T050804Z:18bab3b6-bcba-4ee7-84fe-07d1e7c12294" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 05:08:04 GMT" + ], "Content-Length": [ - "1174" + "1356" ], "Content-Type": [ "application/json; charset=utf-8" @@ -202,1978 +202,1915 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156\",\r\n \"name\": \"sdktestapim1156\",\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\": \"AAAAAAFtqR4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-02T04:22:50.4177813Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"CertificateAuthority\",\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065\",\r\n \"name\": \"sdktestapim5065\",\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\": \"AAAAAAFzP8Q=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-11T05:08:04.3228808Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"CertificateAuthority\",\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:23:51 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f9934d4-5209-4998-9663-26c8ca70584a" + "5b9a087b-c6b7-41f1-a693-ddbffe7b56c3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "380388b7-423c-4a8b-81a8-5dc7d2168696" + "c3a1f495-e1ba-42f2-b265-a6d87ed7f62f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T042351Z:380388b7-423c-4a8b-81a8-5dc7d2168696" + "WESTUS2:20190411T050905Z:c3a1f495-e1ba-42f2-b265-a6d87ed7f62f" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:09:04 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:24:51 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62aa611b-a5f5-4d1d-bdef-b7b4cf269f59" + "dcb0f2fc-7f64-4c0d-a6e5-0fd02eff1dbb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "d29386a2-0dcf-4786-a033-4392e3d69ad1" + "0895711a-5574-4c8c-b30e-d0c6d7eb842b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T042452Z:d29386a2-0dcf-4786-a033-4392e3d69ad1" + "WESTUS2:20190411T051005Z:0895711a-5574-4c8c-b30e-d0c6d7eb842b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:10:04 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:25:52 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "35ca9420-6f3c-41c2-a1fc-17de16460ce7" + "3b877aa1-5f35-4590-904e-798ca5aecac1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-correlation-request-id": [ - "c4ef1f15-d67c-4898-805e-45f84e8d5bd1" + "ed23e9f7-3a6b-40ff-ae1f-ddd0f3f66b81" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T042552Z:c4ef1f15-d67c-4898-805e-45f84e8d5bd1" + "WESTUS2:20190411T051105Z:ed23e9f7-3a6b-40ff-ae1f-ddd0f3f66b81" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:11:05 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:26:51 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "215cfcb0-664d-4ad6-87e7-358c26fa0199" + "8c6a3b7a-1aeb-4ff1-afb1-ba39365af195" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11996" ], "x-ms-correlation-request-id": [ - "06a207e5-09f1-4085-9416-7aea9d4c116d" + "42188d79-771c-464c-8fb3-42baebd7a99f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T042652Z:06a207e5-09f1-4085-9416-7aea9d4c116d" + "WESTUS2:20190411T051206Z:42188d79-771c-464c-8fb3-42baebd7a99f" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:12:05 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:27:52 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4cc0e404-d9f2-4b81-b304-3642b666aeec" + "e62561c9-2ae4-4811-8513-d5cecec1948a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11995" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "affbe045-ade8-43f7-856f-453cb49c86a6" + "8cf9c3fa-2d70-48b9-a54f-ff09b280963b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T042752Z:affbe045-ade8-43f7-856f-453cb49c86a6" + "WESTUS2:20190411T051306Z:8cf9c3fa-2d70-48b9-a54f-ff09b280963b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:13:05 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:28:53 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09c23543-8184-498b-84a6-39b5a4eab714" + "898e78d8-0600-4dea-8c68-09754bb58ebd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "x-ms-correlation-request-id": [ - "26bfdfd5-99ec-4918-b266-59e16e49dd58" + "3f91491e-d2da-4393-98b6-f48d69716ddc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T042853Z:26bfdfd5-99ec-4918-b266-59e16e49dd58" + "WESTUS2:20190411T051406Z:3f91491e-d2da-4393-98b6-f48d69716ddc" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:14:06 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:29:53 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3545b5d0-7d4f-429b-94d6-b8ee5545e04a" + "babb9b72-8f01-4f84-b811-ac640dd004ea" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "55df6bb7-8b37-45e4-bb4c-e4b3b52238a3" + "c0acbdf8-bc59-42c9-9eb8-d1803109338d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T042953Z:55df6bb7-8b37-45e4-bb4c-e4b3b52238a3" + "WESTUS2:20190411T051506Z:c0acbdf8-bc59-42c9-9eb8-d1803109338d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:15:05 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:30:53 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ab47a63-8a4d-4e29-974e-2fb592e012ba" + "81f68a4e-63c1-4e87-b951-19eb8d13352a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11992" ], "x-ms-correlation-request-id": [ - "2db7ad47-f2d2-4e24-8a9d-360df7b4466c" + "e390fd65-5a5a-4cd4-8a0c-d5a7e6f3b07c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T043053Z:2db7ad47-f2d2-4e24-8a9d-360df7b4466c" + "WESTUS2:20190411T051607Z:e390fd65-5a5a-4cd4-8a0c-d5a7e6f3b07c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:16:06 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:31:54 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55dd5a9f-d0cb-4a9d-994f-d65637069ea8" + "91509d15-25db-4315-85c2-cd96a8788725" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11991" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "ede57d3e-ef29-4aa7-b80d-5e2631b112ed" + "730c747c-bcf9-4c0f-9e29-31f694f9e30c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T043154Z:ede57d3e-ef29-4aa7-b80d-5e2631b112ed" + "WESTUS2:20190411T051707Z:730c747c-bcf9-4c0f-9e29-31f694f9e30c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:17:06 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:32:54 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dbd9d442-e292-4d0d-8475-c6aa2f56b864" + "fff78720-bcba-4c1a-915a-c03320571c43" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11990" ], "x-ms-correlation-request-id": [ - "7f9fc5d5-5c78-461a-b00f-798a859e5603" + "a382856e-ae73-4138-a1e3-92efa4741e7b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T043254Z:7f9fc5d5-5c78-461a-b00f-798a859e5603" + "WESTUS2:20190411T051807Z:a382856e-ae73-4138-a1e3-92efa4741e7b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:18:07 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:33:54 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e7ae191-b324-4ee1-a57b-4599c4abe30c" + "e2fe7cbf-3751-413b-a54d-b97a6e121478" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11989" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "3e62ef2c-2370-495d-ba93-add39b4443d0" + "1ba1c806-e457-4e77-9c9f-48fd3b94bdef" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T043355Z:3e62ef2c-2370-495d-ba93-add39b4443d0" + "WESTUS2:20190411T051907Z:1ba1c806-e457-4e77-9c9f-48fd3b94bdef" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:19:07 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:34:55 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d3bc3102-fce0-4582-acfe-670045b22078" + "13a320f6-c9cf-47cc-a0af-37bd46c2f7df" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11988" ], "x-ms-correlation-request-id": [ - "f294c5c7-3e22-4cab-b58f-1e494a383c6b" + "6ebe2eaa-839a-41ab-a5f9-dbfc14588892" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T043455Z:f294c5c7-3e22-4cab-b58f-1e494a383c6b" + "WESTUS2:20190411T052008Z:6ebe2eaa-839a-41ab-a5f9-dbfc14588892" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:20:08 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:35:55 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5087032-2a70-4e9d-a2e1-f2de944b619c" + "62f0812b-0658-4edb-b66c-d36d743f54bf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], "x-ms-correlation-request-id": [ - "f9b2d658-23eb-47b0-ac96-64f025f59093" + "7f8a7ed3-55c0-4695-863c-527e080c35fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T043556Z:f9b2d658-23eb-47b0-ac96-64f025f59093" + "WESTUS2:20190411T052108Z:7f8a7ed3-55c0-4695-863c-527e080c35fb" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:21:08 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:36:55 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5139ee9-7997-452f-96d0-675e01c628ff" + "46db35bf-914a-419a-b8df-2dda997582f5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11986" ], "x-ms-correlation-request-id": [ - "4e3d81f0-6a85-4d90-9d9f-e596796f3692" + "464ffaf9-d6e9-4c69-af02-02d95b4cf43b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T043656Z:4e3d81f0-6a85-4d90-9d9f-e596796f3692" + "WESTUS2:20190411T052209Z:464ffaf9-d6e9-4c69-af02-02d95b4cf43b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:22:08 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:37:56 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03a20d5e-f153-477c-a095-9950f58a50e3" + "1b711a2d-4752-4642-9157-d255d4340ad9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11985" ], "x-ms-correlation-request-id": [ - "7a1842ee-5d8e-4327-bc5e-e24fed78f66b" + "ab2a473b-de15-4aae-a43d-b5918d894457" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T043756Z:7a1842ee-5d8e-4327-bc5e-e24fed78f66b" + "WESTUS2:20190411T052309Z:ab2a473b-de15-4aae-a43d-b5918d894457" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:23:09 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:38:56 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3c027a1b-1ff5-4ff6-82f3-a502fa09de4e" + "24e4043b-a72a-4418-a423-86e6862040ef" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11984" ], "x-ms-correlation-request-id": [ - "0f144d1c-8df2-405b-b29b-697f3c4a1609" + "b3bd6579-4ff3-4333-a9ea-4f136a800790" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T043857Z:0f144d1c-8df2-405b-b29b-697f3c4a1609" + "WESTUS2:20190411T052409Z:b3bd6579-4ff3-4333-a9ea-4f136a800790" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:24:08 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:39:56 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b58964c9-da94-43c0-a675-531643baa9c5" + "1f16c51f-3cb3-4277-b25e-ffa3c4acfcc3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11983" ], "x-ms-correlation-request-id": [ - "9104b059-a8ac-4633-b49e-ffcb26a5dafe" + "4f4e2cca-5926-4d03-b498-6fae7b383929" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T043957Z:9104b059-a8ac-4633-b49e-ffcb26a5dafe" + "WESTUS2:20190411T052509Z:4f4e2cca-5926-4d03-b498-6fae7b383929" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:25:09 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:40:57 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3eea5a99-4f9a-42aa-b63e-f3b750d7e4c4" + "5491118f-91c3-4634-a946-feea8bb4cc60" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11982" ], "x-ms-correlation-request-id": [ - "95fb530c-9fe4-44e8-a487-e8bce102c022" + "1d65995c-8bba-4e99-a882-9d59f59debaa" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T044058Z:95fb530c-9fe4-44e8-a487-e8bce102c022" + "WESTUS2:20190411T052610Z:1d65995c-8bba-4e99-a882-9d59f59debaa" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:26:09 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:41:57 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0c850c32-e661-4ae3-bc60-206c62f5b0b1" + "04b00dfb-afb8-4e02-bfc0-f7594d53f677" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11981" ], "x-ms-correlation-request-id": [ - "260586fb-1ec4-401c-9d00-58c2f2084f26" + "efbed4e6-7e68-4a4f-8fa9-2f8da2944aef" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T044158Z:260586fb-1ec4-401c-9d00-58c2f2084f26" + "WESTUS2:20190411T052710Z:efbed4e6-7e68-4a4f-8fa9-2f8da2944aef" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:27:10 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:42:58 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "41bb589e-6ed4-41d8-8f74-962b0d5d201f" + "a7ad213a-cc77-402d-a3b8-f4e35bb90a5a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11980" ], "x-ms-correlation-request-id": [ - "35d4a517-5338-4310-a10e-f7c3b349a4a4" + "ed5288e5-10d2-467c-8457-691bc04f626c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T044258Z:35d4a517-5338-4310-a10e-f7c3b349a4a4" + "WESTUS2:20190411T052810Z:ed5288e5-10d2-467c-8457-691bc04f626c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:28:10 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:43:59 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9f0fc15-6aca-4d4a-bcc6-4038f94852f1" + "b173c16f-9540-4855-b934-f9d71e009029" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11979" ], "x-ms-correlation-request-id": [ - "83f5e0f4-871e-45d3-8bcd-8573c611117a" + "38c745eb-cb9e-456f-ad20-2d94d682498e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T044359Z:83f5e0f4-871e-45d3-8bcd-8573c611117a" + "WESTUS2:20190411T052911Z:38c745eb-cb9e-456f-ad20-2d94d682498e" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:29:10 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:44:59 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2abb013c-3b65-450d-b5f4-ca063ff9050f" + "d6e271b4-f817-468c-aac4-64b428bd393c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11978" ], "x-ms-correlation-request-id": [ - "6074e5f2-8e4c-4924-a899-f0cf1144c189" + "5121661b-0c2e-4a69-9ad8-ea8884a126b0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T044459Z:6074e5f2-8e4c-4924-a899-f0cf1144c189" + "WESTUS2:20190411T053011Z:5121661b-0c2e-4a69-9ad8-ea8884a126b0" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:30:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:46:00 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f62d2e7-1271-4988-9709-9a14598e2f16" + "17591edb-374b-4cab-ba2d-6264462ff617" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11977" ], "x-ms-correlation-request-id": [ - "71fb3c71-5c66-49ca-aa8c-861e4db465ec" + "a0f809e9-1cfe-44b9-8052-8b4a73b40eb5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T044600Z:71fb3c71-5c66-49ca-aa8c-861e4db465ec" + "WESTUS2:20190411T053111Z:a0f809e9-1cfe-44b9-8052-8b4a73b40eb5" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:31:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:46:59 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8897537e-ddfd-4d8a-81fb-5281a7cdf643" + "6b8450c8-b0f7-405f-bd2e-c659b92d1329" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11976" ], "x-ms-correlation-request-id": [ - "b9d68b1e-23f9-4eb9-9974-1a6a7a842277" + "10f7313a-aecb-47dd-99fe-4eecd244a672" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T044700Z:b9d68b1e-23f9-4eb9-9974-1a6a7a842277" + "WESTUS2:20190411T053212Z:10f7313a-aecb-47dd-99fe-4eecd244a672" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:32:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:48:00 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d6ceacae-83a8-46a4-a7fb-bff942fe1015" + "bd93ec9a-3417-44de-9df9-858ff50e51dc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11975" ], "x-ms-correlation-request-id": [ - "3240b1b0-6e36-4450-a054-7638631a1b66" + "088f1bb0-0b37-4d50-85a9-d302eda5448c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T044801Z:3240b1b0-6e36-4450-a054-7638631a1b66" + "WESTUS2:20190411T053312Z:088f1bb0-0b37-4d50-85a9-d302eda5448c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:33:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:49:00 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "01155585-9679-42c6-8ce2-d318c644ea69" + "400966df-1bb0-44c2-8301-40c65637521a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11974" ], "x-ms-correlation-request-id": [ - "ebbd08e5-7a5d-4cdb-b81d-946ee14f575a" + "c0cac897-18f2-4367-918e-c8b1cf0c99ed" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T044901Z:ebbd08e5-7a5d-4cdb-b81d-946ee14f575a" + "WESTUS2:20190411T053412Z:c0cac897-18f2-4367-918e-c8b1cf0c99ed" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:34:12 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X0FjdF9mNzA4OTA1Nw==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMEZqZEY5bU56QTRPVEExTnc9PT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:50:01 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9be1629e-2711-4011-860a-8771cf294a59" + "7028b2e3-08a8-41e4-a287-60d970718d28" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11973" ], "x-ms-correlation-request-id": [ - "bf296657-1bd2-48a3-9131-264fa258a1b0" + "5fa9a3da-c274-4da5-946b-19e120857925" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T045001Z:bf296657-1bd2-48a3-9131-264fa258a1b0" + "WESTUS2:20190411T053513Z:5fa9a3da-c274-4da5-946b-19e120857925" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 05:35:12 GMT" + ], "Content-Length": [ - "0" + "2270" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065\",\r\n \"name\": \"sdktestapim5065\",\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\": \"AAAAAAFzQXQ=\",\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\": \"2019-04-11T05:08:04.3228808Z\",\r\n \"gatewayUrl\": \"https://sdktestapim5065.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim5065-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim5065.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim5065.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim5065.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim5065.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.113.228.6\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"CertificateAuthority\",\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a12da6f0-314e-4a44-a5ba-5585ff68f1dd" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:51:02 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X1Rlcm1fM2I3YmE1Yjc=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c1dd8f0e-6cdd-4ad9-904b-1f764eeb7f3d" + "afd89fb8-0b00-41ae-9933-e13f736c0906" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "42446170-43d3-4028-9421-333c91087712" + "7d5fcb52-ef36-47bf-9daf-0545a522a45c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T045102Z:42446170-43d3-4028-9421-333c91087712" + "WESTUS2:20190411T053514Z:7d5fcb52-ef36-47bf-9daf-0545a522a45c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 05:35:13 GMT" + ], "Content-Length": [ - "0" + "2069" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065\",\r\n \"name\": \"sdktestapim5065\",\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\": \"AAAAAAFzQXU=\",\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\": \"Deleting\",\r\n \"createdAtUtc\": \"2019-04-11T05:08:04.3228808Z\",\r\n \"gatewayUrl\": \"https://sdktestapim5065.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim5065-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim5065.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim5065.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim5065.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"40.113.228.6\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"CertificateAuthority\",\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X1Rlcm1fM2I3YmE1Yjc=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMVJsY20xZk0ySTNZbUUxWWpjPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:52:02 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X1Rlcm1fM2I3YmE1Yjc=?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "52154c5d-5d5a-4431-bacf-e6b4165a729e" + "16021a3f-67d1-43dc-849c-992f2e1cb957" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11972" ], "x-ms-correlation-request-id": [ - "661a4111-6896-49e1-8bf7-f76dbe39695a" + "527e5b86-f5ed-49fb-aec3-b7c8ce6308a7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T045202Z:661a4111-6896-49e1-8bf7-f76dbe39695a" + "WESTUS2:20190411T053614Z:527e5b86-f5ed-49fb-aec3-b7c8ce6308a7" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:36:14 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X1Rlcm1fM2I3YmE1Yjc=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMVJsY20xZk0ySTNZbUUxWWpjPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:53:03 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ea57b86-42da-477e-94c8-4bd7181e4a99" + "a12042dd-7e1e-43bc-9684-dc47be3ff2c9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11971" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "4edfd6ef-0a1f-4fca-865a-f72943ef28ab" + "27631b31-24f8-4020-8bfa-ebb2c5718491" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T045303Z:4edfd6ef-0a1f-4fca-865a-f72943ef28ab" + "WESTUS2:20190411T053714Z:27631b31-24f8-4020-8bfa-ebb2c5718491" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 05:37:14 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156/operationresults/c2RrdGVzdGFwaW0xMTU2X0FjdF9kOTYyNDMyOA==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcweE1UVTJYMEZqZEY5a09UWXlORE15T0E9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065/operationresults/c2RrdGVzdGFwaW01MDY1X1Rlcm1fM2I3YmE1Yjc=?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU1EWTFYMVJsY20xZk0ySTNZbUUxWWpjPT9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:54:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3bb47df4-bf8a-407e-ad6c-d10bb3dd59aa" + "48aa23af-8ea8-4f41-8b95-415476026144" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11970" ], "x-ms-correlation-request-id": [ - "b85b8e58-4249-4513-bea3-026c45b574bb" + "9a96a1c6-e842-4dcc-90c5-4ccbeb1b7f60" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T045404Z:b85b8e58-4249-4513-bea3-026c45b574bb" + "WESTUS2:20190411T053715Z:9a96a1c6-e842-4dcc-90c5-4ccbeb1b7f60" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "2063" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Date": [ + "Thu, 11 Apr 2019 05:37:14 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156\",\r\n \"name\": \"sdktestapim1156\",\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\": \"AAAAAAFtqmU=\",\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\": \"2019-04-02T04:22:50.4177813Z\",\r\n \"gatewayUrl\": \"https://sdktestapim1156.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim1156-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim1156.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim1156.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim1156.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"168.61.152.131\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [\r\n {\r\n \"encodedCertificate\": null,\r\n \"certificatePassword\": null,\r\n \"storeName\": \"CertificateAuthority\",\r\n \"certificate\": {\r\n \"expiry\": \"2035-12-31T23:00:00-08:00\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"subject\": \"CN=*.msitesting.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg1297/providers/Microsoft.ApiManagement/service/sdktestapim5065?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01MDY1P2FwaS12ZXJzaW9uPTIwMTktMDEtMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e3f602b-a303-4749-acd2-4963be348677" + "4c4ff47a-2466-41d2-865f-c97466ce7946" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:54:04 GMT" - ], "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" ], "x-ms-request-id": [ - "03ec5986-b5dd-4032-8a74-43bfc67835d4" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "c61aff9a-b835-4fc8-a8b6-cbe56094445d" ], "x-ms-correlation-request-id": [ - "97e9a944-cec0-4f37-87b7-c804d7722d49" + "c61aff9a-b835-4fc8-a8b6-cbe56094445d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T045405Z:97e9a944-cec0-4f37-87b7-c804d7722d49" + "WESTUS2:20190411T053715Z:c61aff9a-b835-4fc8-a8b6-cbe56094445d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "\"\"", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg8890/providers/Microsoft.ApiManagement/service/sdktestapim1156?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW0xMTU2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "669785a7-026a-4b07-aa9c-e273ceae77f8" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 02 Apr 2019 04:54:04 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "2988eb0a-da18-47c9-a9b7-41368d0a4883" - ], - "x-ms-correlation-request-id": [ - "2988eb0a-da18-47c9-a9b7-41368d0a4883" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T045405Z:2988eb0a-da18-47c9-a9b7-41368d0a4883" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "Thu, 11 Apr 2019 05:37:14 GMT" ], "Content-Length": [ - "164" + "115" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2182,14 +2119,14 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ApiManagement/service/sdktestapim1156' under resource group 'sdktestrg8890' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"code\": \"ServiceNotFound\",\r\n \"message\": \"Api service does not exist: sdktestapim5065\",\r\n \"details\": null,\r\n \"innerError\": null\r\n}", "StatusCode": 404 } ], "Names": { "Initialize": [ - "sdktestapim1156", - "sdktestrg8890" + "sdktestapim5065", + "sdktestrg1297" ] }, "Variables": { @@ -2197,8 +2134,8 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestapim1156", + "ServiceName": "sdktestapim5065", "Location": "Central US", - "ResourceGroup": "sdktestrg8890" + "ResourceGroup": "sdktestrg1297" } } \ No newline at end of file diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/SetupMsiTests.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/SetupMsiTests.json index 349acab3830e..1c79c8e5b286 100644 --- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/SetupMsiTests.json +++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ResourceProviderTests.ApiManagementServiceTests/SetupMsiTests.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2543c5c5-e987-4593-bc0c-052925ab266b" + "45c5006b-3731-4624-951d-5966c9c50e3d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" @@ -23,9 +23,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:54:07 GMT" - ], "Pragma": [ "no-cache" ], @@ -33,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "c4aa9571-8627-4e38-9d91-869940b806a1" + "bc480247-14d1-4b2c-b610-8742b0c46279" ], "x-ms-correlation-request-id": [ - "c4aa9571-8627-4e38-9d91-869940b806a1" + "bc480247-14d1-4b2c-b610-8742b0c46279" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T045407Z:c4aa9571-8627-4e38-9d91-869940b806a1" + "WESTUS2:20190411T162925Z:bc480247-14d1-4b2c-b610-8742b0c46279" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,33 +44,36 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "1876" + "Date": [ + "Thu, 11 Apr 2019 16:29:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1941" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg7215?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzcyMTU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourcegroups/sdktestrg39?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzM5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ac485870-450f-4fe2-bdb0-aeeca74ad3fe" + "f03d9d1c-4079-426c-a016-7563787e692c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" @@ -89,9 +89,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:54:07 GMT" - ], "Pragma": [ "no-cache" ], @@ -99,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "5511143b-3035-4353-8762-8560a0afdb79" + "f05a3e22-b4a2-42d0-816d-ea3f47f40b0d" ], "x-ms-correlation-request-id": [ - "5511143b-3035-4353-8762-8560a0afdb79" + "f05a3e22-b4a2-42d0-816d-ea3f47f40b0d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T045408Z:5511143b-3035-4353-8762-8560a0afdb79" + "WESTUS2:20190411T162926Z:f05a3e22-b4a2-42d0-816d-ea3f47f40b0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,8 +110,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 16:29:26 GMT" + ], "Content-Length": [ - "182" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,77 +123,79 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215\",\r\n \"name\": \"sdktestrg7215\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg39\",\r\n \"name\": \"sdktestrg39\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg39/providers/Microsoft.ApiManagement/service/sdktestapim9652?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3RhcGltOTY1Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2e16506e-257b-4e28-8bd5-e15a141f5a11" + "ed39dda6-e813-4b5b-9fa8-797a7001c700" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "343" + "322" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:54:11 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"AAAAAAFtqmw=\"" + "\"AAAAAAAAWiE=\"" ], "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" + "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg39/providers/Microsoft.ApiManagement/service/sdktestapim9652/operationresults/c2RrdGVzdGFwaW05NjUyX0FjdF8yZjM1OWQyOA==?api-version=2019-01-01" ], "Retry-After": [ "60" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "586ba45f-ed98-4e11-96d2-e2d1d180e1e3", - "17beae7c-55f7-4423-bc6a-8fef9b3180dc" + "d15ec21c-5934-40b2-9dbb-37682f407757", + "fdd31933-ad82-4a32-8a8d-69a69841d40c", + "8359d239-6765-4703-b67f-28a005844f21" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "60be580f-ab78-470c-b392-9ad4e75e02d2" + "d58fb530-eae2-427f-86dd-bc669c41f2d0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T045411Z:60be580f-ab78-470c-b392-9ad4e75e02d2" + "WESTUS2:20190411T162930Z:d58fb530-eae2-427f-86dd-bc669c41f2d0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 16:29:30 GMT" + ], "Content-Length": [ - "1074" + "1285" ], "Content-Type": [ "application/json; charset=utf-8" @@ -202,1694 +204,192 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438\",\r\n \"name\": \"sdktestapim5438\",\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\": \"AAAAAAFtqmw=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-02T04:54:11.3137388Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f3a4f147-dbe8-4d55-b90d-b737b32ef11f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg39/providers/Microsoft.ApiManagement/service/sdktestapim9652\",\r\n \"name\": \"sdktestapim9652\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAWiE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Created\",\r\n \"targetProvisioningState\": \"Activating\",\r\n \"createdAtUtc\": \"2019-04-11T16:29:29.9711098Z\",\r\n \"gatewayUrl\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"dfb9a757-df69-4966-a8d0-711a9cd8ffb4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg39/providers/Microsoft.ApiManagement/service/sdktestapim9652/operationresults/c2RrdGVzdGFwaW05NjUyX0FjdF8yZjM1OWQyOA==?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3RhcGltOTY1Mi9vcGVyYXRpb25yZXN1bHRzL2MyUnJkR1Z6ZEdGd2FXMDVOalV5WDBGamRGOHlaak0xT1dReU9BPT0/YXBpLXZlcnNpb249MjAxOS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:55:11 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d17ceb3b-b676-427f-82d3-b6b9cc92482f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-correlation-request-id": [ - "ffab75be-f638-472a-91cf-55f831cd35b3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T045512Z:ffab75be-f638-472a-91cf-55f831cd35b3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 04:56:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" + "67d69e04-fbef-4f5c-a8e1-1ce4d93959cd", + "a9baf1e7-d5c4-45cc-8c78-9d7db9b96b11" ], "Server": [ + "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "8edbda94-15f9-4afd-b03a-b5334667f9ee" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "12e106b6-98ab-4a0f-8a94-7d2ec5ad6b05" + "cddba7c5-d22e-4b98-af1e-8e6c23b94c84" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T045613Z:12e106b6-98ab-4a0f-8a94-7d2ec5ad6b05" + "WESTUS2:20190411T163030Z:cddba7c5-d22e-4b98-af1e-8e6c23b94c84" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 11 Apr 2019 16:30:29 GMT" + ], "Content-Length": [ - "0" + "1339" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg39/providers/Microsoft.ApiManagement/service/sdktestapim9652\",\r\n \"name\": \"sdktestapim9652\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAAWiU=\",\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\": \"2019-04-11T16:29:29.9711098Z\",\r\n \"gatewayUrl\": \"https://sdktestapim9652.azure-api.net\",\r\n \"gatewayRegionalUrl\": null,\r\n \"portalUrl\": null,\r\n \"managementApiUrl\": null,\r\n \"scmUrl\": null,\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktestapim9652.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": null,\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"enableClientCertificate\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Consumption\",\r\n \"capacity\": 0\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"dfb9a757-df69-4966-a8d0-711a9cd8ffb4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg39/providers/Microsoft.ApiManagement/service/sdktestapim9652?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3RhcGltOTY1Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "950837bd-b53b-4e5e-80cf-6e27ab4c218b" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:57:12 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03b4ea68-7c8a-4e0f-ae4c-46b3d0c558cd" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "08aed865-819f-47a9-a44a-2752cea96e73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T045713Z:08aed865-819f-47a9-a44a-2752cea96e73" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 04:58:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" + "33c91595-b8fc-43e6-a0c9-5e4317283853", + "0fdf2765-3ad4-4568-a40d-5b1e87f99941" ], "Server": [ + "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "f8d15917-90bd-4e2d-88f9-cc7f6259f868" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "4c6eecd9-d86e-45b3-ba43-aa5205b5ba31" + "c1b1cc9f-ee6b-4207-af64-547168711170" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T045813Z:4c6eecd9-d86e-45b3-ba43-aa5205b5ba31" + "WESTUS2:20190411T163032Z:c1b1cc9f-ee6b-4207-af64-547168711170" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 11 Apr 2019 16:30:31 GMT" ], "Expires": [ "-1" ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", + "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg39/providers/Microsoft.ApiManagement/service/sdktestapim9652?api-version=2019-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3RhcGltOTY1Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "dc6b49c4-5e4a-410a-a2de-5b8f0bd61928" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27414.06", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 02 Apr 2019 04:59:14 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "8bca5217-2919-410a-aa45-17ec5336dcab" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "6f768357-a88a-4e8b-9772-7bc60d5553a4" ], "x-ms-correlation-request-id": [ - "87039659-970a-4e5c-abd2-6867f99b15d4" + "6f768357-a88a-4e8b-9772-7bc60d5553a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190402T045914Z:87039659-970a-4e5c-abd2-6867f99b15d4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:00:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "WESTUS2:20190411T163032Z:6f768357-a88a-4e8b-9772-7bc60d5553a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "da733c7c-8962-4b0c-82f1-60e74b0dad0d" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "33663fb2-1557-479c-ac00-7979aeff5f06" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T050014Z:33663fb2-1557-479c-ac00-7979aeff5f06" - ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Tue, 02 Apr 2019 05:01:14 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Thu, 11 Apr 2019 16:30:31 GMT" ], - "x-ms-request-id": [ - "5b82fd1b-44a3-4986-b17b-ef3e5229ba74" + "Content-Type": [ + "application/json; charset=utf-8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-correlation-request-id": [ - "b296ca22-f863-4a57-9f66-b5fab8c325c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T050114Z:b296ca22-f863-4a57-9f66-b5fab8c325c7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:02:14 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "bb6b7a3d-acdc-4087-81a6-b4c8e0fed151" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-correlation-request-id": [ - "746b253b-518c-446f-b561-1b5939abc0de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T050215Z:746b253b-518c-446f-b561-1b5939abc0de" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:03:15 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "1c6a2921-4b8d-4557-89cb-fb5da9158213" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "d17ea20d-b011-4d14-bb4b-ebf4ad1b4af6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T050315Z:d17ea20d-b011-4d14-bb4b-ebf4ad1b4af6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:04:16 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "e75c1d97-a69a-4a99-b74c-8c6fe5ae89ec" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "baa20209-03ed-470c-9b23-c41b53d55e5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T050416Z:baa20209-03ed-470c-9b23-c41b53d55e5e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:05:15 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "32992908-ef11-4380-90b1-7249d2d94965" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-correlation-request-id": [ - "01d15ec8-4dea-4863-9bb3-6c2f46e3b3f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T050516Z:01d15ec8-4dea-4863-9bb3-6c2f46e3b3f2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:06:16 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "cc494c85-e8e0-4662-b0f6-b5cb59739302" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "f7a7ed36-2149-4add-aa99-e731ea35e1e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T050617Z:f7a7ed36-2149-4add-aa99-e731ea35e1e6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:07:17 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "1ac44fd1-be07-4ab0-bfcd-ba30f020b94a" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "3b343583-64be-4733-9908-101bed4b1d5b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T050717Z:3b343583-64be-4733-9908-101bed4b1d5b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:08:17 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "4f6ed92e-b38c-4e9f-88d2-d9fd840e8f55" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-correlation-request-id": [ - "addf6bba-94df-4fa8-ac6b-cad0bab8e502" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T050818Z:addf6bba-94df-4fa8-ac6b-cad0bab8e502" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:09:18 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "c417c8ed-7e23-4136-aab4-20204f15ccec" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "664a1961-f8e1-48ff-a201-fa65d52c0b6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T050918Z:664a1961-f8e1-48ff-a201-fa65d52c0b6f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:10:18 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "aa764360-5ed4-45a3-b9eb-21bb33db9fbf" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "f990f26e-cb50-46f2-8c89-4e99bbac9bc8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T051019Z:f990f26e-cb50-46f2-8c89-4e99bbac9bc8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:11:18 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "b0f577db-f11e-47c4-9ad7-47eccadfe6a2" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "5b405892-d616-4ca1-8164-5fd4fc448ffe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T051119Z:5b405892-d616-4ca1-8164-5fd4fc448ffe" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:12:18 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "48b7f010-671b-4ad1-9ce4-6140802bc86a" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-correlation-request-id": [ - "135b3d4d-cbae-4ed0-87ba-e4526df0880b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T051219Z:135b3d4d-cbae-4ed0-87ba-e4526df0880b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:13:19 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "9879d128-403e-4e36-9131-b04d738a2ea7" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "ad9b018e-c473-4435-8ef4-b7fbf9f383b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T051320Z:ad9b018e-c473-4435-8ef4-b7fbf9f383b7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:14:19 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "60a401aa-963c-4142-9b1f-f9f48cf77a16" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-correlation-request-id": [ - "7736e21e-3bb8-4da5-9d51-4d0f32294574" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T051420Z:7736e21e-3bb8-4da5-9d51-4d0f32294574" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:15:20 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "ee96b61a-0abf-4456-8cdd-ac8330c2c87e" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "0d864cf9-dcfa-4618-8d83-bdded60e8a92" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T051521Z:0d864cf9-dcfa-4618-8d83-bdded60e8a92" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:16:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "a3b82421-30c4-4f2e-b64c-a211a79f187d" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-correlation-request-id": [ - "5cf73e33-bc3c-4747-833d-8df19156e1b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T051621Z:5cf73e33-bc3c-4747-833d-8df19156e1b7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:17:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "f3410eed-1a4e-406f-a91d-7124c2b680b4" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "b11415b5-8be1-4528-9e63-c3e1459e1e95" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T051721Z:b11415b5-8be1-4528-9e63-c3e1459e1e95" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:18:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "72be3907-d706-4556-b3d1-73c7f1869554" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "10d998f8-e787-49b4-9d29-536d6726887a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T051822Z:10d998f8-e787-49b4-9d29-536d6726887a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:19:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01" - ], - "Retry-After": [ - "60" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "9a4d4fd6-727b-4923-9f62-24da5919edac" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "3e1b532c-91ff-4e73-bc5a-439f36095801" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T051923Z:3e1b532c-91ff-4e73-bc5a-439f36095801" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438/operationresults/c2RrdGVzdGFwaW01NDM4X0FjdF83NDQ3NzhmNQ==?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4L29wZXJhdGlvbnJlc3VsdHMvYzJScmRHVnpkR0Z3YVcwMU5ETTRYMEZqZEY4M05EUTNOemhtTlE9PT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:20:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "b3e8cc32-ad9a-4fd9-b116-8cc0ef9bafc2" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "aaa130f4-2f6f-4d79-a129-cf256c41ebca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T052025Z:aaa130f4-2f6f-4d79-a129-cf256c41ebca" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "1962" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438\",\r\n \"name\": \"sdktestapim5438\",\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\": \"AAAAAAFtq+g=\",\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\": \"2019-04-02T04:54:11.3137388Z\",\r\n \"gatewayUrl\": \"https://sdktestapim5438.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestapim5438-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestapim5438.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestapim5438.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestapim5438.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"23.99.219.109\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"f3a4f147-dbe8-4d55-b90d-b737b32ef11f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d5681b74-2dfe-497c-9929-2792232200a7" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:20:25 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "52e1526a-cddf-4d01-a631-7c91d8ff1b12" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "cf627277-7e0a-4957-bcdc-84f70c412f57" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T052026Z:cf627277-7e0a-4957-bcdc-84f70c412f57" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "\"\"", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/sdktestrg7215/providers/Microsoft.ApiManagement/service/sdktestapim5438?api-version=2018-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcyMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2Uvc2RrdGVzdGFwaW01NDM4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b1179f37-efa9-4fc8-b32a-6605a297a5d0" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.6.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 02 Apr 2019 05:20:25 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "39e2c4fb-1d58-4e5b-a12b-0b7cf1497523" - ], - "x-ms-correlation-request-id": [ - "39e2c4fb-1d58-4e5b-a12b-0b7cf1497523" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190402T052026Z:39e2c4fb-1d58-4e5b-a12b-0b7cf1497523" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "-1" ], "Content-Length": [ - "164" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "162" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ApiManagement/service/sdktestapim5438' under resource group 'sdktestrg7215' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ApiManagement/service/sdktestapim9652' under resource group 'sdktestrg39' was not found.\"\r\n }\r\n}", "StatusCode": 404 } ], "Names": { "Initialize": [ - "sdktestapim5438", - "sdktestrg7215" + "sdktestapim9652", + "sdktestrg39" ] }, "Variables": { @@ -1897,8 +397,8 @@ "TestCertificate": "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", "TestCertificatePassword": "Password", "SubId": "bab08e11-7b12-4354-9fd1-4b5d64d40b68", - "ServiceName": "sdktestapim5438", + "ServiceName": "sdktestapim9652", "Location": "Central US", - "ResourceGroup": "sdktestrg7215" + "ResourceGroup": "sdktestrg39" } } \ No newline at end of file diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Customization/Models/DiagnosticContractExtension.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Customization/Models/DiagnosticContractExtension.cs new file mode 100644 index 000000000000..5a40866886f0 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Customization/Models/DiagnosticContractExtension.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Management.ApiManagement.Customization.Models +{ + public static class DiagnosticContractExtension + { + public static string LoggerIdIdentifier(this string loggerId) + { + if (!string.IsNullOrEmpty(loggerId)) + { + return $"/loggers/{loggerId}"; + } + return null; + } + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Customization/Models/SubscriptionContract.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Customization/Models/SubscriptionContract.cs index 0821821bb4bc..455dbdfbc7a7 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Customization/Models/SubscriptionContract.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Customization/Models/SubscriptionContract.cs @@ -11,31 +11,30 @@ namespace Microsoft.Azure.Management.ApiManagement.Models /// public partial class SubscriptionContract { - public string ProductIdentifier + public string ScopeIdentifier { get { - if (!string.IsNullOrEmpty(this.ProductId)) + if (!string.IsNullOrEmpty(this.Scope)) { - return this.ProductId.Split(new[] { '/' }).Last(); + return this.Scope.Split(new[] { '/' }).Last(); } return null; } } - public string UserIdentifier + public string OwnerIdentifier { get { - if (!string.IsNullOrEmpty(this.UserId)) + if (!string.IsNullOrEmpty(this.OwnerId)) { - return this.UserId.Split(new[] { '/' }).Last(); + return this.OwnerId.Split(new[] { '/' }).Last(); } return null; } } - } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiDiagnosticLoggerOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiDiagnosticLoggerOperationsExtensions.cs deleted file mode 100644 index 55b8fba013be..000000000000 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiDiagnosticLoggerOperationsExtensions.cs +++ /dev/null @@ -1,307 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.ApiManagement -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Microsoft.Rest.Azure.OData; - using Models; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for ApiDiagnosticLoggerOperations. - /// - public static partial class ApiDiagnosticLoggerOperationsExtensions - { - /// - /// Lists all loggers associated with the specified Diagnostic of an API. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// API identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// OData parameters to apply to the operation. - /// - public static IPage ListByService(this IApiDiagnosticLoggerOperations operations, string resourceGroupName, string serviceName, string apiId, string diagnosticId, ODataQuery odataQuery = default(ODataQuery)) - { - return operations.ListByServiceAsync(resourceGroupName, serviceName, apiId, diagnosticId, odataQuery).GetAwaiter().GetResult(); - } - - /// - /// Lists all loggers associated with the specified Diagnostic of an API. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// API identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// OData parameters to apply to the operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListByServiceAsync(this IApiDiagnosticLoggerOperations operations, string resourceGroupName, string serviceName, string apiId, string diagnosticId, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, diagnosticId, odataQuery, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Checks that logger entity specified by identifier is associated with the - /// diagnostics entity. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// API identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service instance. - /// - public static bool CheckEntityExists(this IApiDiagnosticLoggerOperations operations, string resourceGroupName, string serviceName, string apiId, string diagnosticId, string loggerid) - { - return operations.CheckEntityExistsAsync(resourceGroupName, serviceName, apiId, diagnosticId, loggerid).GetAwaiter().GetResult(); - } - - /// - /// Checks that logger entity specified by identifier is associated with the - /// diagnostics entity. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// API identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service instance. - /// - /// - /// The cancellation token. - /// - public static async Task CheckEntityExistsAsync(this IApiDiagnosticLoggerOperations operations, string resourceGroupName, string serviceName, string apiId, string diagnosticId, string loggerid, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.CheckEntityExistsWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, diagnosticId, loggerid, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Attaches a logger to a diagnostic for an API. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// API identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service instance. - /// - public static LoggerContract CreateOrUpdate(this IApiDiagnosticLoggerOperations operations, string resourceGroupName, string serviceName, string apiId, string diagnosticId, string loggerid) - { - return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, apiId, diagnosticId, loggerid).GetAwaiter().GetResult(); - } - - /// - /// Attaches a logger to a diagnostic for an API. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// API identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service instance. - /// - /// - /// The cancellation token. - /// - public static async Task CreateOrUpdateAsync(this IApiDiagnosticLoggerOperations operations, string resourceGroupName, string serviceName, string apiId, string diagnosticId, string loggerid, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, diagnosticId, loggerid, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Deletes the specified Logger from Diagnostic for an API. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// API identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service instance. - /// - public static void Delete(this IApiDiagnosticLoggerOperations operations, string resourceGroupName, string serviceName, string apiId, string diagnosticId, string loggerid) - { - operations.DeleteAsync(resourceGroupName, serviceName, apiId, diagnosticId, loggerid).GetAwaiter().GetResult(); - } - - /// - /// Deletes the specified Logger from Diagnostic for an API. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// API identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service instance. - /// - /// - /// The cancellation token. - /// - public static async Task DeleteAsync(this IApiDiagnosticLoggerOperations operations, string resourceGroupName, string serviceName, string apiId, string diagnosticId, string loggerid, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, diagnosticId, loggerid, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Lists all loggers associated with the specified Diagnostic of an API. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListByServiceNext(this IApiDiagnosticLoggerOperations operations, string nextPageLink) - { - return operations.ListByServiceNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Lists all loggers associated with the specified Diagnostic of an API. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListByServiceNextAsync(this IApiDiagnosticLoggerOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListByServiceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiDiagnosticOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiDiagnosticOperations.cs index a8334e85bc3a..d3a0c0fc2342 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiDiagnosticOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiDiagnosticOperations.cs @@ -127,9 +127,9 @@ internal ApiDiagnosticOperations(ApiManagementClient client) { 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) @@ -369,9 +369,9 @@ internal ApiDiagnosticOperations(ApiManagementClient client) { 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 (diagnosticId == null) @@ -388,9 +388,9 @@ internal ApiDiagnosticOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "diagnosticId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -620,9 +620,9 @@ internal ApiDiagnosticOperations(ApiManagementClient client) { 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 (diagnosticId == null) @@ -639,9 +639,9 @@ internal ApiDiagnosticOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "diagnosticId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -857,7 +857,7 @@ internal ApiDiagnosticOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string diagnosticId, DiagnosticContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string diagnosticId, DiagnosticContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -896,9 +896,9 @@ internal ApiDiagnosticOperations(ApiManagementClient client) { 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 (diagnosticId == null) @@ -915,9 +915,9 @@ internal ApiDiagnosticOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "diagnosticId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1067,7 +1067,7 @@ internal ApiDiagnosticOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1110,6 +1110,19 @@ internal ApiDiagnosticOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1200,9 +1213,9 @@ internal ApiDiagnosticOperations(ApiManagementClient client) { 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 (diagnosticId == null) @@ -1219,9 +1232,9 @@ internal ApiDiagnosticOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "diagnosticId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1464,9 +1477,9 @@ internal ApiDiagnosticOperations(ApiManagementClient client) { 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 (diagnosticId == null) @@ -1483,9 +1496,9 @@ internal ApiDiagnosticOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "diagnosticId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiExportOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiExportOperations.cs index 98ef030f2eb4..6f0f1c957d3d 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiExportOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiExportOperations.cs @@ -67,7 +67,8 @@ internal ApiExportOperations(ApiManagementClient client) /// /// /// Format in which to export the Api Details to the Storage Blob with Sas Key - /// valid for 5 minutes. Possible values include: 'Swagger', 'Wsdl', 'Wadl' + /// valid for 5 minutes. Possible values include: 'Swagger', 'Wsdl', 'Wadl', + /// 'Openapi' /// /// /// Headers that will be added to request. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiExportOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiExportOperationsExtensions.cs index da753734c3dc..d6c390ba468c 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiExportOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiExportOperationsExtensions.cs @@ -41,7 +41,8 @@ public static partial class ApiExportOperationsExtensions /// /// /// Format in which to export the Api Details to the Storage Blob with Sas Key - /// valid for 5 minutes. Possible values include: 'Swagger', 'Wsdl', 'Wadl' + /// valid for 5 minutes. Possible values include: 'Swagger', 'Wsdl', 'Wadl', + /// 'Openapi' /// public static ApiExportResult Get(this IApiExportOperations operations, string resourceGroupName, string serviceName, string apiId, string format) { @@ -68,7 +69,8 @@ public static ApiExportResult Get(this IApiExportOperations operations, string r /// /// /// Format in which to export the Api Details to the Storage Blob with Sas Key - /// valid for 5 minutes. Possible values include: 'Swagger', 'Wsdl', 'Wadl' + /// valid for 5 minutes. Possible values include: 'Swagger', 'Wsdl', 'Wadl', + /// 'Openapi' /// /// /// The cancellation token. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueAttachmentOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueAttachmentOperations.cs index 0eada41f6293..fc0bee5c1047 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueAttachmentOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueAttachmentOperations.cs @@ -52,7 +52,7 @@ internal ApiIssueAttachmentOperations(ApiManagementClient client) public ApiManagementClient Client { get; private set; } /// - /// Lists all comments for the Issue associated with the specified API. + /// Lists all attachments for the Issue associated with the specified API. /// /// /// The name of the resource group. @@ -131,15 +131,11 @@ internal ApiIssueAttachmentOperations(ApiManagementClient client) { 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) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (issueId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "issueId"); @@ -159,6 +155,10 @@ internal ApiIssueAttachmentOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "issueId", "^[^*#&+:<>?]+$"); } } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); @@ -397,9 +397,9 @@ internal ApiIssueAttachmentOperations(ApiManagementClient client) { 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 (issueId == null) @@ -673,9 +673,9 @@ internal ApiIssueAttachmentOperations(ApiManagementClient client) { 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 (issueId == null) @@ -911,9 +911,8 @@ internal ApiIssueAttachmentOperations(ApiManagementClient client) /// Create parameters. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional - /// update. + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. /// /// /// Headers that will be added to request. @@ -936,7 +935,7 @@ internal ApiIssueAttachmentOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, string attachmentId, IssueAttachmentContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, string attachmentId, IssueAttachmentContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -975,9 +974,9 @@ internal ApiIssueAttachmentOperations(ApiManagementClient client) { 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 (issueId == null) @@ -1167,7 +1166,7 @@ internal ApiIssueAttachmentOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1210,6 +1209,19 @@ internal ApiIssueAttachmentOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1238,8 +1250,8 @@ internal ApiIssueAttachmentOperations(ApiManagementClient client) /// Attachment identifier within an Issue. Must be unique in the current Issue. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional /// update. /// /// @@ -1299,9 +1311,9 @@ internal ApiIssueAttachmentOperations(ApiManagementClient client) { 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 (issueId == null) @@ -1495,7 +1507,7 @@ internal ApiIssueAttachmentOperations(ApiManagementClient client) } /// - /// Lists all comments for the Issue associated with the specified API. + /// Lists all attachments for the Issue associated with the specified API. /// /// /// The NextLink from the previous successful call to List operation. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueAttachmentOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueAttachmentOperationsExtensions.cs index a5a4c71b46f8..02f2a8d98fc3 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueAttachmentOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueAttachmentOperationsExtensions.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Management.ApiManagement public static partial class ApiIssueAttachmentOperationsExtensions { /// - /// Lists all comments for the Issue associated with the specified API. + /// Lists all attachments for the Issue associated with the specified API. /// /// /// The operations group for this extension method. @@ -51,7 +51,7 @@ public static partial class ApiIssueAttachmentOperationsExtensions } /// - /// Lists all comments for the Issue associated with the specified API. + /// Lists all attachments for the Issue associated with the specified API. /// /// /// The operations group for this extension method. @@ -240,9 +240,8 @@ public static IssueAttachmentContract Get(this IApiIssueAttachmentOperations ope /// Create parameters. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional - /// update. + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. /// public static IssueAttachmentContract CreateOrUpdate(this IApiIssueAttachmentOperations operations, string resourceGroupName, string serviceName, string apiId, string issueId, string attachmentId, IssueAttachmentContract parameters, string ifMatch = default(string)) { @@ -277,9 +276,8 @@ public static IssueAttachmentContract Get(this IApiIssueAttachmentOperations ope /// Create parameters. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional - /// update. + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. /// /// /// The cancellation token. @@ -316,8 +314,8 @@ public static IssueAttachmentContract Get(this IApiIssueAttachmentOperations ope /// Attachment identifier within an Issue. Must be unique in the current Issue. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional /// update. /// public static void Delete(this IApiIssueAttachmentOperations operations, string resourceGroupName, string serviceName, string apiId, string issueId, string attachmentId, string ifMatch) @@ -349,8 +347,8 @@ public static void Delete(this IApiIssueAttachmentOperations operations, string /// Attachment identifier within an Issue. Must be unique in the current Issue. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional /// update. /// /// @@ -362,7 +360,7 @@ public static void Delete(this IApiIssueAttachmentOperations operations, string } /// - /// Lists all comments for the Issue associated with the specified API. + /// Lists all attachments for the Issue associated with the specified API. /// /// /// The operations group for this extension method. @@ -376,7 +374,7 @@ public static IPage ListByServiceNext(this IApiIssueAtt } /// - /// Lists all comments for the Issue associated with the specified API. + /// Lists all attachments for the Issue associated with the specified API. /// /// /// The operations group for this extension method. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueCommentOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueCommentOperations.cs index 13a3f542b50b..bcaa231a01fc 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueCommentOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueCommentOperations.cs @@ -131,15 +131,11 @@ internal ApiIssueCommentOperations(ApiManagementClient client) { 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) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (issueId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "issueId"); @@ -159,6 +155,10 @@ internal ApiIssueCommentOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "issueId", "^[^*#&+:<>?]+$"); } } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); @@ -397,9 +397,9 @@ internal ApiIssueCommentOperations(ApiManagementClient client) { 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 (issueId == null) @@ -673,9 +673,9 @@ internal ApiIssueCommentOperations(ApiManagementClient client) { 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 (issueId == null) @@ -910,9 +910,8 @@ internal ApiIssueCommentOperations(ApiManagementClient client) /// Create parameters. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional - /// update. + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. /// /// /// Headers that will be added to request. @@ -935,7 +934,7 @@ internal ApiIssueCommentOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, string commentId, IssueCommentContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, string commentId, IssueCommentContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -974,9 +973,9 @@ internal ApiIssueCommentOperations(ApiManagementClient client) { 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 (issueId == null) @@ -1166,7 +1165,7 @@ internal ApiIssueCommentOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1209,6 +1208,19 @@ internal ApiIssueCommentOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1237,8 +1249,8 @@ internal ApiIssueCommentOperations(ApiManagementClient client) /// Comment identifier within an Issue. Must be unique in the current Issue. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional /// update. /// /// @@ -1298,9 +1310,9 @@ internal ApiIssueCommentOperations(ApiManagementClient client) { 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 (issueId == null) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueCommentOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueCommentOperationsExtensions.cs index cea4d4278bda..1d3b7e830736 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueCommentOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueCommentOperationsExtensions.cs @@ -239,9 +239,8 @@ public static IssueCommentContract Get(this IApiIssueCommentOperations operation /// Create parameters. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional - /// update. + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. /// public static IssueCommentContract CreateOrUpdate(this IApiIssueCommentOperations operations, string resourceGroupName, string serviceName, string apiId, string issueId, string commentId, IssueCommentContract parameters, string ifMatch = default(string)) { @@ -275,9 +274,8 @@ public static IssueCommentContract Get(this IApiIssueCommentOperations operation /// Create parameters. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional - /// update. + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. /// /// /// The cancellation token. @@ -314,8 +312,8 @@ public static IssueCommentContract Get(this IApiIssueCommentOperations operation /// Comment identifier within an Issue. Must be unique in the current Issue. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional /// update. /// public static void Delete(this IApiIssueCommentOperations operations, string resourceGroupName, string serviceName, string apiId, string issueId, string commentId, string ifMatch) @@ -347,8 +345,8 @@ public static void Delete(this IApiIssueCommentOperations operations, string res /// Comment identifier within an Issue. Must be unique in the current Issue. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional /// update. /// /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueOperations.cs index 482c8d07ddd9..6436747d0116 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueOperations.cs @@ -67,6 +67,9 @@ internal ApiIssueOperations(ApiManagementClient client) /// /// OData parameters to apply to the operation. /// + /// + /// Expand the comment attachments. + /// /// /// Headers that will be added to request. /// @@ -88,7 +91,7 @@ internal ApiIssueOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), bool? expandCommentsAttachments = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -127,9 +130,9 @@ internal ApiIssueOperations(ApiManagementClient client) { 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) @@ -151,6 +154,7 @@ internal ApiIssueOperations(ApiManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("apiId", apiId); + tracingParameters.Add("expandCommentsAttachments", expandCommentsAttachments); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByService", tracingParameters); } @@ -170,6 +174,10 @@ internal ApiIssueOperations(ApiManagementClient client) _queryParameters.Add(_odataFilter); } } + if (expandCommentsAttachments != null) + { + _queryParameters.Add(string.Format("expandCommentsAttachments={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expandCommentsAttachments, Client.SerializationSettings).Trim('"')))); + } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -369,9 +377,9 @@ internal ApiIssueOperations(ApiManagementClient client) { 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 (issueId == null) @@ -560,6 +568,9 @@ internal ApiIssueOperations(ApiManagementClient client) /// Issue identifier. Must be unique in the current API Management service /// instance. /// + /// + /// Expand the comment attachments. + /// /// /// Headers that will be added to request. /// @@ -581,7 +592,7 @@ internal ApiIssueOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, bool? expandCommentsAttachments = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -620,9 +631,9 @@ internal ApiIssueOperations(ApiManagementClient client) { 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 (issueId == null) @@ -663,6 +674,7 @@ internal ApiIssueOperations(ApiManagementClient client) tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("apiId", apiId); tracingParameters.Add("issueId", issueId); + tracingParameters.Add("expandCommentsAttachments", expandCommentsAttachments); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -675,6 +687,10 @@ internal ApiIssueOperations(ApiManagementClient client) _url = _url.Replace("{issueId}", System.Uri.EscapeDataString(issueId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); + if (expandCommentsAttachments != null) + { + _queryParameters.Add(string.Format("expandCommentsAttachments={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expandCommentsAttachments, Client.SerializationSettings).Trim('"')))); + } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -833,9 +849,8 @@ internal ApiIssueOperations(ApiManagementClient client) /// Create parameters. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional - /// update. + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. /// /// /// Headers that will be added to request. @@ -858,7 +873,7 @@ internal ApiIssueOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, IssueContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, IssueContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -897,9 +912,9 @@ internal ApiIssueOperations(ApiManagementClient client) { 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 (issueId == null) @@ -1068,7 +1083,7 @@ internal ApiIssueOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1111,6 +1126,19 @@ internal ApiIssueOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1139,8 +1167,8 @@ internal ApiIssueOperations(ApiManagementClient client) /// Update parameters. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional /// update. /// /// @@ -1161,7 +1189,7 @@ internal ApiIssueOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, IssueUpdateContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, IssueUpdateContract parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1200,9 +1228,9 @@ internal ApiIssueOperations(ApiManagementClient client) { 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 (issueId == null) @@ -1228,6 +1256,10 @@ internal ApiIssueOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } + if (ifMatch == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ifMatch"); + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -1399,8 +1431,8 @@ internal ApiIssueOperations(ApiManagementClient client) /// instance. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional /// update. /// /// @@ -1460,9 +1492,9 @@ internal ApiIssueOperations(ApiManagementClient client) { 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 (issueId == null) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueOperationsExtensions.cs index 859b9271919f..5dea01ca09f2 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiIssueOperationsExtensions.cs @@ -41,9 +41,12 @@ public static partial class ApiIssueOperationsExtensions /// /// OData parameters to apply to the operation. /// - public static IPage ListByService(this IApiIssueOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery)) + /// + /// Expand the comment attachments. + /// + public static IPage ListByService(this IApiIssueOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), bool? expandCommentsAttachments = default(bool?)) { - return operations.ListByServiceAsync(resourceGroupName, serviceName, apiId, odataQuery).GetAwaiter().GetResult(); + return operations.ListByServiceAsync(resourceGroupName, serviceName, apiId, odataQuery, expandCommentsAttachments).GetAwaiter().GetResult(); } /// @@ -65,12 +68,15 @@ public static partial class ApiIssueOperationsExtensions /// /// OData parameters to apply to the operation. /// + /// + /// Expand the comment attachments. + /// /// /// The cancellation token. /// - public static async Task> ListByServiceAsync(this IApiIssueOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServiceAsync(this IApiIssueOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), bool? expandCommentsAttachments = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, odataQuery, expandCommentsAttachments, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -154,9 +160,12 @@ public static ApiIssueGetEntityTagHeaders GetEntityTag(this IApiIssueOperations /// Issue identifier. Must be unique in the current API Management service /// instance. /// - public static IssueContract Get(this IApiIssueOperations operations, string resourceGroupName, string serviceName, string apiId, string issueId) + /// + /// Expand the comment attachments. + /// + public static IssueContract Get(this IApiIssueOperations operations, string resourceGroupName, string serviceName, string apiId, string issueId, bool? expandCommentsAttachments = default(bool?)) { - return operations.GetAsync(resourceGroupName, serviceName, apiId, issueId).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, serviceName, apiId, issueId, expandCommentsAttachments).GetAwaiter().GetResult(); } /// @@ -179,12 +188,15 @@ public static IssueContract Get(this IApiIssueOperations operations, string reso /// Issue identifier. Must be unique in the current API Management service /// instance. /// + /// + /// Expand the comment attachments. + /// /// /// The cancellation token. /// - public static async Task GetAsync(this IApiIssueOperations operations, string resourceGroupName, string serviceName, string apiId, string issueId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IApiIssueOperations operations, string resourceGroupName, string serviceName, string apiId, string issueId, bool? expandCommentsAttachments = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, issueId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, issueId, expandCommentsAttachments, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -214,9 +226,8 @@ public static IssueContract Get(this IApiIssueOperations operations, string reso /// Create parameters. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional - /// update. + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. /// public static IssueContract CreateOrUpdate(this IApiIssueOperations operations, string resourceGroupName, string serviceName, string apiId, string issueId, IssueContract parameters, string ifMatch = default(string)) { @@ -247,9 +258,8 @@ public static IssueContract Get(this IApiIssueOperations operations, string reso /// Create parameters. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional - /// update. + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. /// /// /// The cancellation token. @@ -286,11 +296,11 @@ public static IssueContract Get(this IApiIssueOperations operations, string reso /// Update parameters. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional /// update. /// - public static void Update(this IApiIssueOperations operations, string resourceGroupName, string serviceName, string apiId, string issueId, IssueUpdateContract parameters, string ifMatch = default(string)) + public static void Update(this IApiIssueOperations operations, string resourceGroupName, string serviceName, string apiId, string issueId, IssueUpdateContract parameters, string ifMatch) { operations.UpdateAsync(resourceGroupName, serviceName, apiId, issueId, parameters, ifMatch).GetAwaiter().GetResult(); } @@ -319,14 +329,14 @@ public static IssueContract Get(this IApiIssueOperations operations, string reso /// Update parameters. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional /// update. /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IApiIssueOperations operations, string resourceGroupName, string serviceName, string apiId, string issueId, IssueUpdateContract parameters, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IApiIssueOperations operations, string resourceGroupName, string serviceName, string apiId, string issueId, IssueUpdateContract parameters, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) { (await operations.UpdateWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, issueId, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); } @@ -352,8 +362,8 @@ public static IssueContract Get(this IApiIssueOperations operations, string reso /// instance. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional /// update. /// public static void Delete(this IApiIssueOperations operations, string resourceGroupName, string serviceName, string apiId, string issueId, string ifMatch) @@ -382,8 +392,8 @@ public static void Delete(this IApiIssueOperations operations, string resourceGr /// instance. /// /// - /// ETag of the Issue Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for unconditional + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional /// update. /// /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiManagementClient.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiManagementClient.cs index 972d8de602c4..f359a120a5cd 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiManagementClient.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiManagementClient.cs @@ -76,30 +76,15 @@ public partial class ApiManagementClient : ServiceClient, I /// public bool? GenerateClientRequestId { get; set; } - /// - /// Gets the IPolicyOperations. - /// - public virtual IPolicyOperations Policy { get; private set; } - - /// - /// Gets the IPolicySnippetsOperations. - /// - public virtual IPolicySnippetsOperations PolicySnippets { get; private set; } - - /// - /// Gets the IRegionsOperations. - /// - public virtual IRegionsOperations Regions { get; private set; } - /// /// Gets the IApiOperations. /// public virtual IApiOperations Api { get; private set; } /// - /// Gets the IApiRevisionsOperations. + /// Gets the IApiRevisionOperations. /// - public virtual IApiRevisionsOperations ApiRevisions { get; private set; } + public virtual IApiRevisionOperations ApiRevision { get; private set; } /// /// Gets the IApiReleaseOperations. @@ -116,6 +101,11 @@ public partial class ApiManagementClient : ServiceClient, I /// public virtual IApiOperationPolicyOperations ApiOperationPolicy { get; private set; } + /// + /// Gets the ITagOperations. + /// + public virtual ITagOperations Tag { get; private set; } + /// /// Gets the IApiProductOperations. /// @@ -136,11 +126,6 @@ public partial class ApiManagementClient : ServiceClient, I /// public virtual IApiDiagnosticOperations ApiDiagnostic { get; private set; } - /// - /// Gets the IApiDiagnosticLoggerOperations. - /// - public virtual IApiDiagnosticLoggerOperations ApiDiagnosticLogger { get; private set; } - /// /// Gets the IApiIssueOperations. /// @@ -156,6 +141,21 @@ public partial class ApiManagementClient : ServiceClient, I /// public virtual IApiIssueAttachmentOperations ApiIssueAttachment { get; private set; } + /// + /// Gets the IApiTagDescriptionOperations. + /// + public virtual IApiTagDescriptionOperations ApiTagDescription { get; private set; } + + /// + /// Gets the IOperationOperations. + /// + public virtual IOperationOperations Operation { get; private set; } + + /// + /// Gets the IApiVersionSetOperations. + /// + public virtual IApiVersionSetOperations ApiVersionSet { get; private set; } + /// /// Gets the IAuthorizationServerOperations. /// @@ -166,6 +166,11 @@ public partial class ApiManagementClient : ServiceClient, I /// public virtual IBackendOperations Backend { get; private set; } + /// + /// Gets the ICacheOperations. + /// + public virtual ICacheOperations Cache { get; private set; } + /// /// Gets the ICertificateOperations. /// @@ -191,11 +196,6 @@ public partial class ApiManagementClient : ServiceClient, I /// public virtual IDiagnosticOperations Diagnostic { get; private set; } - /// - /// Gets the IDiagnosticLoggerOperations. - /// - public virtual IDiagnosticLoggerOperations DiagnosticLogger { get; private set; } - /// /// Gets the IEmailTemplateOperations. /// @@ -216,11 +216,21 @@ public partial class ApiManagementClient : ServiceClient, I /// public virtual IIdentityProviderOperations IdentityProvider { get; private set; } + /// + /// Gets the IIssueOperations. + /// + public virtual IIssueOperations Issue { get; private set; } + /// /// Gets the ILoggerOperations. /// public virtual ILoggerOperations Logger { get; private set; } + /// + /// Gets the INetworkStatusOperations. + /// + public virtual INetworkStatusOperations NetworkStatus { get; private set; } + /// /// Gets the INotificationOperations. /// @@ -237,14 +247,19 @@ public partial class ApiManagementClient : ServiceClient, I public virtual INotificationRecipientEmailOperations NotificationRecipientEmail { get; private set; } /// - /// Gets the INetworkStatusOperations. + /// Gets the IOpenIdConnectProviderOperations. /// - public virtual INetworkStatusOperations NetworkStatus { get; private set; } + public virtual IOpenIdConnectProviderOperations OpenIdConnectProvider { get; private set; } /// - /// Gets the IOpenIdConnectProviderOperations. + /// Gets the IPolicyOperations. /// - public virtual IOpenIdConnectProviderOperations OpenIdConnectProvider { get; private set; } + public virtual IPolicyOperations Policy { get; private set; } + + /// + /// Gets the IPolicySnippetOperations. + /// + public virtual IPolicySnippetOperations PolicySnippet { get; private set; } /// /// Gets the ISignInSettingsOperations. @@ -301,6 +316,11 @@ public partial class ApiManagementClient : ServiceClient, I /// public virtual IQuotaByPeriodKeysOperations QuotaByPeriodKeys { get; private set; } + /// + /// Gets the IRegionOperations. + /// + public virtual IRegionOperations Region { get; private set; } + /// /// Gets the IReportsOperations. /// @@ -316,21 +336,6 @@ public partial class ApiManagementClient : ServiceClient, I /// public virtual ITagResourceOperations TagResource { get; private set; } - /// - /// Gets the ITagOperations. - /// - public virtual ITagOperations Tag { get; private set; } - - /// - /// Gets the ITagDescriptionOperations. - /// - public virtual ITagDescriptionOperations TagDescription { get; private set; } - - /// - /// Gets the IOperationOperations. - /// - public virtual IOperationOperations Operation { get; private set; } - /// /// Gets the ITenantAccessOperations. /// @@ -367,9 +372,9 @@ public partial class ApiManagementClient : ServiceClient, I public virtual IUserIdentitiesOperations UserIdentities { get; private set; } /// - /// Gets the IApiVersionSetOperations. + /// Gets the IUserConfirmationPasswordOperations. /// - public virtual IApiVersionSetOperations ApiVersionSet { get; private set; } + public virtual IUserConfirmationPasswordOperations UserConfirmationPassword { get; private set; } /// /// Gets the IApiExportOperations. @@ -617,40 +622,43 @@ public ApiManagementClient(System.Uri baseUri, ServiceClientCredentials credenti /// private void Initialize() { - Policy = new PolicyOperations(this); - PolicySnippets = new PolicySnippetsOperations(this); - Regions = new RegionsOperations(this); Api = new ApiOperations(this); - ApiRevisions = new ApiRevisionsOperations(this); + ApiRevision = new ApiRevisionOperations(this); ApiRelease = new ApiReleaseOperations(this); ApiOperation = new ApiOperationOperations(this); ApiOperationPolicy = new ApiOperationPolicyOperations(this); + Tag = new TagOperations(this); ApiProduct = new ApiProductOperations(this); ApiPolicy = new ApiPolicyOperations(this); ApiSchema = new ApiSchemaOperations(this); ApiDiagnostic = new ApiDiagnosticOperations(this); - ApiDiagnosticLogger = new ApiDiagnosticLoggerOperations(this); ApiIssue = new ApiIssueOperations(this); ApiIssueComment = new ApiIssueCommentOperations(this); ApiIssueAttachment = new ApiIssueAttachmentOperations(this); + ApiTagDescription = new ApiTagDescriptionOperations(this); + Operation = new OperationOperations(this); + ApiVersionSet = new ApiVersionSetOperations(this); AuthorizationServer = new AuthorizationServerOperations(this); Backend = new BackendOperations(this); + Cache = new CacheOperations(this); Certificate = new CertificateOperations(this); ApiManagementOperations = new ApiManagementOperations(this); ApiManagementServiceSkus = new ApiManagementServiceSkusOperations(this); ApiManagementService = new ApiManagementServiceOperations(this); Diagnostic = new DiagnosticOperations(this); - DiagnosticLogger = new DiagnosticLoggerOperations(this); EmailTemplate = new EmailTemplateOperations(this); Group = new GroupOperations(this); GroupUser = new GroupUserOperations(this); IdentityProvider = new IdentityProviderOperations(this); + Issue = new IssueOperations(this); Logger = new LoggerOperations(this); + NetworkStatus = new NetworkStatusOperations(this); Notification = new NotificationOperations(this); NotificationRecipientUser = new NotificationRecipientUserOperations(this); NotificationRecipientEmail = new NotificationRecipientEmailOperations(this); - NetworkStatus = new NetworkStatusOperations(this); OpenIdConnectProvider = new OpenIdConnectProviderOperations(this); + Policy = new PolicyOperations(this); + PolicySnippet = new PolicySnippetOperations(this); SignInSettings = new SignInSettingsOperations(this); SignUpSettings = new SignUpSettingsOperations(this); DelegationSettings = new DelegationSettingsOperations(this); @@ -662,12 +670,10 @@ private void Initialize() Property = new PropertyOperations(this); QuotaByCounterKeys = new QuotaByCounterKeysOperations(this); QuotaByPeriodKeys = new QuotaByPeriodKeysOperations(this); + Region = new RegionOperations(this); Reports = new ReportsOperations(this); Subscription = new SubscriptionOperations(this); TagResource = new TagResourceOperations(this); - Tag = new TagOperations(this); - TagDescription = new TagDescriptionOperations(this); - Operation = new OperationOperations(this); TenantAccess = new TenantAccessOperations(this); TenantAccessGit = new TenantAccessGitOperations(this); TenantConfiguration = new TenantConfigurationOperations(this); @@ -675,10 +681,10 @@ private void Initialize() UserGroup = new UserGroupOperations(this); UserSubscription = new UserSubscriptionOperations(this); UserIdentities = new UserIdentitiesOperations(this); - ApiVersionSet = new ApiVersionSetOperations(this); + UserConfirmationPassword = new UserConfirmationPasswordOperations(this); ApiExport = new ApiExportOperations(this); BaseUri = new System.Uri("https://management.azure.com"); - ApiVersion = "2018-01-01"; + ApiVersion = "2019-01-01"; AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiManagementServiceOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiManagementServiceOperations.cs index 2fbd4c895b78..0f2243752094 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiManagementServiceOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiManagementServiceOperations.cs @@ -377,184 +377,16 @@ internal ApiManagementServiceOperations(ApiManagementClient client) /// The name of the API Management service. /// /// - /// Headers that will be added to request. + /// The headers that will be added to request. /// /// /// The cancellation token. /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serviceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "serviceName"); - } - if (serviceName != null) - { - if (serviceName.Length > 50) - { - throw new ValidationException(ValidationRules.MaxLength, "serviceName", 50); - } - if (serviceName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "serviceName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(serviceName, "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$")) - { - throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); - } - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (Client.ApiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, serviceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// @@ -1360,265 +1192,6 @@ internal ApiManagementServiceOperations(ApiManagementClient client) return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } - /// - /// Upload Custom Domain SSL certificate for an API Management service. This - /// operation will be deprecated in future releases. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Parameters supplied to the Upload SSL certificate for an API Management - /// service operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> UploadCertificateWithHttpMessagesAsync(string resourceGroupName, string serviceName, ApiManagementServiceUploadCertificateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serviceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "serviceName"); - } - if (serviceName != null) - { - if (serviceName.Length > 50) - { - throw new ValidationException(ValidationRules.MaxLength, "serviceName", 50); - } - if (serviceName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "serviceName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(serviceName, "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$")) - { - throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); - } - } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "UploadCertificate", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/updatecertificate").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (Client.ApiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Creates, updates, or deletes the custom hostnames for an API Management - /// service. The custom hostname can be applied to the Proxy and Portal - /// endpoint. This is a long running operation and could take several minutes - /// to complete. This operation will be deprecated in the next version update. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Parameters supplied to the UpdateHostname operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateHostnameWithHttpMessagesAsync(string resourceGroupName, string serviceName, ApiManagementServiceUpdateHostnameParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginUpdateHostnameWithHttpMessagesAsync(resourceGroupName, serviceName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - /// /// Restores a backup of an API Management service created using the /// ApiManagementService_Backup operation on the current service. This is a @@ -2323,24 +1896,6 @@ internal ApiManagementServiceOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 202) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -2574,8 +2129,7 @@ internal ApiManagementServiceOperations(ApiManagementClient client) } /// - /// Updates the Microsoft.ApiManagement resource running in the Virtual network - /// to pick the updated network settings. + /// Deletes an existing API Management service. /// /// /// The name of the resource group. @@ -2583,12 +2137,6 @@ internal ApiManagementServiceOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// Parameters supplied to the Apply Network Configuration operation. If the - /// parameters are empty, all the regions in which the Api Management service - /// is deployed will be updated sequentially without incurring downtime in the - /// region. - /// /// /// Headers that will be added to request. /// @@ -2610,7 +2158,7 @@ internal ApiManagementServiceOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginApplyNetworkConfigurationUpdatesWithHttpMessagesAsync(string resourceGroupName, string serviceName, ApiManagementServiceApplyNetworkConfigurationParameters parameters = default(ApiManagementServiceApplyNetworkConfigurationParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2652,13 +2200,12 @@ internal ApiManagementServiceOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginApplyNetworkConfigurationUpdates", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/applynetworkconfigurationupdates").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); @@ -2674,7 +2221,7 @@ internal ApiManagementServiceOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2705,12 +2252,6 @@ internal ApiManagementServiceOperations(ApiManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -2731,7 +2272,7 @@ internal ApiManagementServiceOperations(ApiManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2774,7 +2315,7 @@ internal ApiManagementServiceOperations(ApiManagementClient client) _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if ((int)_statusCode == 200) + if ((int)_statusCode == 202) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try @@ -2799,10 +2340,8 @@ internal ApiManagementServiceOperations(ApiManagementClient client) } /// - /// Creates, updates, or deletes the custom hostnames for an API Management - /// service. The custom hostname can be applied to the Proxy and Portal - /// endpoint. This is a long running operation and could take several minutes - /// to complete. This operation will be deprecated in the next version update. + /// Updates the Microsoft.ApiManagement resource running in the Virtual network + /// to pick the updated network settings. /// /// /// The name of the resource group. @@ -2811,7 +2350,10 @@ internal ApiManagementServiceOperations(ApiManagementClient client) /// The name of the API Management service. /// /// - /// Parameters supplied to the UpdateHostname operation. + /// Parameters supplied to the Apply Network Configuration operation. If the + /// parameters are empty, all the regions in which the Api Management service + /// is deployed will be updated sequentially without incurring downtime in the + /// region. /// /// /// Headers that will be added to request. @@ -2834,7 +2376,7 @@ internal ApiManagementServiceOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateHostnameWithHttpMessagesAsync(string resourceGroupName, string serviceName, ApiManagementServiceUpdateHostnameParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginApplyNetworkConfigurationUpdatesWithHttpMessagesAsync(string resourceGroupName, string serviceName, ApiManagementServiceApplyNetworkConfigurationParameters parameters = default(ApiManagementServiceApplyNetworkConfigurationParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2859,10 +2401,6 @@ internal ApiManagementServiceOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -2882,11 +2420,11 @@ internal ApiManagementServiceOperations(ApiManagementClient client) tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginUpdateHostname", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginApplyNetworkConfigurationUpdates", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/updatehostname").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/applynetworkconfigurationupdates").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); @@ -3019,24 +2557,6 @@ internal ApiManagementServiceOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 202) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiManagementServiceOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiManagementServiceOperationsExtensions.cs index 3ebca21fdc7d..4349ea656059 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiManagementServiceOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiManagementServiceOperationsExtensions.cs @@ -269,9 +269,9 @@ public static ApiManagementServiceResource Get(this IApiManagementServiceOperati /// /// The name of the API Management service. /// - public static void Delete(this IApiManagementServiceOperations operations, string resourceGroupName, string serviceName) + public static ApiManagementServiceResource Delete(this IApiManagementServiceOperations operations, string resourceGroupName, string serviceName) { - operations.DeleteAsync(resourceGroupName, serviceName).GetAwaiter().GetResult(); + return operations.DeleteAsync(resourceGroupName, serviceName).GetAwaiter().GetResult(); } /// @@ -289,9 +289,12 @@ public static void Delete(this IApiManagementServiceOperations operations, strin /// /// The cancellation token. /// - public static async Task DeleteAsync(this IApiManagementServiceOperations operations, string resourceGroupName, string serviceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IApiManagementServiceOperations operations, string resourceGroupName, string serviceName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// @@ -488,108 +491,6 @@ public static ApiManagementServiceNameAvailabilityResult CheckNameAvailability(t } } - /// - /// Upload Custom Domain SSL certificate for an API Management service. This - /// operation will be deprecated in future releases. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Parameters supplied to the Upload SSL certificate for an API Management - /// service operation. - /// - public static CertificateInformation UploadCertificate(this IApiManagementServiceOperations operations, string resourceGroupName, string serviceName, ApiManagementServiceUploadCertificateParameters parameters) - { - return operations.UploadCertificateAsync(resourceGroupName, serviceName, parameters).GetAwaiter().GetResult(); - } - - /// - /// Upload Custom Domain SSL certificate for an API Management service. This - /// operation will be deprecated in future releases. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Parameters supplied to the Upload SSL certificate for an API Management - /// service operation. - /// - /// - /// The cancellation token. - /// - public static async Task UploadCertificateAsync(this IApiManagementServiceOperations operations, string resourceGroupName, string serviceName, ApiManagementServiceUploadCertificateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.UploadCertificateWithHttpMessagesAsync(resourceGroupName, serviceName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Creates, updates, or deletes the custom hostnames for an API Management - /// service. The custom hostname can be applied to the Proxy and Portal - /// endpoint. This is a long running operation and could take several minutes - /// to complete. This operation will be deprecated in the next version update. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Parameters supplied to the UpdateHostname operation. - /// - public static ApiManagementServiceResource UpdateHostname(this IApiManagementServiceOperations operations, string resourceGroupName, string serviceName, ApiManagementServiceUpdateHostnameParameters parameters) - { - return operations.UpdateHostnameAsync(resourceGroupName, serviceName, parameters).GetAwaiter().GetResult(); - } - - /// - /// Creates, updates, or deletes the custom hostnames for an API Management - /// service. The custom hostname can be applied to the Proxy and Portal - /// endpoint. This is a long running operation and could take several minutes - /// to complete. This operation will be deprecated in the next version update. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Parameters supplied to the UpdateHostname operation. - /// - /// - /// The cancellation token. - /// - public static async Task UpdateHostnameAsync(this IApiManagementServiceOperations operations, string resourceGroupName, string serviceName, ApiManagementServiceUpdateHostnameParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.UpdateHostnameWithHttpMessagesAsync(resourceGroupName, serviceName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - /// /// Restores a backup of an API Management service created using the /// ApiManagementService_Backup operation on the current service. This is a @@ -787,8 +688,7 @@ public static ApiManagementServiceResource BeginUpdate(this IApiManagementServic } /// - /// Updates the Microsoft.ApiManagement resource running in the Virtual network - /// to pick the updated network settings. + /// Deletes an existing API Management service. /// /// /// The operations group for this extension method. @@ -799,20 +699,13 @@ public static ApiManagementServiceResource BeginUpdate(this IApiManagementServic /// /// The name of the API Management service. /// - /// - /// Parameters supplied to the Apply Network Configuration operation. If the - /// parameters are empty, all the regions in which the Api Management service - /// is deployed will be updated sequentially without incurring downtime in the - /// region. - /// - public static ApiManagementServiceResource BeginApplyNetworkConfigurationUpdates(this IApiManagementServiceOperations operations, string resourceGroupName, string serviceName, ApiManagementServiceApplyNetworkConfigurationParameters parameters = default(ApiManagementServiceApplyNetworkConfigurationParameters)) + public static ApiManagementServiceResource BeginDelete(this IApiManagementServiceOperations operations, string resourceGroupName, string serviceName) { - return operations.BeginApplyNetworkConfigurationUpdatesAsync(resourceGroupName, serviceName, parameters).GetAwaiter().GetResult(); + return operations.BeginDeleteAsync(resourceGroupName, serviceName).GetAwaiter().GetResult(); } /// - /// Updates the Microsoft.ApiManagement resource running in the Virtual network - /// to pick the updated network settings. + /// Deletes an existing API Management service. /// /// /// The operations group for this extension method. @@ -823,28 +716,20 @@ public static ApiManagementServiceResource BeginUpdate(this IApiManagementServic /// /// The name of the API Management service. /// - /// - /// Parameters supplied to the Apply Network Configuration operation. If the - /// parameters are empty, all the regions in which the Api Management service - /// is deployed will be updated sequentially without incurring downtime in the - /// region. - /// /// /// The cancellation token. /// - public static async Task BeginApplyNetworkConfigurationUpdatesAsync(this IApiManagementServiceOperations operations, string resourceGroupName, string serviceName, ApiManagementServiceApplyNetworkConfigurationParameters parameters = default(ApiManagementServiceApplyNetworkConfigurationParameters), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginDeleteAsync(this IApiManagementServiceOperations operations, string resourceGroupName, string serviceName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginApplyNetworkConfigurationUpdatesWithHttpMessagesAsync(resourceGroupName, serviceName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, serviceName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Creates, updates, or deletes the custom hostnames for an API Management - /// service. The custom hostname can be applied to the Proxy and Portal - /// endpoint. This is a long running operation and could take several minutes - /// to complete. This operation will be deprecated in the next version update. + /// Updates the Microsoft.ApiManagement resource running in the Virtual network + /// to pick the updated network settings. /// /// /// The operations group for this extension method. @@ -856,18 +741,19 @@ public static ApiManagementServiceResource BeginUpdate(this IApiManagementServic /// The name of the API Management service. /// /// - /// Parameters supplied to the UpdateHostname operation. + /// Parameters supplied to the Apply Network Configuration operation. If the + /// parameters are empty, all the regions in which the Api Management service + /// is deployed will be updated sequentially without incurring downtime in the + /// region. /// - public static ApiManagementServiceResource BeginUpdateHostname(this IApiManagementServiceOperations operations, string resourceGroupName, string serviceName, ApiManagementServiceUpdateHostnameParameters parameters) + public static ApiManagementServiceResource BeginApplyNetworkConfigurationUpdates(this IApiManagementServiceOperations operations, string resourceGroupName, string serviceName, ApiManagementServiceApplyNetworkConfigurationParameters parameters = default(ApiManagementServiceApplyNetworkConfigurationParameters)) { - return operations.BeginUpdateHostnameAsync(resourceGroupName, serviceName, parameters).GetAwaiter().GetResult(); + return operations.BeginApplyNetworkConfigurationUpdatesAsync(resourceGroupName, serviceName, parameters).GetAwaiter().GetResult(); } /// - /// Creates, updates, or deletes the custom hostnames for an API Management - /// service. The custom hostname can be applied to the Proxy and Portal - /// endpoint. This is a long running operation and could take several minutes - /// to complete. This operation will be deprecated in the next version update. + /// Updates the Microsoft.ApiManagement resource running in the Virtual network + /// to pick the updated network settings. /// /// /// The operations group for this extension method. @@ -879,14 +765,17 @@ public static ApiManagementServiceResource BeginUpdateHostname(this IApiManageme /// The name of the API Management service. /// /// - /// Parameters supplied to the UpdateHostname operation. + /// Parameters supplied to the Apply Network Configuration operation. If the + /// parameters are empty, all the regions in which the Api Management service + /// is deployed will be updated sequentially without incurring downtime in the + /// region. /// /// /// The cancellation token. /// - public static async Task BeginUpdateHostnameAsync(this IApiManagementServiceOperations operations, string resourceGroupName, string serviceName, ApiManagementServiceUpdateHostnameParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginApplyNetworkConfigurationUpdatesAsync(this IApiManagementServiceOperations operations, string resourceGroupName, string serviceName, ApiManagementServiceApplyNetworkConfigurationParameters parameters = default(ApiManagementServiceApplyNetworkConfigurationParameters), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginUpdateHostnameWithHttpMessagesAsync(resourceGroupName, serviceName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginApplyNetworkConfigurationUpdatesWithHttpMessagesAsync(resourceGroupName, serviceName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationOperations.cs index eba4685b4bf7..bea6721c6247 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationOperations.cs @@ -68,6 +68,9 @@ internal ApiOperationOperations(ApiManagementClient client) /// /// OData parameters to apply to the operation. /// + /// + /// Include tags in the response. + /// /// /// Headers that will be added to request. /// @@ -89,7 +92,7 @@ internal ApiOperationOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), string tags = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -152,6 +155,7 @@ internal ApiOperationOperations(ApiManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("apiId", apiId); + tracingParameters.Add("tags", tags); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByApi", tracingParameters); } @@ -171,6 +175,10 @@ internal ApiOperationOperations(ApiManagementClient client) _queryParameters.Add(_odataFilter); } } + if (tags != null) + { + _queryParameters.Add(string.Format("tags={0}", System.Uri.EscapeDataString(tags))); + } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -390,9 +398,9 @@ internal ApiOperationOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "operationId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "operationId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "operationId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -642,9 +650,9 @@ internal ApiOperationOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "operationId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "operationId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "operationId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -861,7 +869,7 @@ internal ApiOperationOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, OperationContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, OperationContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -919,9 +927,9 @@ internal ApiOperationOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "operationId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "operationId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "operationId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1071,7 +1079,7 @@ internal ApiOperationOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1114,6 +1122,19 @@ internal ApiOperationOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1224,9 +1245,9 @@ internal ApiOperationOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "operationId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "operationId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "operationId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1489,9 +1510,9 @@ internal ApiOperationOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "operationId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "operationId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "operationId", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationOperationsExtensions.cs index fd8373bcb6aa..bc1bfe9a0985 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationOperationsExtensions.cs @@ -42,9 +42,12 @@ public static partial class ApiOperationOperationsExtensions /// /// OData parameters to apply to the operation. /// - public static IPage ListByApi(this IApiOperationOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery)) + /// + /// Include tags in the response. + /// + public static IPage ListByApi(this IApiOperationOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), string tags = default(string)) { - return operations.ListByApiAsync(resourceGroupName, serviceName, apiId, odataQuery).GetAwaiter().GetResult(); + return operations.ListByApiAsync(resourceGroupName, serviceName, apiId, odataQuery, tags).GetAwaiter().GetResult(); } /// @@ -67,12 +70,15 @@ public static partial class ApiOperationOperationsExtensions /// /// OData parameters to apply to the operation. /// + /// + /// Include tags in the response. + /// /// /// The cancellation token. /// - public static async Task> ListByApiAsync(this IApiOperationOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByApiAsync(this IApiOperationOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), string tags = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByApiWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByApiWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, odataQuery, tags, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationPolicyOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationPolicyOperations.cs index 0b14538b6b2d..c5cb1d3a1832 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationPolicyOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationPolicyOperations.cs @@ -147,9 +147,9 @@ internal ApiOperationPolicyOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "operationId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "operationId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "operationId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -402,9 +402,9 @@ internal ApiOperationPolicyOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "operationId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "operationId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "operationId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -657,9 +657,9 @@ internal ApiOperationPolicyOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "operationId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "operationId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "operationId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -879,7 +879,7 @@ internal ApiOperationPolicyOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, PolicyContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, PolicyContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -937,9 +937,9 @@ internal ApiOperationPolicyOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "operationId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "operationId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "operationId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1092,7 +1092,7 @@ internal ApiOperationPolicyOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1135,6 +1135,19 @@ internal ApiOperationPolicyOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1241,9 +1254,9 @@ internal ApiOperationPolicyOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "operationId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "operationId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "operationId", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) @@ -1270,8 +1283,8 @@ internal ApiOperationPolicyOperations(ApiManagementClient client) tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("apiId", apiId); tracingParameters.Add("operationId", operationId); - tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("policyId", policyId); + tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperations.cs index 17a3e666b014..ac44cf61ba64 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperations.cs @@ -64,6 +64,9 @@ internal ApiOperations(ApiManagementClient client) /// /// OData parameters to apply to the operation. /// + /// + /// Include tags in the response. + /// /// /// Include full ApiVersionSet resource in response /// @@ -88,7 +91,7 @@ internal ApiOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? expandApiVersionSet = false, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), string tags = default(string), bool? expandApiVersionSet = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -131,6 +134,7 @@ internal ApiOperations(ApiManagementClient client) tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); + tracingParameters.Add("tags", tags); tracingParameters.Add("expandApiVersionSet", expandApiVersionSet); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByService", tracingParameters); @@ -150,14 +154,18 @@ internal ApiOperations(ApiManagementClient client) _queryParameters.Add(_odataFilter); } } - if (Client.ApiVersion != null) + if (tags != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("tags={0}", System.Uri.EscapeDataString(tags))); } if (expandApiVersionSet != null) { _queryParameters.Add(string.Format("expandApiVersionSet={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expandApiVersionSet, Client.SerializationSettings).Trim('"')))); } + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -771,6 +779,41 @@ internal ApiOperations(ApiManagementClient client) /// updating an entity. /// /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ApiCreateOrUpdateParameter parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, parameters, ifMatch, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Updates the specified API of the API Management service instance. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// 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. + /// + /// + /// API Update Contract parameters. + /// + /// + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional + /// update. + /// + /// /// Headers that will be added to request. /// /// @@ -779,9 +822,6 @@ internal ApiOperations(ApiManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -791,7 +831,7 @@ internal ApiOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ApiCreateOrUpdateParameter parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ApiUpdateContract parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -839,9 +879,9 @@ internal ApiOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (parameters != null) + if (ifMatch == null) { - parameters.Validate(); + throw new ValidationException(ValidationRules.CannotBeNull, "ifMatch"); } if (Client.ApiVersion == null) { @@ -864,7 +904,7 @@ internal ApiOperations(ApiManagementClient client) tracingParameters.Add("parameters", parameters); tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -885,7 +925,7 @@ internal ApiOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -950,7 +990,7 @@ internal ApiOperations(ApiManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 204) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -980,62 +1020,13 @@ internal ApiOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - try - { - _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1044,7 +1035,7 @@ internal ApiOperations(ApiManagementClient client) } /// - /// Updates the specified API of the API Management service instance. + /// Deletes the specified API of the API Management service instance. /// /// /// The name of the resource group. @@ -1057,14 +1048,14 @@ internal ApiOperations(ApiManagementClient client) /// service instance. Non-current revision has ;rev=n as a suffix where n is /// the revision number. /// - /// - /// API Update Contract parameters. - /// /// /// ETag of the Entity. ETag should match the current entity state from the /// header response of the GET request or it should be * for unconditional /// update. /// + /// + /// Delete all revisions of the Api. + /// /// /// Headers that will be added to request. /// @@ -1083,7 +1074,7 @@ internal ApiOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ApiUpdateContract parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string ifMatch, bool? deleteRevisions = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1127,10 +1118,6 @@ internal ApiOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$"); } } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } if (ifMatch == null) { throw new ValidationException(ValidationRules.CannotBeNull, "ifMatch"); @@ -1153,10 +1140,10 @@ internal ApiOperations(ApiManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("apiId", apiId); - tracingParameters.Add("parameters", parameters); + tracingParameters.Add("deleteRevisions", deleteRevisions); tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -1166,6 +1153,10 @@ internal ApiOperations(ApiManagementClient client) _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); + if (deleteRevisions != null) + { + _queryParameters.Add(string.Format("deleteRevisions={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(deleteRevisions, Client.SerializationSettings).Trim('"')))); + } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -1177,7 +1168,7 @@ internal ApiOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1216,12 +1207,6 @@ internal ApiOperations(ApiManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -1242,7 +1227,7 @@ internal ApiOperations(ApiManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204) + if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1287,7 +1272,7 @@ internal ApiOperations(ApiManagementClient client) } /// - /// Deletes the specified API of the API Management service instance. + /// Lists a collection of apis associated with tags. /// /// /// The name of the resource group. @@ -1295,18 +1280,11 @@ internal ApiOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// 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. - /// - /// - /// ETag of the Entity. ETag should match the current entity state from the - /// header response of the GET request or it should be * for unconditional - /// update. + /// + /// OData parameters to apply to the operation. /// - /// - /// Delete all revisions of the Api. + /// + /// Include not tagged APIs. /// /// /// Headers that will be added to request. @@ -1317,6 +1295,9 @@ internal ApiOperations(ApiManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -1326,7 +1307,7 @@ internal ApiOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string ifMatch, bool? deleteRevisions = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByTagsWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? includeNotTaggedApis = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1351,29 +1332,6 @@ internal ApiOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (apiId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); - } - if (apiId != null) - { - if (apiId.Length > 256) - { - 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, "^[^*#&+:<>?]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$"); - } - } - if (ifMatch == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "ifMatch"); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -1389,25 +1347,31 @@ internal ApiOperations(ApiManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("apiId", apiId); - tracingParameters.Add("deleteRevisions", deleteRevisions); - tracingParameters.Add("ifMatch", ifMatch); + tracingParameters.Add("includeNotTaggedApis", includeNotTaggedApis); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByTags", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apisByTags").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (deleteRevisions != null) + if (odataQuery != null) { - _queryParameters.Add(string.Format("deleteRevisions={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(deleteRevisions, Client.SerializationSettings).Trim('"')))); + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } + if (includeNotTaggedApis != null) + { + _queryParameters.Add(string.Format("includeNotTaggedApis={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(includeNotTaggedApis, Client.SerializationSettings).Trim('"')))); } if (Client.ApiVersion != null) { @@ -1420,21 +1384,13 @@ internal ApiOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (ifMatch != null) - { - if (_httpRequest.Headers.Contains("If-Match")) - { - _httpRequest.Headers.Remove("If-Match"); - } - _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); - } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -1479,7 +1435,7 @@ internal ApiOperations(ApiManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1509,13 +1465,31 @@ internal ApiOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1524,7 +1498,8 @@ internal ApiOperations(ApiManagementClient client) } /// - /// Lists a collection of apis associated with tags. + /// Creates new or updates existing specified API of the API Management service + /// instance. /// /// /// The name of the resource group. @@ -1532,8 +1507,17 @@ internal ApiOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// OData parameters to apply to the operation. + /// + /// 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. + /// + /// + /// Create or update parameters. + /// + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. /// /// /// Headers that will be added to request. @@ -1541,7 +1525,7 @@ internal ApiOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1556,7 +1540,7 @@ internal ApiOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByTagsWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ApiCreateOrUpdateParameter parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1581,6 +1565,33 @@ internal ApiOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } + if (apiId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); + } + if (apiId != null) + { + if (apiId.Length > 256) + { + 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, "^[^*#&+:<>?]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$"); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -1596,27 +1607,22 @@ internal ApiOperations(ApiManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); + tracingParameters.Add("apiId", apiId); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByTags", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apisByTags").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); + _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (odataQuery != null) - { - var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) - { - _queryParameters.Add(_odataFilter); - } - } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -1628,13 +1634,21 @@ internal ApiOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } + if (ifMatch != null) + { + if (_httpRequest.Headers.Contains("If-Match")) + { + _httpRequest.Headers.Remove("If-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -1659,6 +1673,12 @@ internal ApiOperations(ApiManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -1679,16 +1699,15 @@ internal ApiOperations(ApiManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201 && (int)_statusCode != 202) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1698,10 +1717,6 @@ internal ApiOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -1714,7 +1729,7 @@ internal ApiOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1727,7 +1742,7 @@ internal ApiOperations(ApiManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1739,6 +1754,37 @@ internal ApiOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1927,7 +1973,7 @@ internal ApiOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -2023,14 +2069,13 @@ internal ApiOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -2040,10 +2085,6 @@ internal ApiOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationsExtensions.cs index bc5c767aeb68..612881babc54 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationsExtensions.cs @@ -38,12 +38,15 @@ public static partial class ApiOperationsExtensions /// /// OData parameters to apply to the operation. /// + /// + /// Include tags in the response. + /// /// /// Include full ApiVersionSet resource in response /// - public static IPage ListByService(this IApiOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? expandApiVersionSet = false) + public static IPage ListByService(this IApiOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), string tags = default(string), bool? expandApiVersionSet = default(bool?)) { - return operations.ListByServiceAsync(resourceGroupName, serviceName, odataQuery, expandApiVersionSet).GetAwaiter().GetResult(); + return operations.ListByServiceAsync(resourceGroupName, serviceName, odataQuery, tags, expandApiVersionSet).GetAwaiter().GetResult(); } /// @@ -62,15 +65,18 @@ public static partial class ApiOperationsExtensions /// /// OData parameters to apply to the operation. /// + /// + /// Include tags in the response. + /// /// /// Include full ApiVersionSet resource in response /// /// /// The cancellation token. /// - public static async Task> ListByServiceAsync(this IApiOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? expandApiVersionSet = false, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServiceAsync(this IApiOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), string tags = default(string), bool? expandApiVersionSet = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, odataQuery, expandApiVersionSet, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, odataQuery, tags, expandApiVersionSet, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -385,9 +391,12 @@ public static void Update(this IApiOperations operations, string resourceGroupNa /// /// OData parameters to apply to the operation. /// - public static IPage ListByTags(this IApiOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery)) + /// + /// Include not tagged APIs. + /// + public static IPage ListByTags(this IApiOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? includeNotTaggedApis = default(bool?)) { - return operations.ListByTagsAsync(resourceGroupName, serviceName, odataQuery).GetAwaiter().GetResult(); + return operations.ListByTagsAsync(resourceGroupName, serviceName, odataQuery, includeNotTaggedApis).GetAwaiter().GetResult(); } /// @@ -405,12 +414,81 @@ public static void Update(this IApiOperations operations, string resourceGroupNa /// /// OData parameters to apply to the operation. /// + /// + /// Include not tagged APIs. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByTagsAsync(this IApiOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? includeNotTaggedApis = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByTagsWithHttpMessagesAsync(resourceGroupName, serviceName, odataQuery, includeNotTaggedApis, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates new or updates existing specified API of the API Management service + /// instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// 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. + /// + /// + /// Create or update parameters. + /// + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// + public static ApiContract BeginCreateOrUpdate(this IApiOperations operations, string resourceGroupName, string serviceName, string apiId, ApiCreateOrUpdateParameter parameters, string ifMatch = default(string)) + { + return operations.BeginCreateOrUpdateAsync(resourceGroupName, serviceName, apiId, parameters, ifMatch).GetAwaiter().GetResult(); + } + + /// + /// Creates new or updates existing specified API of the API Management service + /// instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// 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. + /// + /// + /// Create or update parameters. + /// + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// /// /// The cancellation token. /// - public static async Task> ListByTagsAsync(this IApiOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginCreateOrUpdateAsync(this IApiOperations operations, string resourceGroupName, string serviceName, string apiId, ApiCreateOrUpdateParameter parameters, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByTagsWithHttpMessagesAsync(resourceGroupName, serviceName, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiPolicyOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiPolicyOperations.cs index d9c6f4fd956c..384146e94213 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiPolicyOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiPolicyOperations.cs @@ -85,7 +85,7 @@ internal ApiPolicyOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ListByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -250,7 +250,7 @@ internal ApiPolicyOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -275,19 +275,6 @@ internal ApiPolicyOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - try - { - _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -813,7 +800,7 @@ internal ApiPolicyOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, PolicyContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, PolicyContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1005,7 +992,7 @@ internal ApiPolicyOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1048,6 +1035,19 @@ internal ApiPolicyOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiProductOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiProductOperations.cs index eb6b9d2150c7..6aac54eeb49b 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiProductOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiProductOperations.cs @@ -127,9 +127,9 @@ internal ApiProductOperations(ApiManagementClient client) { 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/ApiReleaseOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiReleaseOperations.cs index 4abbf36c5dc1..e1a6289ba0e9 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiReleaseOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiReleaseOperations.cs @@ -91,7 +91,7 @@ internal ApiReleaseOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -130,9 +130,9 @@ internal ApiReleaseOperations(ApiManagementClient client) { 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) @@ -155,7 +155,7 @@ internal ApiReleaseOperations(ApiManagementClient client) tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("apiId", apiId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByService", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -357,14 +357,6 @@ internal ApiReleaseOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (apiId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); @@ -379,9 +371,9 @@ internal ApiReleaseOperations(ApiManagementClient client) { 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 (releaseId == null) @@ -398,11 +390,19 @@ internal ApiReleaseOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "releaseId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(releaseId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(releaseId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "releaseId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "releaseId", "^[^*#&+:<>?]+$"); } } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -422,9 +422,9 @@ internal ApiReleaseOperations(ApiManagementClient client) var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/releases/{releaseId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); _url = _url.Replace("{releaseId}", System.Uri.EscapeDataString(releaseId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -583,7 +583,7 @@ internal ApiReleaseOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string releaseId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string releaseId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -608,14 +608,6 @@ internal ApiReleaseOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (apiId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); @@ -630,9 +622,9 @@ internal ApiReleaseOperations(ApiManagementClient client) { 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 (releaseId == null) @@ -649,11 +641,19 @@ internal ApiReleaseOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "releaseId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(releaseId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(releaseId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "releaseId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "releaseId", "^[^*#&+:<>?]+$"); } } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -673,9 +673,9 @@ internal ApiReleaseOperations(ApiManagementClient client) var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/releases/{releaseId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); _url = _url.Replace("{releaseId}", System.Uri.EscapeDataString(releaseId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -769,7 +769,7 @@ internal ApiReleaseOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -794,6 +794,19 @@ internal ApiReleaseOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -821,6 +834,10 @@ internal ApiReleaseOperations(ApiManagementClient client) /// /// Create parameters. /// + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// /// /// Headers that will be added to request. /// @@ -842,7 +859,7 @@ internal ApiReleaseOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string releaseId, ApiReleaseContract parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string releaseId, ApiReleaseContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -867,14 +884,6 @@ internal ApiReleaseOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (apiId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); @@ -889,9 +898,9 @@ internal ApiReleaseOperations(ApiManagementClient client) { 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 (releaseId == null) @@ -908,15 +917,23 @@ internal ApiReleaseOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "releaseId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(releaseId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(releaseId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "releaseId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "releaseId", "^[^*#&+:<>?]+$"); } } if (parameters == null) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -929,17 +946,18 @@ internal ApiReleaseOperations(ApiManagementClient client) tracingParameters.Add("apiId", apiId); tracingParameters.Add("releaseId", releaseId); tracingParameters.Add("parameters", parameters); + tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Create", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/releases/{releaseId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); _url = _url.Replace("{releaseId}", System.Uri.EscapeDataString(releaseId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -959,6 +977,14 @@ internal ApiReleaseOperations(ApiManagementClient client) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } + if (ifMatch != null) + { + if (_httpRequest.Headers.Contains("If-Match")) + { + _httpRequest.Headers.Remove("If-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -1039,7 +1065,7 @@ internal ApiReleaseOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1082,6 +1108,19 @@ internal ApiReleaseOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1157,14 +1196,6 @@ internal ApiReleaseOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (apiId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); @@ -1179,9 +1210,9 @@ internal ApiReleaseOperations(ApiManagementClient client) { 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 (releaseId == null) @@ -1198,9 +1229,9 @@ internal ApiReleaseOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "releaseId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(releaseId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(releaseId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "releaseId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "releaseId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1211,6 +1242,14 @@ internal ApiReleaseOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "ifMatch"); } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1232,9 +1271,9 @@ internal ApiReleaseOperations(ApiManagementClient client) var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/releases/{releaseId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); _url = _url.Replace("{releaseId}", System.Uri.EscapeDataString(releaseId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -1421,14 +1460,6 @@ internal ApiReleaseOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (apiId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); @@ -1443,9 +1474,9 @@ internal ApiReleaseOperations(ApiManagementClient client) { 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 (releaseId == null) @@ -1462,15 +1493,23 @@ internal ApiReleaseOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "releaseId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(releaseId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(releaseId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "releaseId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "releaseId", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) { throw new ValidationException(ValidationRules.CannotBeNull, "ifMatch"); } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1491,9 +1530,9 @@ internal ApiReleaseOperations(ApiManagementClient client) var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/releases/{releaseId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); _url = _url.Replace("{releaseId}", System.Uri.EscapeDataString(releaseId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -1639,7 +1678,7 @@ internal ApiReleaseOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1654,7 +1693,7 @@ internal ApiReleaseOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByServiceNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiReleaseOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiReleaseOperationsExtensions.cs index 6a336ea9bd93..3514fafd6926 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiReleaseOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiReleaseOperationsExtensions.cs @@ -44,9 +44,9 @@ public static partial class ApiReleaseOperationsExtensions /// /// OData parameters to apply to the operation. /// - public static IPage List(this IApiReleaseOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery)) + public static IPage ListByService(this IApiReleaseOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery)) { - return operations.ListAsync(resourceGroupName, serviceName, apiId, odataQuery).GetAwaiter().GetResult(); + return operations.ListByServiceAsync(resourceGroupName, serviceName, apiId, odataQuery).GetAwaiter().GetResult(); } /// @@ -74,9 +74,9 @@ public static partial class ApiReleaseOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListAsync(this IApiReleaseOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServiceAsync(this IApiReleaseOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, odataQuery, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -217,9 +217,13 @@ public static ApiReleaseContract Get(this IApiReleaseOperations operations, stri /// /// Create parameters. /// - public static ApiReleaseContract Create(this IApiReleaseOperations operations, string resourceGroupName, string serviceName, string apiId, string releaseId, ApiReleaseContract parameters) + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// + public static ApiReleaseContract CreateOrUpdate(this IApiReleaseOperations operations, string resourceGroupName, string serviceName, string apiId, string releaseId, ApiReleaseContract parameters, string ifMatch = default(string)) { - return operations.CreateAsync(resourceGroupName, serviceName, apiId, releaseId, parameters).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, apiId, releaseId, parameters, ifMatch).GetAwaiter().GetResult(); } /// @@ -245,12 +249,16 @@ public static ApiReleaseContract Create(this IApiReleaseOperations operations, s /// /// Create parameters. /// + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// /// /// The cancellation token. /// - public static async Task CreateAsync(this IApiReleaseOperations operations, string resourceGroupName, string serviceName, string apiId, string releaseId, ApiReleaseContract parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IApiReleaseOperations operations, string resourceGroupName, string serviceName, string apiId, string releaseId, ApiReleaseContract parameters, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, releaseId, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, releaseId, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -400,9 +408,9 @@ public static void Delete(this IApiReleaseOperations operations, string resource /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IApiReleaseOperations operations, string nextPageLink) + public static IPage ListByServiceNext(this IApiReleaseOperations operations, string nextPageLink) { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListByServiceNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -420,9 +428,9 @@ public static IPage ListNext(this IApiReleaseOperations oper /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IApiReleaseOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServiceNextAsync(this IApiReleaseOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServiceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiRevisionsOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiRevisionOperations.cs similarity index 95% rename from src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiRevisionsOperations.cs rename to src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiRevisionOperations.cs index 4d1524616ec3..2a95c6a6e9b4 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiRevisionsOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiRevisionOperations.cs @@ -24,12 +24,12 @@ namespace Microsoft.Azure.Management.ApiManagement using System.Threading.Tasks; /// - /// ApiRevisionsOperations operations. + /// ApiRevisionOperations operations. /// - internal partial class ApiRevisionsOperations : IServiceOperations, IApiRevisionsOperations + internal partial class ApiRevisionOperations : IServiceOperations, IApiRevisionOperations { /// - /// Initializes a new instance of the ApiRevisionsOperations class. + /// Initializes a new instance of the ApiRevisionOperations class. /// /// /// Reference to the service client. @@ -37,7 +37,7 @@ internal partial class ApiRevisionsOperations : IServiceOperations /// Thrown when a required parameter is null /// - internal ApiRevisionsOperations(ApiManagementClient client) + internal ApiRevisionOperations(ApiManagementClient client) { if (client == null) { @@ -88,7 +88,7 @@ internal ApiRevisionsOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -113,14 +113,6 @@ internal ApiRevisionsOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (apiId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); @@ -135,11 +127,19 @@ internal ApiRevisionsOperations(ApiManagementClient client) { 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) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -152,15 +152,15 @@ internal ApiRevisionsOperations(ApiManagementClient client) tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("apiId", apiId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByService", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/revisions").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (odataQuery != null) { @@ -321,7 +321,7 @@ internal ApiRevisionsOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -336,7 +336,7 @@ internal ApiRevisionsOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByServiceNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiRevisionsOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiRevisionOperationsExtensions.cs similarity index 70% rename from src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiRevisionsOperationsExtensions.cs rename to src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiRevisionOperationsExtensions.cs index 480bae2fca29..3fedd230de84 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiRevisionsOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiRevisionOperationsExtensions.cs @@ -18,9 +18,9 @@ namespace Microsoft.Azure.Management.ApiManagement using System.Threading.Tasks; /// - /// Extension methods for ApiRevisionsOperations. + /// Extension methods for ApiRevisionOperations. /// - public static partial class ApiRevisionsOperationsExtensions + public static partial class ApiRevisionOperationsExtensions { /// /// Lists all revisions of an API. @@ -41,9 +41,9 @@ public static partial class ApiRevisionsOperationsExtensions /// /// OData parameters to apply to the operation. /// - public static IPage List(this IApiRevisionsOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery)) + public static IPage ListByService(this IApiRevisionOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery)) { - return operations.ListAsync(resourceGroupName, serviceName, apiId, odataQuery).GetAwaiter().GetResult(); + return operations.ListByServiceAsync(resourceGroupName, serviceName, apiId, odataQuery).GetAwaiter().GetResult(); } /// @@ -68,9 +68,9 @@ public static partial class ApiRevisionsOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListAsync(this IApiRevisionsOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServiceAsync(this IApiRevisionOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, odataQuery, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -85,9 +85,9 @@ public static partial class ApiRevisionsOperationsExtensions /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IApiRevisionsOperations operations, string nextPageLink) + public static IPage ListByServiceNext(this IApiRevisionOperations operations, string nextPageLink) { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListByServiceNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -102,9 +102,9 @@ public static IPage ListNext(this IApiRevisionsOperations o /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IApiRevisionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServiceNextAsync(this IApiRevisionOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServiceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiSchemaOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiSchemaOperations.cs index d954bc3bbe1f..a51003fa014c 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiSchemaOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiSchemaOperations.cs @@ -64,6 +64,19 @@ internal ApiSchemaOperations(ApiManagementClient client) /// service instance. Non-current revision has ;rev=n as a suffix where n is /// the revision number. /// + /// + /// | Field | Usage | Supported operators | Supported + /// functions + /// |</br>|-------------|-------------|-------------|-------------|</br>| + /// contentType | filter | ge, le, eq, ne, gt, lt | substringof, contains, + /// startswith, endswith | </br> + /// + /// + /// Number of records to return. + /// + /// + /// Number of records to skip. + /// /// /// Headers that will be added to request. /// @@ -85,7 +98,7 @@ internal ApiSchemaOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task,ApiSchemaListByApiHeaders>> ListByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string filter = default(string), int? top = default(int?), int? skip = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -129,6 +142,14 @@ internal ApiSchemaOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$"); } } + if (top < 1) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "top", 1); + } + if (skip < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "skip", 0); + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -147,6 +168,9 @@ internal ApiSchemaOperations(ApiManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("apiId", apiId); + tracingParameters.Add("filter", filter); + tracingParameters.Add("top", top); + tracingParameters.Add("skip", skip); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByApi", tracingParameters); } @@ -158,6 +182,18 @@ internal ApiSchemaOperations(ApiManagementClient client) _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (skip != null) + { + _queryParameters.Add(string.Format("$skip={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skip, Client.SerializationSettings).Trim('"')))); + } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -250,7 +286,7 @@ internal ApiSchemaOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse,ApiSchemaListByApiHeaders>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -275,19 +311,6 @@ internal ApiSchemaOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - try - { - _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -390,9 +413,9 @@ internal ApiSchemaOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "schemaId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(schemaId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(schemaId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "schemaId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "schemaId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -642,9 +665,9 @@ internal ApiSchemaOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "schemaId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(schemaId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(schemaId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "schemaId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "schemaId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -861,7 +884,7 @@ internal ApiSchemaOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string schemaId, SchemaContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string schemaId, SchemaContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -919,9 +942,9 @@ internal ApiSchemaOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "schemaId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(schemaId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(schemaId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "schemaId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "schemaId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1071,7 +1094,7 @@ internal ApiSchemaOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1114,6 +1137,19 @@ internal ApiSchemaOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1144,6 +1180,9 @@ internal ApiSchemaOperations(ApiManagementClient client) /// header response of the GET request or it should be * for unconditional /// update. /// + /// + /// If true removes all references to the schema before deleting it. + /// /// /// Headers that will be added to request. /// @@ -1162,7 +1201,7 @@ internal ApiSchemaOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string schemaId, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string schemaId, string ifMatch, bool? force = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1220,9 +1259,9 @@ internal ApiSchemaOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "schemaId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(schemaId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(schemaId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "schemaId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "schemaId", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) @@ -1248,6 +1287,7 @@ internal ApiSchemaOperations(ApiManagementClient client) tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("apiId", apiId); tracingParameters.Add("schemaId", schemaId); + tracingParameters.Add("force", force); tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); @@ -1261,6 +1301,10 @@ internal ApiSchemaOperations(ApiManagementClient client) _url = _url.Replace("{schemaId}", System.Uri.EscapeDataString(schemaId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); + if (force != null) + { + _queryParameters.Add(string.Format("force={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(force, Client.SerializationSettings).Trim('"')))); + } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -1402,7 +1446,7 @@ internal ApiSchemaOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task,ApiSchemaListByApiHeaders>> ListByApiNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByApiNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1511,7 +1555,7 @@ internal ApiSchemaOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse,ApiSchemaListByApiHeaders>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1536,19 +1580,6 @@ internal ApiSchemaOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - try - { - _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiSchemaOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiSchemaOperationsExtensions.cs index 42f50692b244..9bba9124e7d5 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiSchemaOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiSchemaOperationsExtensions.cs @@ -38,9 +38,22 @@ public static partial class ApiSchemaOperationsExtensions /// 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) + /// + /// | Field | Usage | Supported operators | Supported + /// functions + /// |</br>|-------------|-------------|-------------|-------------|</br>| + /// contentType | filter | ge, le, eq, ne, gt, lt | substringof, contains, + /// startswith, endswith | </br> + /// + /// + /// Number of records to return. + /// + /// + /// Number of records to skip. + /// + public static IPage ListByApi(this IApiSchemaOperations operations, string resourceGroupName, string serviceName, string apiId, string filter = default(string), int? top = default(int?), int? skip = default(int?)) { - return operations.ListByApiAsync(resourceGroupName, serviceName, apiId).GetAwaiter().GetResult(); + return operations.ListByApiAsync(resourceGroupName, serviceName, apiId, filter, top, skip).GetAwaiter().GetResult(); } /// @@ -60,12 +73,25 @@ public static IPage ListByApi(this IApiSchemaOperations operatio /// service instance. Non-current revision has ;rev=n as a suffix where n is /// the revision number. /// + /// + /// | Field | Usage | Supported operators | Supported + /// functions + /// |</br>|-------------|-------------|-------------|-------------|</br>| + /// contentType | filter | ge, le, eq, ne, gt, lt | substringof, contains, + /// startswith, endswith | </br> + /// + /// + /// Number of records to return. + /// + /// + /// Number of records to skip. + /// /// /// The cancellation token. /// - public static async Task> ListByApiAsync(this IApiSchemaOperations operations, string resourceGroupName, string serviceName, string apiId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByApiAsync(this IApiSchemaOperations operations, string resourceGroupName, string serviceName, string apiId, string filter = default(string), int? top = default(int?), int? skip = default(int?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByApiWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByApiWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, filter, top, skip, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -287,9 +313,12 @@ public static SchemaContract Get(this IApiSchemaOperations operations, string re /// header response of the GET request or it should be * for unconditional /// update. /// - public static void Delete(this IApiSchemaOperations operations, string resourceGroupName, string serviceName, string apiId, string schemaId, string ifMatch) + /// + /// If true removes all references to the schema before deleting it. + /// + public static void Delete(this IApiSchemaOperations operations, string resourceGroupName, string serviceName, string apiId, string schemaId, string ifMatch, bool? force = default(bool?)) { - operations.DeleteAsync(resourceGroupName, serviceName, apiId, schemaId, ifMatch).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, serviceName, apiId, schemaId, ifMatch, force).GetAwaiter().GetResult(); } /// @@ -318,12 +347,15 @@ public static void Delete(this IApiSchemaOperations operations, string resourceG /// header response of the GET request or it should be * for unconditional /// update. /// + /// + /// If true removes all references to the schema before deleting it. + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IApiSchemaOperations operations, string resourceGroupName, string serviceName, string apiId, string schemaId, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IApiSchemaOperations operations, string resourceGroupName, string serviceName, string apiId, string schemaId, string ifMatch, bool? force = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, schemaId, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, schemaId, ifMatch, force, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagDescriptionOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiTagDescriptionOperations.cs similarity index 95% rename from src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagDescriptionOperations.cs rename to src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiTagDescriptionOperations.cs index d04fe8a7c3ac..fae11a014ff3 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagDescriptionOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiTagDescriptionOperations.cs @@ -24,12 +24,12 @@ namespace Microsoft.Azure.Management.ApiManagement using System.Threading.Tasks; /// - /// TagDescriptionOperations operations. + /// ApiTagDescriptionOperations operations. /// - internal partial class TagDescriptionOperations : IServiceOperations, ITagDescriptionOperations + internal partial class ApiTagDescriptionOperations : IServiceOperations, IApiTagDescriptionOperations { /// - /// Initializes a new instance of the TagDescriptionOperations class. + /// Initializes a new instance of the ApiTagDescriptionOperations class. /// /// /// Reference to the service client. @@ -37,7 +37,7 @@ internal partial class TagDescriptionOperations : IServiceOperations /// Thrown when a required parameter is null /// - internal TagDescriptionOperations(ApiManagementClient client) + internal ApiTagDescriptionOperations(ApiManagementClient client) { if (client == null) { @@ -91,7 +91,7 @@ internal TagDescriptionOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -155,7 +155,7 @@ internal TagDescriptionOperations(ApiManagementClient client) tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("apiId", apiId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByApi", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByService", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -333,7 +333,7 @@ internal TagDescriptionOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetEntityStateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -391,9 +391,9 @@ internal TagDescriptionOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -416,7 +416,7 @@ internal TagDescriptionOperations(ApiManagementClient client) tracingParameters.Add("apiId", apiId); tracingParameters.Add("tagId", tagId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetEntityState", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetEntityTag", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -519,7 +519,7 @@ internal TagDescriptionOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationHeaderResponse(); + var _result = new AzureOperationHeaderResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -528,7 +528,7 @@ internal TagDescriptionOperations(ApiManagementClient client) } try { - _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); } catch (JsonException ex) { @@ -547,7 +547,7 @@ internal TagDescriptionOperations(ApiManagementClient client) } /// - /// Get tag associated with the API. + /// Get Tag description in scope of API /// /// /// The name of the resource group. @@ -585,7 +585,7 @@ internal TagDescriptionOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -643,9 +643,9 @@ internal TagDescriptionOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -771,7 +771,7 @@ internal TagDescriptionOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -798,7 +798,7 @@ internal TagDescriptionOperations(ApiManagementClient client) } try { - _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); } catch (JsonException ex) { @@ -862,7 +862,7 @@ internal TagDescriptionOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, TagDescriptionCreateParameters parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, TagDescriptionCreateParameters parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -920,9 +920,9 @@ internal TagDescriptionOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1072,7 +1072,7 @@ internal TagDescriptionOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1115,6 +1115,19 @@ internal TagDescriptionOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1221,9 +1234,9 @@ internal TagDescriptionOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) @@ -1405,7 +1418,7 @@ internal TagDescriptionOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByApiNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1420,7 +1433,7 @@ internal TagDescriptionOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByApiNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByServiceNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagDescriptionOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiTagDescriptionOperationsExtensions.cs similarity index 80% rename from src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagDescriptionOperationsExtensions.cs rename to src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiTagDescriptionOperationsExtensions.cs index ecd9af14e474..08a1701f324d 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagDescriptionOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiTagDescriptionOperationsExtensions.cs @@ -18,9 +18,9 @@ namespace Microsoft.Azure.Management.ApiManagement using System.Threading.Tasks; /// - /// Extension methods for TagDescriptionOperations. + /// Extension methods for ApiTagDescriptionOperations. /// - public static partial class TagDescriptionOperationsExtensions + public static partial class ApiTagDescriptionOperationsExtensions { /// /// Lists all Tags descriptions in scope of API. Model similar to swagger - @@ -44,9 +44,9 @@ public static partial class TagDescriptionOperationsExtensions /// /// OData parameters to apply to the operation. /// - public static IPage ListByApi(this ITagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery)) + public static IPage ListByService(this IApiTagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery)) { - return operations.ListByApiAsync(resourceGroupName, serviceName, apiId, odataQuery).GetAwaiter().GetResult(); + return operations.ListByServiceAsync(resourceGroupName, serviceName, apiId, odataQuery).GetAwaiter().GetResult(); } /// @@ -74,9 +74,9 @@ public static partial class TagDescriptionOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListByApiAsync(this ITagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServiceAsync(this IApiTagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByApiWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, odataQuery, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -103,9 +103,9 @@ public static partial class TagDescriptionOperationsExtensions /// Tag identifier. Must be unique in the current API Management service /// instance. /// - public static TagDescriptionGetEntityStateHeaders GetEntityState(this ITagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId) + public static ApiTagDescriptionGetEntityTagHeaders GetEntityTag(this IApiTagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId) { - return operations.GetEntityStateAsync(resourceGroupName, serviceName, apiId, tagId).GetAwaiter().GetResult(); + return operations.GetEntityTagAsync(resourceGroupName, serviceName, apiId, tagId).GetAwaiter().GetResult(); } /// @@ -132,16 +132,16 @@ public static TagDescriptionGetEntityStateHeaders GetEntityState(this ITagDescri /// /// The cancellation token. /// - public static async Task GetEntityStateAsync(this ITagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetEntityTagAsync(this IApiTagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetEntityStateWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, tagId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetEntityTagWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, tagId, null, cancellationToken).ConfigureAwait(false)) { return _result.Headers; } } /// - /// Get tag associated with the API. + /// Get Tag description in scope of API /// /// /// The operations group for this extension method. @@ -161,13 +161,13 @@ public static TagDescriptionGetEntityStateHeaders GetEntityState(this ITagDescri /// Tag identifier. Must be unique in the current API Management service /// instance. /// - public static TagDescriptionContract Get(this ITagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId) + public static TagDescriptionContract Get(this IApiTagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId) { return operations.GetAsync(resourceGroupName, serviceName, apiId, tagId).GetAwaiter().GetResult(); } /// - /// Get tag associated with the API. + /// Get Tag description in scope of API /// /// /// The operations group for this extension method. @@ -190,7 +190,7 @@ public static TagDescriptionContract Get(this ITagDescriptionOperations operatio /// /// The cancellation token. /// - public static async Task GetAsync(this ITagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IApiTagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, tagId, null, cancellationToken).ConfigureAwait(false)) { @@ -226,7 +226,7 @@ public static TagDescriptionContract Get(this ITagDescriptionOperations operatio /// ETag of the Entity. Not required when creating an entity, but required when /// updating an entity. /// - public static TagDescriptionContract CreateOrUpdate(this ITagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId, TagDescriptionCreateParameters parameters, string ifMatch = default(string)) + public static TagDescriptionContract CreateOrUpdate(this IApiTagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId, TagDescriptionCreateParameters parameters, string ifMatch = default(string)) { return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, apiId, tagId, parameters, ifMatch).GetAwaiter().GetResult(); } @@ -262,7 +262,7 @@ public static TagDescriptionContract Get(this ITagDescriptionOperations operatio /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this ITagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId, TagDescriptionCreateParameters parameters, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IApiTagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId, TagDescriptionCreateParameters parameters, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, tagId, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)) { @@ -296,7 +296,7 @@ public static TagDescriptionContract Get(this ITagDescriptionOperations operatio /// header response of the GET request or it should be * for unconditional /// update. /// - public static void Delete(this ITagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId, string ifMatch) + public static void Delete(this IApiTagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId, string ifMatch) { operations.DeleteAsync(resourceGroupName, serviceName, apiId, tagId, ifMatch).GetAwaiter().GetResult(); } @@ -330,7 +330,7 @@ public static void Delete(this ITagDescriptionOperations operations, string reso /// /// The cancellation token. /// - public static async Task DeleteAsync(this ITagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IApiTagDescriptionOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) { (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, tagId, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); } @@ -346,9 +346,9 @@ public static void Delete(this ITagDescriptionOperations operations, string reso /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListByApiNext(this ITagDescriptionOperations operations, string nextPageLink) + public static IPage ListByServiceNext(this IApiTagDescriptionOperations operations, string nextPageLink) { - return operations.ListByApiNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListByServiceNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -365,9 +365,9 @@ public static IPage ListByApiNext(this ITagDescriptionOp /// /// The cancellation token. /// - public static async Task> ListByApiNextAsync(this ITagDescriptionOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServiceNextAsync(this IApiTagDescriptionOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByApiNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServiceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiVersionSetOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiVersionSetOperations.cs index c66147404b5e..ddc770ec7044 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiVersionSetOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiVersionSetOperations.cs @@ -132,7 +132,7 @@ internal ApiVersionSetOperations(ApiManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/api-version-sets").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apiVersionSets").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); @@ -326,14 +326,6 @@ internal ApiVersionSetOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (versionSetId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "versionSetId"); @@ -348,11 +340,19 @@ internal ApiVersionSetOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "versionSetId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(versionSetId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(versionSetId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "versionSetId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "versionSetId", "^[^*#&+:<>?]+$"); } } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -368,11 +368,11 @@ internal ApiVersionSetOperations(ApiManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/api-version-sets/{versionSetId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apiVersionSets/{versionSetId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{versionSetId}", System.Uri.EscapeDataString(versionSetId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -552,14 +552,6 @@ internal ApiVersionSetOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (versionSetId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "versionSetId"); @@ -574,11 +566,19 @@ internal ApiVersionSetOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "versionSetId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(versionSetId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(versionSetId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "versionSetId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "versionSetId", "^[^*#&+:<>?]+$"); } } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -594,11 +594,11 @@ internal ApiVersionSetOperations(ApiManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/api-version-sets/{versionSetId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apiVersionSets/{versionSetId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{versionSetId}", System.Uri.EscapeDataString(versionSetId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -778,7 +778,7 @@ internal ApiVersionSetOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string versionSetId, ApiVersionSetContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string versionSetId, ApiVersionSetContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -803,14 +803,6 @@ internal ApiVersionSetOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (versionSetId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "versionSetId"); @@ -825,9 +817,9 @@ internal ApiVersionSetOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "versionSetId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(versionSetId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(versionSetId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "versionSetId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "versionSetId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -838,6 +830,14 @@ internal ApiVersionSetOperations(ApiManagementClient client) { parameters.Validate(); } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -855,11 +855,11 @@ internal ApiVersionSetOperations(ApiManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/api-version-sets/{versionSetId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apiVersionSets/{versionSetId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{versionSetId}", System.Uri.EscapeDataString(versionSetId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -967,7 +967,7 @@ internal ApiVersionSetOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1010,6 +1010,19 @@ internal ApiVersionSetOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1081,14 +1094,6 @@ internal ApiVersionSetOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (versionSetId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "versionSetId"); @@ -1103,9 +1108,9 @@ internal ApiVersionSetOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "versionSetId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(versionSetId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(versionSetId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "versionSetId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "versionSetId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1116,6 +1121,14 @@ internal ApiVersionSetOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "ifMatch"); } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1133,11 +1146,11 @@ internal ApiVersionSetOperations(ApiManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/api-version-sets/{versionSetId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apiVersionSets/{versionSetId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{versionSetId}", System.Uri.EscapeDataString(versionSetId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -1320,14 +1333,6 @@ internal ApiVersionSetOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (versionSetId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "versionSetId"); @@ -1342,15 +1347,23 @@ internal ApiVersionSetOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "versionSetId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(versionSetId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(versionSetId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "versionSetId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "versionSetId", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) { throw new ValidationException(ValidationRules.CannotBeNull, "ifMatch"); } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1367,11 +1380,11 @@ internal ApiVersionSetOperations(ApiManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/api-version-sets/{versionSetId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apiVersionSets/{versionSetId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{versionSetId}", System.Uri.EscapeDataString(versionSetId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/AuthorizationServerOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/AuthorizationServerOperations.cs index 99aef00b78d7..3228d8203769 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/AuthorizationServerOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/AuthorizationServerOperations.cs @@ -70,7 +70,7 @@ internal AuthorizationServerOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -210,14 +210,13 @@ internal AuthorizationServerOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -227,10 +226,6 @@ internal AuthorizationServerOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -345,9 +340,9 @@ internal AuthorizationServerOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "authsid", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(authsid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(authsid, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "authsid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "authsid", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -570,9 +565,9 @@ internal AuthorizationServerOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "authsid", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(authsid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(authsid, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "authsid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "authsid", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -782,7 +777,7 @@ internal AuthorizationServerOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string authsid, AuthorizationServerContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string authsid, AuthorizationServerContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -821,9 +816,9 @@ internal AuthorizationServerOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "authsid", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(authsid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(authsid, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "authsid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "authsid", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -971,7 +966,7 @@ internal AuthorizationServerOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1014,6 +1009,19 @@ internal AuthorizationServerOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1099,9 +1107,9 @@ internal AuthorizationServerOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "authsid", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(authsid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(authsid, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "authsid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "authsid", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1337,9 +1345,9 @@ internal AuthorizationServerOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "authsid", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(authsid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(authsid, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "authsid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "authsid", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) @@ -1503,7 +1511,7 @@ internal AuthorizationServerOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1599,14 +1607,13 @@ internal AuthorizationServerOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1616,10 +1623,6 @@ internal AuthorizationServerOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/BackendOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/BackendOperations.cs index ecd0b5024212..55df911ab88e 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/BackendOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/BackendOperations.cs @@ -279,7 +279,7 @@ internal BackendOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -301,7 +301,7 @@ internal BackendOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -326,23 +326,23 @@ internal BackendOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (backendid == null) + if (backendId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "backendid"); + throw new ValidationException(ValidationRules.CannotBeNull, "backendId"); } - if (backendid != null) + if (backendId != null) { - if (backendid.Length > 80) + if (backendId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "backendid", 80); + throw new ValidationException(ValidationRules.MaxLength, "backendId", 80); } - if (backendid.Length < 1) + if (backendId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "backendid", 1); + throw new ValidationException(ValidationRules.MinLength, "backendId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(backendid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(backendId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "backendid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "backendId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -362,16 +362,16 @@ internal BackendOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("backendid", backendid); + tracingParameters.Add("backendId", backendId); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "GetEntityTag", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/backends/{backendid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/backends/{backendId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{backendid}", System.Uri.EscapeDataString(backendid)); + _url = _url.Replace("{backendId}", System.Uri.EscapeDataString(backendId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -502,7 +502,7 @@ internal BackendOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -527,7 +527,7 @@ internal BackendOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -552,23 +552,23 @@ internal BackendOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (backendid == null) + if (backendId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "backendid"); + throw new ValidationException(ValidationRules.CannotBeNull, "backendId"); } - if (backendid != null) + if (backendId != null) { - if (backendid.Length > 80) + if (backendId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "backendid", 80); + throw new ValidationException(ValidationRules.MaxLength, "backendId", 80); } - if (backendid.Length < 1) + if (backendId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "backendid", 1); + throw new ValidationException(ValidationRules.MinLength, "backendId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(backendid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(backendId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "backendid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "backendId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -588,16 +588,16 @@ internal BackendOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("backendid", backendid); + tracingParameters.Add("backendId", backendId); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/backends/{backendid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/backends/{backendId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{backendid}", System.Uri.EscapeDataString(backendid)); + _url = _url.Replace("{backendId}", System.Uri.EscapeDataString(backendId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -746,7 +746,7 @@ internal BackendOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -778,7 +778,7 @@ internal BackendOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendid, BackendContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendId, BackendContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -803,23 +803,23 @@ internal BackendOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (backendid == null) + if (backendId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "backendid"); + throw new ValidationException(ValidationRules.CannotBeNull, "backendId"); } - if (backendid != null) + if (backendId != null) { - if (backendid.Length > 80) + if (backendId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "backendid", 80); + throw new ValidationException(ValidationRules.MaxLength, "backendId", 80); } - if (backendid.Length < 1) + if (backendId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "backendid", 1); + throw new ValidationException(ValidationRules.MinLength, "backendId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(backendid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(backendId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "backendid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "backendId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -847,7 +847,7 @@ internal BackendOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("backendid", backendid); + tracingParameters.Add("backendId", backendId); tracingParameters.Add("parameters", parameters); tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); @@ -855,10 +855,10 @@ internal BackendOperations(ApiManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/backends/{backendid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/backends/{backendId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{backendid}", System.Uri.EscapeDataString(backendid)); + _url = _url.Replace("{backendId}", System.Uri.EscapeDataString(backendId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -967,7 +967,7 @@ internal BackendOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1010,6 +1010,19 @@ internal BackendOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1026,7 +1039,7 @@ internal BackendOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -1056,7 +1069,7 @@ internal BackendOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendid, BackendUpdateParameters parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendId, BackendUpdateParameters parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1081,23 +1094,23 @@ internal BackendOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (backendid == null) + if (backendId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "backendid"); + throw new ValidationException(ValidationRules.CannotBeNull, "backendId"); } - if (backendid != null) + if (backendId != null) { - if (backendid.Length > 80) + if (backendId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "backendid", 80); + throw new ValidationException(ValidationRules.MaxLength, "backendId", 80); } - if (backendid.Length < 1) + if (backendId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "backendid", 1); + throw new ValidationException(ValidationRules.MinLength, "backendId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(backendid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(backendId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "backendid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "backendId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1125,7 +1138,7 @@ internal BackendOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("backendid", backendid); + tracingParameters.Add("backendId", backendId); tracingParameters.Add("parameters", parameters); tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); @@ -1133,10 +1146,10 @@ internal BackendOperations(ApiManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/backends/{backendid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/backends/{backendId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{backendid}", System.Uri.EscapeDataString(backendid)); + _url = _url.Replace("{backendId}", System.Uri.EscapeDataString(backendId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -1268,7 +1281,7 @@ internal BackendOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -1295,7 +1308,7 @@ internal BackendOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendid, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendId, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1320,23 +1333,23 @@ internal BackendOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (backendid == null) + if (backendId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "backendid"); + throw new ValidationException(ValidationRules.CannotBeNull, "backendId"); } - if (backendid != null) + if (backendId != null) { - if (backendid.Length > 80) + if (backendId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "backendid", 80); + throw new ValidationException(ValidationRules.MaxLength, "backendId", 80); } - if (backendid.Length < 1) + if (backendId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "backendid", 1); + throw new ValidationException(ValidationRules.MinLength, "backendId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(backendid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(backendId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "backendid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "backendId", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) @@ -1360,17 +1373,17 @@ internal BackendOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("backendid", backendid); + tracingParameters.Add("backendId", backendId); tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/backends/{backendid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/backends/{backendId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{backendid}", System.Uri.EscapeDataString(backendid)); + _url = _url.Replace("{backendId}", System.Uri.EscapeDataString(backendId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -1498,7 +1511,7 @@ internal BackendOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -1523,7 +1536,7 @@ internal BackendOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task ReconnectWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendid, BackendReconnectContract parameters = default(BackendReconnectContract), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task ReconnectWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendId, BackendReconnectContract parameters = default(BackendReconnectContract), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1548,23 +1561,23 @@ internal BackendOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (backendid == null) + if (backendId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "backendid"); + throw new ValidationException(ValidationRules.CannotBeNull, "backendId"); } - if (backendid != null) + if (backendId != null) { - if (backendid.Length > 80) + if (backendId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "backendid", 80); + throw new ValidationException(ValidationRules.MaxLength, "backendId", 80); } - if (backendid.Length < 1) + if (backendId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "backendid", 1); + throw new ValidationException(ValidationRules.MinLength, "backendId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(backendid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(backendId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "backendid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "backendId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -1584,17 +1597,17 @@ internal BackendOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("backendid", backendid); + tracingParameters.Add("backendId", backendId); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Reconnect", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/backends/{backendid}/reconnect").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/backends/{backendId}/reconnect").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{backendid}", System.Uri.EscapeDataString(backendid)); + _url = _url.Replace("{backendId}", System.Uri.EscapeDataString(backendId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/BackendOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/BackendOperationsExtensions.cs index 9da1e523cda5..8d5843d5d0b0 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/BackendOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/BackendOperationsExtensions.cs @@ -81,13 +81,13 @@ public static partial class BackendOperationsExtensions /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// - public static BackendGetEntityTagHeaders GetEntityTag(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendid) + public static BackendGetEntityTagHeaders GetEntityTag(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendId) { - return operations.GetEntityTagAsync(resourceGroupName, serviceName, backendid).GetAwaiter().GetResult(); + return operations.GetEntityTagAsync(resourceGroupName, serviceName, backendId).GetAwaiter().GetResult(); } /// @@ -103,16 +103,16 @@ public static BackendGetEntityTagHeaders GetEntityTag(this IBackendOperations op /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// /// /// The cancellation token. /// - public static async Task GetEntityTagAsync(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendid, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetEntityTagAsync(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetEntityTagWithHttpMessagesAsync(resourceGroupName, serviceName, backendid, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetEntityTagWithHttpMessagesAsync(resourceGroupName, serviceName, backendId, null, cancellationToken).ConfigureAwait(false)) { return _result.Headers; } @@ -130,13 +130,13 @@ public static BackendGetEntityTagHeaders GetEntityTag(this IBackendOperations op /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// - public static BackendContract Get(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendid) + public static BackendContract Get(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendId) { - return operations.GetAsync(resourceGroupName, serviceName, backendid).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, serviceName, backendId).GetAwaiter().GetResult(); } /// @@ -151,16 +151,16 @@ public static BackendContract Get(this IBackendOperations operations, string res /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendid, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serviceName, backendid, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serviceName, backendId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -178,7 +178,7 @@ public static BackendContract Get(this IBackendOperations operations, string res /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -189,9 +189,9 @@ public static BackendContract Get(this IBackendOperations operations, string res /// ETag of the Entity. Not required when creating an entity, but required when /// updating an entity. /// - public static BackendContract CreateOrUpdate(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendid, BackendContract parameters, string ifMatch = default(string)) + public static BackendContract CreateOrUpdate(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendId, BackendContract parameters, string ifMatch = default(string)) { - return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, backendid, parameters, ifMatch).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, backendId, parameters, ifMatch).GetAwaiter().GetResult(); } /// @@ -206,7 +206,7 @@ public static BackendContract Get(this IBackendOperations operations, string res /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -220,9 +220,9 @@ public static BackendContract Get(this IBackendOperations operations, string res /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendid, BackendContract parameters, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendId, BackendContract parameters, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, backendid, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, backendId, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -240,7 +240,7 @@ public static BackendContract Get(this IBackendOperations operations, string res /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -252,9 +252,9 @@ public static BackendContract Get(this IBackendOperations operations, string res /// header response of the GET request or it should be * for unconditional /// update. /// - public static void Update(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendid, BackendUpdateParameters parameters, string ifMatch) + public static void Update(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendId, BackendUpdateParameters parameters, string ifMatch) { - operations.UpdateAsync(resourceGroupName, serviceName, backendid, parameters, ifMatch).GetAwaiter().GetResult(); + operations.UpdateAsync(resourceGroupName, serviceName, backendId, parameters, ifMatch).GetAwaiter().GetResult(); } /// @@ -269,7 +269,7 @@ public static void Update(this IBackendOperations operations, string resourceGro /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -284,9 +284,9 @@ public static void Update(this IBackendOperations operations, string resourceGro /// /// The cancellation token. /// - public static async Task UpdateAsync(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendid, BackendUpdateParameters parameters, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendId, BackendUpdateParameters parameters, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.UpdateWithHttpMessagesAsync(resourceGroupName, serviceName, backendid, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.UpdateWithHttpMessagesAsync(resourceGroupName, serviceName, backendId, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -301,7 +301,7 @@ public static void Update(this IBackendOperations operations, string resourceGro /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -310,9 +310,9 @@ public static void Update(this IBackendOperations operations, string resourceGro /// header response of the GET request or it should be * for unconditional /// update. /// - public static void Delete(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendid, string ifMatch) + public static void Delete(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendId, string ifMatch) { - operations.DeleteAsync(resourceGroupName, serviceName, backendid, ifMatch).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, serviceName, backendId, ifMatch).GetAwaiter().GetResult(); } /// @@ -327,7 +327,7 @@ public static void Delete(this IBackendOperations operations, string resourceGro /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -339,9 +339,9 @@ public static void Delete(this IBackendOperations operations, string resourceGro /// /// The cancellation token. /// - public static async Task DeleteAsync(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendid, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendId, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, backendid, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, backendId, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -358,16 +358,16 @@ public static void Delete(this IBackendOperations operations, string resourceGro /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// /// /// Reconnect request parameters. /// - public static void Reconnect(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendid, BackendReconnectContract parameters = default(BackendReconnectContract)) + public static void Reconnect(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendId, BackendReconnectContract parameters = default(BackendReconnectContract)) { - operations.ReconnectAsync(resourceGroupName, serviceName, backendid, parameters).GetAwaiter().GetResult(); + operations.ReconnectAsync(resourceGroupName, serviceName, backendId, parameters).GetAwaiter().GetResult(); } /// @@ -384,7 +384,7 @@ public static void Delete(this IBackendOperations operations, string resourceGro /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -394,9 +394,9 @@ public static void Delete(this IBackendOperations operations, string resourceGro /// /// The cancellation token. /// - public static async Task ReconnectAsync(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendid, BackendReconnectContract parameters = default(BackendReconnectContract), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReconnectAsync(this IBackendOperations operations, string resourceGroupName, string serviceName, string backendId, BackendReconnectContract parameters = default(BackendReconnectContract), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.ReconnectWithHttpMessagesAsync(resourceGroupName, serviceName, backendid, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.ReconnectWithHttpMessagesAsync(resourceGroupName, serviceName, backendId, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiDiagnosticLoggerOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/CacheOperations.cs similarity index 62% rename from src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiDiagnosticLoggerOperations.cs rename to src/SDKs/ApiManagement/Management.ApiManagement/Generated/CacheOperations.cs index eeea7fa6ca48..bc0bff02da0f 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiDiagnosticLoggerOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/CacheOperations.cs @@ -12,7 +12,6 @@ namespace Microsoft.Azure.Management.ApiManagement { using Microsoft.Rest; using Microsoft.Rest.Azure; - using Microsoft.Rest.Azure.OData; using Models; using Newtonsoft.Json; using System.Collections; @@ -24,12 +23,12 @@ namespace Microsoft.Azure.Management.ApiManagement using System.Threading.Tasks; /// - /// ApiDiagnosticLoggerOperations operations. + /// CacheOperations operations. /// - internal partial class ApiDiagnosticLoggerOperations : IServiceOperations, IApiDiagnosticLoggerOperations + internal partial class CacheOperations : IServiceOperations, ICacheOperations { /// - /// Initializes a new instance of the ApiDiagnosticLoggerOperations class. + /// Initializes a new instance of the CacheOperations class. /// /// /// Reference to the service client. @@ -37,7 +36,7 @@ internal partial class ApiDiagnosticLoggerOperations : IServiceOperations /// Thrown when a required parameter is null /// - internal ApiDiagnosticLoggerOperations(ApiManagementClient client) + internal CacheOperations(ApiManagementClient client) { if (client == null) { @@ -52,7 +51,8 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) public ApiManagementClient Client { get; private set; } /// - /// Lists all loggers associated with the specified Diagnostic of an API. + /// Lists a collection of all external Caches in the specified service + /// instance. /// /// /// The name of the resource group. @@ -60,16 +60,11 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// API identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. + /// + /// Number of records to return. /// - /// - /// OData parameters to apply to the operation. + /// + /// Number of records to skip. /// /// /// Headers that will be added to request. @@ -92,7 +87,7 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string diagnosticId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, int? top = default(int?), int? skip = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -117,24 +112,13 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (apiId == null) + if (top < 1) { - throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); + throw new ValidationException(ValidationRules.InclusiveMinimum, "top", 1); } - if (apiId != null) + if (skip < 0) { - if (apiId.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "apiId", 80); - } - if (apiId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "apiId", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) - { - throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); - } + throw new ValidationException(ValidationRules.InclusiveMinimum, "skip", 0); } if (Client.ApiVersion == null) { @@ -144,25 +128,6 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (diagnosticId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "diagnosticId"); - } - if (diagnosticId != null) - { - if (diagnosticId.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "diagnosticId", 80); - } - if (diagnosticId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "diagnosticId", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) - { - throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); - } - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -170,30 +135,27 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("apiId", apiId); - tracingParameters.Add("diagnosticId", diagnosticId); + tracingParameters.Add("top", top); + tracingParameters.Add("skip", skip); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByService", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/diagnostics/{diagnosticId}/loggers").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/caches").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{diagnosticId}", System.Uri.EscapeDataString(diagnosticId)); List _queryParameters = new List(); - if (odataQuery != null) + if (top != null) { - var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) - { - _queryParameters.Add(_odataFilter); - } + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (skip != null) + { + _queryParameters.Add(string.Format("$skip={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skip, Client.SerializationSettings).Trim('"')))); } if (Client.ApiVersion != null) { @@ -287,7 +249,7 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -300,7 +262,7 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -320,8 +282,8 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) } /// - /// Checks that logger entity specified by identifier is associated with the - /// diagnostics entity. + /// Gets the entity state (Etag) version of the Cache specified by its + /// identifier. /// /// /// The name of the resource group. @@ -329,16 +291,9 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// API identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service instance. + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). /// /// /// Headers that will be added to request. @@ -358,7 +313,7 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string diagnosticId, string loggerid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, string cacheId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -383,57 +338,249 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (apiId == null) + if (cacheId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cacheId"); + } + if (cacheId != null) + { + if (cacheId.Length > 80) + { + throw new ValidationException(ValidationRules.MaxLength, "cacheId", 80); + } + if (cacheId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "cacheId", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(cacheId, "^[^*#&+:<>?]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "cacheId", "^[^*#&+:<>?]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serviceName", serviceName); + tracingParameters.Add("cacheId", cacheId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetEntityTag", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/caches/{cacheId}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); + _url = _url.Replace("{cacheId}", System.Uri.EscapeDataString(cacheId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("HEAD"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) { - throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - if (apiId != null) + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) { - if (apiId.Length > 80) + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) { - throw new ValidationException(ValidationRules.MaxLength, "apiId", 80); + // Ignore the exception } - if (apiId.Length < 1) + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) { - throw new ValidationException(ValidationRules.MinLength, "apiId", 1); + ServiceClientTracing.Error(_invocationId, ex); } - if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + _httpRequest.Dispose(); + if (_httpResponse != null) { - throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + _httpResponse.Dispose(); } + throw ex; } - if (diagnosticId == null) + // Create Result + var _result = new AzureOperationHeaderResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + try { - throw new ValidationException(ValidationRules.CannotBeNull, "diagnosticId"); + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); } - if (diagnosticId != null) + catch (JsonException ex) { - if (diagnosticId.Length > 80) + _httpRequest.Dispose(); + if (_httpResponse != null) { - throw new ValidationException(ValidationRules.MaxLength, "diagnosticId", 80); + _httpResponse.Dispose(); } - if (diagnosticId.Length < 1) + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the details of the Cache specified by its identifier. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string cacheId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serviceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serviceName"); + } + if (serviceName != null) + { + if (serviceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "serviceName", 50); + } + if (serviceName.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "diagnosticId", 1); + throw new ValidationException(ValidationRules.MinLength, "serviceName", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(serviceName, "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$")) { - throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (loggerid == null) + if (cacheId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "loggerid"); + throw new ValidationException(ValidationRules.CannotBeNull, "cacheId"); } - if (loggerid != null) + if (cacheId != null) { - if (loggerid.Length > 80) + if (cacheId.Length > 80) + { + throw new ValidationException(ValidationRules.MaxLength, "cacheId", 80); + } + if (cacheId.Length < 1) { - throw new ValidationException(ValidationRules.MaxLength, "loggerid", 80); + throw new ValidationException(ValidationRules.MinLength, "cacheId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(loggerid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(cacheId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "loggerid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "cacheId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -453,20 +600,16 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("apiId", apiId); - tracingParameters.Add("diagnosticId", diagnosticId); - tracingParameters.Add("loggerid", loggerid); + tracingParameters.Add("cacheId", cacheId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CheckEntityExists", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/diagnostics/{diagnosticId}/loggers/{loggerid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/caches/{cacheId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); - _url = _url.Replace("{diagnosticId}", System.Uri.EscapeDataString(diagnosticId)); - _url = _url.Replace("{loggerid}", System.Uri.EscapeDataString(loggerid)); + _url = _url.Replace("{cacheId}", System.Uri.EscapeDataString(cacheId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -480,7 +623,7 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("HEAD"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -523,7 +666,7 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -531,7 +674,7 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204 && (int)_statusCode != 404) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -561,14 +704,44 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; - _result.Body = _statusCode == System.Net.HttpStatusCode.NoContent; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -577,7 +750,8 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) } /// - /// Attaches a logger to a diagnostic for an API. + /// Creates or updates an External Cache to be used in Api Management instance. + /// /// /// /// The name of the resource group. @@ -585,16 +759,16 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// API identifier. Must be unique in the current API Management service - /// instance. + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. + /// + /// Create or Update parameters. /// - /// - /// Logger identifier. Must be unique in the API Management service instance. + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. /// /// /// Headers that will be added to request. @@ -617,7 +791,7 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string diagnosticId, string loggerid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string cacheId, CacheContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -642,58 +816,32 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (apiId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); - } - if (apiId != null) - { - if (apiId.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "apiId", 80); - } - if (apiId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "apiId", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) - { - throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); - } - } - if (diagnosticId == null) + if (cacheId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "diagnosticId"); + throw new ValidationException(ValidationRules.CannotBeNull, "cacheId"); } - if (diagnosticId != null) + if (cacheId != null) { - if (diagnosticId.Length > 80) + if (cacheId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "diagnosticId", 80); + throw new ValidationException(ValidationRules.MaxLength, "cacheId", 80); } - if (diagnosticId.Length < 1) + if (cacheId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "diagnosticId", 1); + throw new ValidationException(ValidationRules.MinLength, "cacheId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(cacheId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "cacheId", "^[^*#&+:<>?]+$"); } } - if (loggerid == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "loggerid"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (loggerid != null) + if (parameters != null) { - if (loggerid.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "loggerid", 80); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(loggerid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) - { - throw new ValidationException(ValidationRules.Pattern, "loggerid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); - } + parameters.Validate(); } if (Client.ApiVersion == null) { @@ -712,20 +860,18 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("apiId", apiId); - tracingParameters.Add("diagnosticId", diagnosticId); - tracingParameters.Add("loggerid", loggerid); + tracingParameters.Add("cacheId", cacheId); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/diagnostics/{diagnosticId}/loggers/{loggerid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/caches/{cacheId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); - _url = _url.Replace("{diagnosticId}", System.Uri.EscapeDataString(diagnosticId)); - _url = _url.Replace("{loggerid}", System.Uri.EscapeDataString(loggerid)); + _url = _url.Replace("{cacheId}", System.Uri.EscapeDataString(cacheId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -746,6 +892,14 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } + if (ifMatch != null) + { + if (_httpRequest.Headers.Contains("If-Match")) + { + _httpRequest.Headers.Remove("If-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -770,6 +924,12 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -820,7 +980,7 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -833,7 +993,7 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -851,7 +1011,7 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -863,6 +1023,19 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -871,7 +1044,7 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) } /// - /// Deletes the specified Logger from Diagnostic for an API. + /// Updates the details of the cache specified by its identifier. /// /// /// The name of the resource group. @@ -879,16 +1052,17 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// API identifier. Must be unique in the current API Management service - /// instance. + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. + /// + /// Update parameters. /// - /// - /// Logger identifier. Must be unique in the API Management service instance. + /// + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional + /// update. /// /// /// Headers that will be added to request. @@ -908,7 +1082,7 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string diagnosticId, string loggerid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string cacheId, CacheUpdateParameters parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -933,59 +1107,268 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (apiId == null) + if (cacheId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); + throw new ValidationException(ValidationRules.CannotBeNull, "cacheId"); } - if (apiId != null) + if (cacheId != null) { - if (apiId.Length > 80) + if (cacheId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "apiId", 80); + throw new ValidationException(ValidationRules.MaxLength, "cacheId", 80); } - if (apiId.Length < 1) + if (cacheId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "apiId", 1); + throw new ValidationException(ValidationRules.MinLength, "cacheId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(cacheId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "cacheId", "^[^*#&+:<>?]+$"); } } - if (diagnosticId == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "diagnosticId"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (diagnosticId != null) + if (ifMatch == null) { - if (diagnosticId.Length > 80) + throw new ValidationException(ValidationRules.CannotBeNull, "ifMatch"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serviceName", serviceName); + tracingParameters.Add("cacheId", cacheId); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("ifMatch", ifMatch); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/caches/{cacheId}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); + _url = _url.Replace("{cacheId}", System.Uri.EscapeDataString(cacheId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (ifMatch != null) + { + if (_httpRequest.Headers.Contains("If-Match")) { - throw new ValidationException(ValidationRules.MaxLength, "diagnosticId", 80); + _httpRequest.Headers.Remove("If-Match"); } - if (diagnosticId.Length < 1) + _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) { - throw new ValidationException(ValidationRules.MinLength, "diagnosticId", 1); + _httpRequest.Headers.Remove("accept-language"); } - if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) { - throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); } } - if (loggerid == null) + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "loggerid"); + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } - if (loggerid != null) + // Send Request + if (_shouldTrace) { - if (loggerid.Length > 80) + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes specific Cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). + /// + /// + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional + /// update. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string cacheId, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serviceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serviceName"); + } + if (serviceName != null) + { + if (serviceName.Length > 50) { - throw new ValidationException(ValidationRules.MaxLength, "loggerid", 80); + throw new ValidationException(ValidationRules.MaxLength, "serviceName", 50); } - if (!System.Text.RegularExpressions.Regex.IsMatch(loggerid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (serviceName.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "loggerid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.MinLength, "serviceName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(serviceName, "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$")) + { + throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } + if (cacheId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cacheId"); + } + if (cacheId != null) + { + if (cacheId.Length > 80) + { + throw new ValidationException(ValidationRules.MaxLength, "cacheId", 80); + } + if (cacheId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "cacheId", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(cacheId, "^[^*#&+:<>?]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "cacheId", "^[^*#&+:<>?]+$"); + } + } + if (ifMatch == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ifMatch"); + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -1003,20 +1386,17 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("apiId", apiId); - tracingParameters.Add("diagnosticId", diagnosticId); - tracingParameters.Add("loggerid", loggerid); + tracingParameters.Add("cacheId", cacheId); + tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/diagnostics/{diagnosticId}/loggers/{loggerid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/caches/{cacheId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); - _url = _url.Replace("{diagnosticId}", System.Uri.EscapeDataString(diagnosticId)); - _url = _url.Replace("{loggerid}", System.Uri.EscapeDataString(loggerid)); + _url = _url.Replace("{cacheId}", System.Uri.EscapeDataString(cacheId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -1037,6 +1417,14 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } + if (ifMatch != null) + { + if (_httpRequest.Headers.Contains("If-Match")) + { + _httpRequest.Headers.Remove("If-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -1126,7 +1514,8 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) } /// - /// Lists all loggers associated with the specified Diagnostic of an API. + /// Lists a collection of all external Caches in the specified service + /// instance. /// /// /// The NextLink from the previous successful call to List operation. @@ -1152,7 +1541,7 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -1261,7 +1650,7 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1274,7 +1663,7 @@ internal ApiDiagnosticLoggerOperations(ApiManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/CacheOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/CacheOperationsExtensions.cs new file mode 100644 index 000000000000..eb5d630314b5 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/CacheOperationsExtensions.cs @@ -0,0 +1,393 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for CacheOperations. + /// + public static partial class CacheOperationsExtensions + { + /// + /// Lists a collection of all external Caches in the specified service + /// instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Number of records to return. + /// + /// + /// Number of records to skip. + /// + public static IPage ListByService(this ICacheOperations operations, string resourceGroupName, string serviceName, int? top = default(int?), int? skip = default(int?)) + { + return operations.ListByServiceAsync(resourceGroupName, serviceName, top, skip).GetAwaiter().GetResult(); + } + + /// + /// Lists a collection of all external Caches in the specified service + /// instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Number of records to return. + /// + /// + /// Number of records to skip. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByServiceAsync(this ICacheOperations operations, string resourceGroupName, string serviceName, int? top = default(int?), int? skip = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, top, skip, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the entity state (Etag) version of the Cache specified by its + /// identifier. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). + /// + public static CacheGetEntityTagHeaders GetEntityTag(this ICacheOperations operations, string resourceGroupName, string serviceName, string cacheId) + { + return operations.GetEntityTagAsync(resourceGroupName, serviceName, cacheId).GetAwaiter().GetResult(); + } + + /// + /// Gets the entity state (Etag) version of the Cache specified by its + /// identifier. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). + /// + /// + /// The cancellation token. + /// + public static async Task GetEntityTagAsync(this ICacheOperations operations, string resourceGroupName, string serviceName, string cacheId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetEntityTagWithHttpMessagesAsync(resourceGroupName, serviceName, cacheId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Headers; + } + } + + /// + /// Gets the details of the Cache specified by its identifier. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). + /// + public static CacheContract Get(this ICacheOperations operations, string resourceGroupName, string serviceName, string cacheId) + { + return operations.GetAsync(resourceGroupName, serviceName, cacheId).GetAwaiter().GetResult(); + } + + /// + /// Gets the details of the Cache specified by its identifier. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ICacheOperations operations, string resourceGroupName, string serviceName, string cacheId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serviceName, cacheId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or updates an External Cache to be used in Api Management instance. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). + /// + /// + /// Create or Update parameters. + /// + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// + public static CacheContract CreateOrUpdate(this ICacheOperations operations, string resourceGroupName, string serviceName, string cacheId, CacheContract parameters, string ifMatch = default(string)) + { + return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, cacheId, parameters, ifMatch).GetAwaiter().GetResult(); + } + + /// + /// Creates or updates an External Cache to be used in Api Management instance. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). + /// + /// + /// Create or Update parameters. + /// + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this ICacheOperations operations, string resourceGroupName, string serviceName, string cacheId, CacheContract parameters, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, cacheId, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Updates the details of the cache specified by its identifier. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). + /// + /// + /// Update parameters. + /// + /// + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional + /// update. + /// + public static void Update(this ICacheOperations operations, string resourceGroupName, string serviceName, string cacheId, CacheUpdateParameters parameters, string ifMatch) + { + operations.UpdateAsync(resourceGroupName, serviceName, cacheId, parameters, ifMatch).GetAwaiter().GetResult(); + } + + /// + /// Updates the details of the cache specified by its identifier. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). + /// + /// + /// Update parameters. + /// + /// + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional + /// update. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this ICacheOperations operations, string resourceGroupName, string serviceName, string cacheId, CacheUpdateParameters parameters, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.UpdateWithHttpMessagesAsync(resourceGroupName, serviceName, cacheId, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Deletes specific Cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). + /// + /// + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional + /// update. + /// + public static void Delete(this ICacheOperations operations, string resourceGroupName, string serviceName, string cacheId, string ifMatch) + { + operations.DeleteAsync(resourceGroupName, serviceName, cacheId, ifMatch).GetAwaiter().GetResult(); + } + + /// + /// Deletes specific Cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). + /// + /// + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional + /// update. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this ICacheOperations operations, string resourceGroupName, string serviceName, string cacheId, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, cacheId, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Lists a collection of all external Caches in the specified service + /// instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByServiceNext(this ICacheOperations operations, string nextPageLink) + { + return operations.ListByServiceNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists a collection of all external Caches in the specified service + /// instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByServiceNextAsync(this ICacheOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByServiceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/CertificateOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/CertificateOperations.cs index ae6e6479cbba..beb5564e51c7 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/CertificateOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/CertificateOperations.cs @@ -340,9 +340,9 @@ internal CertificateOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "certificateId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(certificateId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(certificateId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "certificateId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "certificateId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -566,9 +566,9 @@ internal CertificateOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "certificateId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(certificateId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(certificateId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "certificateId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "certificateId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -780,7 +780,7 @@ internal CertificateOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string certificateId, CertificateCreateOrUpdateParameters parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string certificateId, CertificateCreateOrUpdateParameters parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -819,9 +819,9 @@ internal CertificateOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "certificateId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(certificateId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(certificateId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "certificateId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "certificateId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -969,7 +969,7 @@ internal CertificateOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1012,6 +1012,19 @@ internal CertificateOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1094,9 +1107,9 @@ internal CertificateOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "certificateId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(certificateId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(certificateId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "certificateId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "certificateId", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/DelegationSettingsOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/DelegationSettingsOperations.cs index b7284c44d909..12e1a197102f 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/DelegationSettingsOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/DelegationSettingsOperations.cs @@ -249,7 +249,7 @@ internal DelegationSettingsOperations(ApiManagementClient client) } /// - /// Get Delegation settings. + /// Get Delegation Settings for the Portal. /// /// /// The name of the resource group. @@ -263,7 +263,7 @@ internal DelegationSettingsOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -394,14 +394,13 @@ internal DelegationSettingsOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -411,10 +410,6 @@ internal DelegationSettingsOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -701,6 +696,10 @@ internal DelegationSettingsOperations(ApiManagementClient client) /// /// Create or update parameters. /// + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// /// /// Headers that will be added to request. /// @@ -722,7 +721,7 @@ internal DelegationSettingsOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, PortalDelegationSettings parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, PortalDelegationSettings parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -769,6 +768,7 @@ internal DelegationSettingsOperations(ApiManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("parameters", parameters); + tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } @@ -797,6 +797,14 @@ internal DelegationSettingsOperations(ApiManagementClient client) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } + if (ifMatch != null) + { + if (_httpRequest.Headers.Contains("If-Match")) + { + _httpRequest.Headers.Remove("If-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/DelegationSettingsOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/DelegationSettingsOperationsExtensions.cs index 4e665bf08385..0f5770da5bef 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/DelegationSettingsOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/DelegationSettingsOperationsExtensions.cs @@ -62,7 +62,7 @@ public static DelegationSettingsGetEntityTagHeaders GetEntityTag(this IDelegatio } /// - /// Get Delegation settings. + /// Get Delegation Settings for the Portal. /// /// /// The operations group for this extension method. @@ -79,7 +79,7 @@ public static PortalDelegationSettings Get(this IDelegationSettingsOperations op } /// - /// Get Delegation settings. + /// Get Delegation Settings for the Portal. /// /// /// The operations group for this extension method. @@ -169,9 +169,13 @@ public static void Update(this IDelegationSettingsOperations operations, string /// /// Create or update parameters. /// - public static PortalDelegationSettings CreateOrUpdate(this IDelegationSettingsOperations operations, string resourceGroupName, string serviceName, PortalDelegationSettings parameters) + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// + public static PortalDelegationSettings CreateOrUpdate(this IDelegationSettingsOperations operations, string resourceGroupName, string serviceName, PortalDelegationSettings parameters, string ifMatch = default(string)) { - return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, parameters).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, parameters, ifMatch).GetAwaiter().GetResult(); } /// @@ -189,12 +193,16 @@ public static PortalDelegationSettings CreateOrUpdate(this IDelegationSettingsOp /// /// Create or update parameters. /// + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IDelegationSettingsOperations operations, string resourceGroupName, string serviceName, PortalDelegationSettings parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IDelegationSettingsOperations operations, string resourceGroupName, string serviceName, PortalDelegationSettings parameters, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/DiagnosticLoggerOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/DiagnosticLoggerOperations.cs deleted file mode 100644 index 918ff79c7111..000000000000 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/DiagnosticLoggerOperations.cs +++ /dev/null @@ -1,1199 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.ApiManagement -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Microsoft.Rest.Azure.OData; - using Models; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - using System.Net; - using System.Net.Http; - using System.Threading; - using System.Threading.Tasks; - - /// - /// DiagnosticLoggerOperations operations. - /// - internal partial class DiagnosticLoggerOperations : IServiceOperations, IDiagnosticLoggerOperations - { - /// - /// Initializes a new instance of the DiagnosticLoggerOperations class. - /// - /// - /// Reference to the service client. - /// - /// - /// Thrown when a required parameter is null - /// - internal DiagnosticLoggerOperations(ApiManagementClient client) - { - if (client == null) - { - throw new System.ArgumentNullException("client"); - } - Client = client; - } - - /// - /// Gets a reference to the ApiManagementClient - /// - public ApiManagementClient Client { get; private set; } - - /// - /// Lists all loggers associated with the specified Diagnostic of the API - /// Management service instance. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// OData parameters to apply to the operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, string diagnosticId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serviceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "serviceName"); - } - if (serviceName != null) - { - if (serviceName.Length > 50) - { - throw new ValidationException(ValidationRules.MaxLength, "serviceName", 50); - } - if (serviceName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "serviceName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(serviceName, "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$")) - { - throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); - } - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (diagnosticId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "diagnosticId"); - } - if (diagnosticId != null) - { - if (diagnosticId.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "diagnosticId", 80); - } - if (diagnosticId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "diagnosticId", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) - { - throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); - } - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("odataQuery", odataQuery); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("diagnosticId", diagnosticId); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByService", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/diagnostics/{diagnosticId}/loggers").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{diagnosticId}", System.Uri.EscapeDataString(diagnosticId)); - List _queryParameters = new List(); - if (odataQuery != null) - { - var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) - { - _queryParameters.Add(_odataFilter); - } - } - if (Client.ApiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Checks that logger entity specified by identifier is associated with the - /// diagnostics entity. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service instance. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string diagnosticId, string loggerid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serviceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "serviceName"); - } - if (serviceName != null) - { - if (serviceName.Length > 50) - { - throw new ValidationException(ValidationRules.MaxLength, "serviceName", 50); - } - if (serviceName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "serviceName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(serviceName, "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$")) - { - throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); - } - } - if (diagnosticId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "diagnosticId"); - } - if (diagnosticId != null) - { - if (diagnosticId.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "diagnosticId", 80); - } - if (diagnosticId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "diagnosticId", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) - { - throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); - } - } - if (loggerid == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "loggerid"); - } - if (loggerid != null) - { - if (loggerid.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "loggerid", 80); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(loggerid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) - { - throw new ValidationException(ValidationRules.Pattern, "loggerid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); - } - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("diagnosticId", diagnosticId); - tracingParameters.Add("loggerid", loggerid); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CheckEntityExists", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/diagnostics/{diagnosticId}/loggers/{loggerid}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{diagnosticId}", System.Uri.EscapeDataString(diagnosticId)); - _url = _url.Replace("{loggerid}", System.Uri.EscapeDataString(loggerid)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (Client.ApiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("HEAD"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 204 && (int)_statusCode != 404) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - _result.Body = _statusCode == System.Net.HttpStatusCode.NoContent; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Attaches a logger to a diagnostic. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service instance. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string diagnosticId, string loggerid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serviceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "serviceName"); - } - if (serviceName != null) - { - if (serviceName.Length > 50) - { - throw new ValidationException(ValidationRules.MaxLength, "serviceName", 50); - } - if (serviceName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "serviceName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(serviceName, "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$")) - { - throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); - } - } - if (diagnosticId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "diagnosticId"); - } - if (diagnosticId != null) - { - if (diagnosticId.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "diagnosticId", 80); - } - if (diagnosticId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "diagnosticId", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) - { - throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); - } - } - if (loggerid == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "loggerid"); - } - if (loggerid != null) - { - if (loggerid.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "loggerid", 80); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(loggerid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) - { - throw new ValidationException(ValidationRules.Pattern, "loggerid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); - } - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("diagnosticId", diagnosticId); - tracingParameters.Add("loggerid", loggerid); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/diagnostics/{diagnosticId}/loggers/{loggerid}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{diagnosticId}", System.Uri.EscapeDataString(diagnosticId)); - _url = _url.Replace("{loggerid}", System.Uri.EscapeDataString(loggerid)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (Client.ApiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Deletes the specified Logger from Diagnostic. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service instance. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string diagnosticId, string loggerid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serviceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "serviceName"); - } - if (serviceName != null) - { - if (serviceName.Length > 50) - { - throw new ValidationException(ValidationRules.MaxLength, "serviceName", 50); - } - if (serviceName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "serviceName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(serviceName, "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$")) - { - throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); - } - } - if (diagnosticId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "diagnosticId"); - } - if (diagnosticId != null) - { - if (diagnosticId.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "diagnosticId", 80); - } - if (diagnosticId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "diagnosticId", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) - { - throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); - } - } - if (loggerid == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "loggerid"); - } - if (loggerid != null) - { - if (loggerid.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "loggerid", 80); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(loggerid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) - { - throw new ValidationException(ValidationRules.Pattern, "loggerid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); - } - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("diagnosticId", diagnosticId); - tracingParameters.Add("loggerid", loggerid); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/diagnostics/{diagnosticId}/loggers/{loggerid}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{diagnosticId}", System.Uri.EscapeDataString(diagnosticId)); - _url = _url.Replace("{loggerid}", System.Uri.EscapeDataString(loggerid)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (Client.ApiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Lists all loggers associated with the specified Diagnostic of the API - /// Management service instance. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByServiceNext", tracingParameters); - } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - } -} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/DiagnosticLoggerOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/DiagnosticLoggerOperationsExtensions.cs deleted file mode 100644 index 1626d62c05df..000000000000 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/DiagnosticLoggerOperationsExtensions.cs +++ /dev/null @@ -1,279 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.ApiManagement -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Microsoft.Rest.Azure.OData; - using Models; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for DiagnosticLoggerOperations. - /// - public static partial class DiagnosticLoggerOperationsExtensions - { - /// - /// Lists all loggers associated with the specified Diagnostic of the API - /// Management service instance. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// OData parameters to apply to the operation. - /// - public static IPage ListByService(this IDiagnosticLoggerOperations operations, string resourceGroupName, string serviceName, string diagnosticId, ODataQuery odataQuery = default(ODataQuery)) - { - return operations.ListByServiceAsync(resourceGroupName, serviceName, diagnosticId, odataQuery).GetAwaiter().GetResult(); - } - - /// - /// Lists all loggers associated with the specified Diagnostic of the API - /// Management service instance. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// OData parameters to apply to the operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListByServiceAsync(this IDiagnosticLoggerOperations operations, string resourceGroupName, string serviceName, string diagnosticId, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, diagnosticId, odataQuery, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Checks that logger entity specified by identifier is associated with the - /// diagnostics entity. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service instance. - /// - public static bool CheckEntityExists(this IDiagnosticLoggerOperations operations, string resourceGroupName, string serviceName, string diagnosticId, string loggerid) - { - return operations.CheckEntityExistsAsync(resourceGroupName, serviceName, diagnosticId, loggerid).GetAwaiter().GetResult(); - } - - /// - /// Checks that logger entity specified by identifier is associated with the - /// diagnostics entity. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service instance. - /// - /// - /// The cancellation token. - /// - public static async Task CheckEntityExistsAsync(this IDiagnosticLoggerOperations operations, string resourceGroupName, string serviceName, string diagnosticId, string loggerid, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.CheckEntityExistsWithHttpMessagesAsync(resourceGroupName, serviceName, diagnosticId, loggerid, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Attaches a logger to a diagnostic. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service instance. - /// - public static LoggerContract CreateOrUpdate(this IDiagnosticLoggerOperations operations, string resourceGroupName, string serviceName, string diagnosticId, string loggerid) - { - return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, diagnosticId, loggerid).GetAwaiter().GetResult(); - } - - /// - /// Attaches a logger to a diagnostic. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service instance. - /// - /// - /// The cancellation token. - /// - public static async Task CreateOrUpdateAsync(this IDiagnosticLoggerOperations operations, string resourceGroupName, string serviceName, string diagnosticId, string loggerid, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, diagnosticId, loggerid, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Deletes the specified Logger from Diagnostic. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service instance. - /// - public static void Delete(this IDiagnosticLoggerOperations operations, string resourceGroupName, string serviceName, string diagnosticId, string loggerid) - { - operations.DeleteAsync(resourceGroupName, serviceName, diagnosticId, loggerid).GetAwaiter().GetResult(); - } - - /// - /// Deletes the specified Logger from Diagnostic. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service instance. - /// - /// - /// The cancellation token. - /// - public static async Task DeleteAsync(this IDiagnosticLoggerOperations operations, string resourceGroupName, string serviceName, string diagnosticId, string loggerid, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, diagnosticId, loggerid, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Lists all loggers associated with the specified Diagnostic of the API - /// Management service instance. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListByServiceNext(this IDiagnosticLoggerOperations operations, string nextPageLink) - { - return operations.ListByServiceNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Lists all loggers associated with the specified Diagnostic of the API - /// Management service instance. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListByServiceNextAsync(this IDiagnosticLoggerOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListByServiceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/DiagnosticOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/DiagnosticOperations.cs index b734cf997a70..2a52dbc18ad4 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/DiagnosticOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/DiagnosticOperations.cs @@ -340,9 +340,9 @@ internal DiagnosticOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "diagnosticId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -566,9 +566,9 @@ internal DiagnosticOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "diagnosticId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -778,7 +778,7 @@ internal DiagnosticOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string diagnosticId, DiagnosticContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string diagnosticId, DiagnosticContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -817,9 +817,9 @@ internal DiagnosticOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "diagnosticId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -967,7 +967,7 @@ internal DiagnosticOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1010,6 +1010,19 @@ internal DiagnosticOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1095,9 +1108,9 @@ internal DiagnosticOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "diagnosticId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1334,9 +1347,9 @@ internal DiagnosticOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "diagnosticId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(diagnosticId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "diagnosticId", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/EmailTemplateOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/EmailTemplateOperations.cs index 57cef424fd7d..1768a7b5b499 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/EmailTemplateOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/EmailTemplateOperations.cs @@ -59,6 +59,13 @@ internal EmailTemplateOperations(ApiManagementClient client) /// /// The name of the API Management service. /// + /// + /// | Field | Usage | Supported operators | Supported + /// functions + /// |</br>|-------------|-------------|-------------|-------------|</br>| + /// name | filter | ge, le, eq, ne, gt, lt | substringof, contains, startswith, + /// endswith | </br> + /// /// /// Number of records to return. /// @@ -71,7 +78,7 @@ internal EmailTemplateOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -86,7 +93,7 @@ internal EmailTemplateOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, int? top = default(int?), int? skip = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, string filter = default(string), int? top = default(int?), int? skip = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -136,6 +143,7 @@ internal EmailTemplateOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); + tracingParameters.Add("filter", filter); tracingParameters.Add("top", top); tracingParameters.Add("skip", skip); tracingParameters.Add("cancellationToken", cancellationToken); @@ -148,6 +156,10 @@ internal EmailTemplateOperations(ApiManagementClient client) _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } if (top != null) { _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); @@ -220,14 +232,13 @@ internal EmailTemplateOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -237,10 +248,6 @@ internal EmailTemplateOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -1032,6 +1039,11 @@ internal EmailTemplateOperations(ApiManagementClient client) /// /// Update parameters. /// + /// + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional + /// update. + /// /// /// Headers that will be added to request. /// @@ -1050,7 +1062,7 @@ internal EmailTemplateOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string templateName, EmailTemplateUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string templateName, EmailTemplateUpdateParameters parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1083,6 +1095,10 @@ internal EmailTemplateOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } + if (ifMatch == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ifMatch"); + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -1102,6 +1118,7 @@ internal EmailTemplateOperations(ApiManagementClient client) tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("templateName", templateName); tracingParameters.Add("parameters", parameters); + tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); } @@ -1131,6 +1148,14 @@ internal EmailTemplateOperations(ApiManagementClient client) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } + if (ifMatch != null) + { + if (_httpRequest.Headers.Contains("If-Match")) + { + _httpRequest.Headers.Remove("If-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -1458,7 +1483,7 @@ internal EmailTemplateOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1554,14 +1579,13 @@ internal EmailTemplateOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1571,10 +1595,6 @@ internal EmailTemplateOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/EmailTemplateOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/EmailTemplateOperationsExtensions.cs index ad8fed2cd66f..76eabb2d87aa 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/EmailTemplateOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/EmailTemplateOperationsExtensions.cs @@ -33,15 +33,22 @@ public static partial class EmailTemplateOperationsExtensions /// /// The name of the API Management service. /// + /// + /// | Field | Usage | Supported operators | Supported + /// functions + /// |</br>|-------------|-------------|-------------|-------------|</br>| + /// name | filter | ge, le, eq, ne, gt, lt | substringof, contains, startswith, + /// endswith | </br> + /// /// /// Number of records to return. /// /// /// Number of records to skip. /// - public static IPage ListByService(this IEmailTemplateOperations operations, string resourceGroupName, string serviceName, int? top = default(int?), int? skip = default(int?)) + public static IPage ListByService(this IEmailTemplateOperations operations, string resourceGroupName, string serviceName, string filter = default(string), int? top = default(int?), int? skip = default(int?)) { - return operations.ListByServiceAsync(resourceGroupName, serviceName, top, skip).GetAwaiter().GetResult(); + return operations.ListByServiceAsync(resourceGroupName, serviceName, filter, top, skip).GetAwaiter().GetResult(); } /// @@ -56,6 +63,13 @@ public static partial class EmailTemplateOperationsExtensions /// /// The name of the API Management service. /// + /// + /// | Field | Usage | Supported operators | Supported + /// functions + /// |</br>|-------------|-------------|-------------|-------------|</br>| + /// name | filter | ge, le, eq, ne, gt, lt | substringof, contains, startswith, + /// endswith | </br> + /// /// /// Number of records to return. /// @@ -65,9 +79,9 @@ public static partial class EmailTemplateOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListByServiceAsync(this IEmailTemplateOperations operations, string resourceGroupName, string serviceName, int? top = default(int?), int? skip = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServiceAsync(this IEmailTemplateOperations operations, string resourceGroupName, string serviceName, string filter = default(string), int? top = default(int?), int? skip = default(int?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, top, skip, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, filter, top, skip, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -301,9 +315,14 @@ public static EmailTemplateContract Get(this IEmailTemplateOperations operations /// /// Update parameters. /// - public static void Update(this IEmailTemplateOperations operations, string resourceGroupName, string serviceName, string templateName, EmailTemplateUpdateParameters parameters) + /// + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional + /// update. + /// + public static void Update(this IEmailTemplateOperations operations, string resourceGroupName, string serviceName, string templateName, EmailTemplateUpdateParameters parameters, string ifMatch) { - operations.UpdateAsync(resourceGroupName, serviceName, templateName, parameters).GetAwaiter().GetResult(); + operations.UpdateAsync(resourceGroupName, serviceName, templateName, parameters, ifMatch).GetAwaiter().GetResult(); } /// @@ -332,12 +351,17 @@ public static void Update(this IEmailTemplateOperations operations, string resou /// /// Update parameters. /// + /// + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional + /// update. + /// /// /// The cancellation token. /// - public static async Task UpdateAsync(this IEmailTemplateOperations operations, string resourceGroupName, string serviceName, string templateName, EmailTemplateUpdateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IEmailTemplateOperations operations, string resourceGroupName, string serviceName, string templateName, EmailTemplateUpdateParameters parameters, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.UpdateWithHttpMessagesAsync(resourceGroupName, serviceName, templateName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.UpdateWithHttpMessagesAsync(resourceGroupName, serviceName, templateName, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/GroupOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/GroupOperations.cs index 46a2eb2a4eb7..38cbfefab192 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/GroupOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/GroupOperations.cs @@ -70,7 +70,7 @@ internal GroupOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -210,14 +210,13 @@ internal GroupOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -227,10 +226,6 @@ internal GroupOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -338,17 +333,17 @@ internal GroupOperations(ApiManagementClient client) } if (groupId != null) { - if (groupId.Length > 80) + if (groupId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 80); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 256); } if (groupId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "groupId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "groupId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -564,17 +559,17 @@ internal GroupOperations(ApiManagementClient client) } if (groupId != null) { - if (groupId.Length > 80) + if (groupId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 80); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 256); } if (groupId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "groupId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "groupId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -784,7 +779,7 @@ internal GroupOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string groupId, GroupCreateParameters parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string groupId, GroupCreateParameters parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -815,17 +810,17 @@ internal GroupOperations(ApiManagementClient client) } if (groupId != null) { - if (groupId.Length > 80) + if (groupId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 80); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 256); } if (groupId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "groupId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "groupId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -973,7 +968,7 @@ internal GroupOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1016,6 +1011,19 @@ internal GroupOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1093,17 +1101,17 @@ internal GroupOperations(ApiManagementClient client) } if (groupId != null) { - if (groupId.Length > 80) + if (groupId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 80); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 256); } if (groupId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "groupId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "groupId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1332,17 +1340,17 @@ internal GroupOperations(ApiManagementClient client) } if (groupId != null) { - if (groupId.Length > 80) + if (groupId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 80); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 256); } if (groupId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "groupId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "groupId", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) @@ -1506,7 +1514,7 @@ internal GroupOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1602,14 +1610,13 @@ internal GroupOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1619,10 +1626,6 @@ internal GroupOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/GroupUserOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/GroupUserOperations.cs index 8e870ba00277..1d7b50bd59e9 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/GroupUserOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/GroupUserOperations.cs @@ -52,8 +52,7 @@ internal GroupUserOperations(ApiManagementClient client) public ApiManagementClient Client { get; private set; } /// - /// Lists a collection of the members of the group, specified by its - /// identifier. + /// Lists a collection of user entities associated with the group. /// /// /// The name of the resource group. @@ -120,17 +119,17 @@ internal GroupUserOperations(ApiManagementClient client) } if (groupId != null) { - if (groupId.Length > 80) + if (groupId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 80); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 256); } if (groupId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "groupId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "groupId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -309,7 +308,7 @@ internal GroupUserOperations(ApiManagementClient client) /// Group identifier. Must be unique in the current API Management service /// instance. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -331,7 +330,7 @@ internal GroupUserOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string groupId, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string groupId, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -362,36 +361,36 @@ internal GroupUserOperations(ApiManagementClient client) } if (groupId != null) { - if (groupId.Length > 80) + if (groupId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 80); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 256); } if (groupId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "groupId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "groupId", "^[^*#&+:<>?]+$"); } } - if (uid == null) + if (userId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "uid"); + throw new ValidationException(ValidationRules.CannotBeNull, "userId"); } - if (uid != null) + if (userId != null) { - if (uid.Length > 80) + if (userId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "uid", 80); + throw new ValidationException(ValidationRules.MaxLength, "userId", 80); } - if (uid.Length < 1) + if (userId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "uid", 1); + throw new ValidationException(ValidationRules.MinLength, "userId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(uid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(userId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "uid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "userId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -412,17 +411,17 @@ internal GroupUserOperations(ApiManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("groupId", groupId); - tracingParameters.Add("uid", uid); + tracingParameters.Add("userId", userId); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CheckEntityExists", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/groups/{groupId}/users/{uid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/groups/{groupId}/users/{userId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); - _url = _url.Replace("{uid}", System.Uri.EscapeDataString(uid)); + _url = _url.Replace("{userId}", System.Uri.EscapeDataString(userId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -533,7 +532,7 @@ internal GroupUserOperations(ApiManagementClient client) } /// - /// Adds a user to the specified group. + /// Add existing user to existing group /// /// /// The name of the resource group. @@ -545,7 +544,7 @@ internal GroupUserOperations(ApiManagementClient client) /// Group identifier. Must be unique in the current API Management service /// instance. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -570,7 +569,7 @@ internal GroupUserOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string groupId, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string groupId, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -601,36 +600,36 @@ internal GroupUserOperations(ApiManagementClient client) } if (groupId != null) { - if (groupId.Length > 80) + if (groupId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 80); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 256); } if (groupId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "groupId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "groupId", "^[^*#&+:<>?]+$"); } } - if (uid == null) + if (userId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "uid"); + throw new ValidationException(ValidationRules.CannotBeNull, "userId"); } - if (uid != null) + if (userId != null) { - if (uid.Length > 80) + if (userId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "uid", 80); + throw new ValidationException(ValidationRules.MaxLength, "userId", 80); } - if (uid.Length < 1) + if (userId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "uid", 1); + throw new ValidationException(ValidationRules.MinLength, "userId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(uid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(userId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "uid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "userId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -651,17 +650,17 @@ internal GroupUserOperations(ApiManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("groupId", groupId); - tracingParameters.Add("uid", uid); + tracingParameters.Add("userId", userId); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Create", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/groups/{groupId}/users/{uid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/groups/{groupId}/users/{userId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); - _url = _url.Replace("{uid}", System.Uri.EscapeDataString(uid)); + _url = _url.Replace("{userId}", System.Uri.EscapeDataString(userId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -819,7 +818,7 @@ internal GroupUserOperations(ApiManagementClient client) /// Group identifier. Must be unique in the current API Management service /// instance. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -841,7 +840,7 @@ internal GroupUserOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string groupId, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string groupId, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -872,36 +871,36 @@ internal GroupUserOperations(ApiManagementClient client) } if (groupId != null) { - if (groupId.Length > 80) + if (groupId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 80); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 256); } if (groupId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "groupId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "groupId", "^[^*#&+:<>?]+$"); } } - if (uid == null) + if (userId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "uid"); + throw new ValidationException(ValidationRules.CannotBeNull, "userId"); } - if (uid != null) + if (userId != null) { - if (uid.Length > 80) + if (userId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "uid", 80); + throw new ValidationException(ValidationRules.MaxLength, "userId", 80); } - if (uid.Length < 1) + if (userId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "uid", 1); + throw new ValidationException(ValidationRules.MinLength, "userId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(uid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(userId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "uid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "userId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -922,17 +921,17 @@ internal GroupUserOperations(ApiManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("groupId", groupId); - tracingParameters.Add("uid", uid); + tracingParameters.Add("userId", userId); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/groups/{groupId}/users/{uid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/groups/{groupId}/users/{userId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); - _url = _url.Replace("{uid}", System.Uri.EscapeDataString(uid)); + _url = _url.Replace("{userId}", System.Uri.EscapeDataString(userId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -1042,8 +1041,7 @@ internal GroupUserOperations(ApiManagementClient client) } /// - /// Lists a collection of the members of the group, specified by its - /// identifier. + /// Lists a collection of user entities associated with the group. /// /// /// The NextLink from the previous successful call to List operation. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/GroupUserOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/GroupUserOperationsExtensions.cs index 8919f7cbf912..a74b29978d93 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/GroupUserOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/GroupUserOperationsExtensions.cs @@ -23,8 +23,7 @@ namespace Microsoft.Azure.Management.ApiManagement public static partial class GroupUserOperationsExtensions { /// - /// Lists a collection of the members of the group, specified by its - /// identifier. + /// Lists a collection of user entities associated with the group. /// /// /// The operations group for this extension method. @@ -48,8 +47,7 @@ public static partial class GroupUserOperationsExtensions } /// - /// Lists a collection of the members of the group, specified by its - /// identifier. + /// Lists a collection of user entities associated with the group. /// /// /// The operations group for this extension method. @@ -95,13 +93,13 @@ public static partial class GroupUserOperationsExtensions /// Group identifier. Must be unique in the current API Management service /// instance. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// - public static bool CheckEntityExists(this IGroupUserOperations operations, string resourceGroupName, string serviceName, string groupId, string uid) + public static bool CheckEntityExists(this IGroupUserOperations operations, string resourceGroupName, string serviceName, string groupId, string userId) { - return operations.CheckEntityExistsAsync(resourceGroupName, serviceName, groupId, uid).GetAwaiter().GetResult(); + return operations.CheckEntityExistsAsync(resourceGroupName, serviceName, groupId, userId).GetAwaiter().GetResult(); } /// @@ -121,23 +119,23 @@ public static bool CheckEntityExists(this IGroupUserOperations operations, strin /// Group identifier. Must be unique in the current API Management service /// instance. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// /// /// The cancellation token. /// - public static async Task CheckEntityExistsAsync(this IGroupUserOperations operations, string resourceGroupName, string serviceName, string groupId, string uid, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CheckEntityExistsAsync(this IGroupUserOperations operations, string resourceGroupName, string serviceName, string groupId, string userId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CheckEntityExistsWithHttpMessagesAsync(resourceGroupName, serviceName, groupId, uid, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CheckEntityExistsWithHttpMessagesAsync(resourceGroupName, serviceName, groupId, userId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Adds a user to the specified group. + /// Add existing user to existing group /// /// /// The operations group for this extension method. @@ -152,17 +150,17 @@ public static bool CheckEntityExists(this IGroupUserOperations operations, strin /// Group identifier. Must be unique in the current API Management service /// instance. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// - public static UserContract Create(this IGroupUserOperations operations, string resourceGroupName, string serviceName, string groupId, string uid) + public static UserContract Create(this IGroupUserOperations operations, string resourceGroupName, string serviceName, string groupId, string userId) { - return operations.CreateAsync(resourceGroupName, serviceName, groupId, uid).GetAwaiter().GetResult(); + return operations.CreateAsync(resourceGroupName, serviceName, groupId, userId).GetAwaiter().GetResult(); } /// - /// Adds a user to the specified group. + /// Add existing user to existing group /// /// /// The operations group for this extension method. @@ -177,16 +175,16 @@ public static UserContract Create(this IGroupUserOperations operations, string r /// Group identifier. Must be unique in the current API Management service /// instance. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// /// /// The cancellation token. /// - public static async Task CreateAsync(this IGroupUserOperations operations, string resourceGroupName, string serviceName, string groupId, string uid, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateAsync(this IGroupUserOperations operations, string resourceGroupName, string serviceName, string groupId, string userId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, serviceName, groupId, uid, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, serviceName, groupId, userId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -208,13 +206,13 @@ public static UserContract Create(this IGroupUserOperations operations, string r /// Group identifier. Must be unique in the current API Management service /// instance. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// - public static void Delete(this IGroupUserOperations operations, string resourceGroupName, string serviceName, string groupId, string uid) + public static void Delete(this IGroupUserOperations operations, string resourceGroupName, string serviceName, string groupId, string userId) { - operations.DeleteAsync(resourceGroupName, serviceName, groupId, uid).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, serviceName, groupId, userId).GetAwaiter().GetResult(); } /// @@ -233,21 +231,20 @@ public static void Delete(this IGroupUserOperations operations, string resourceG /// Group identifier. Must be unique in the current API Management service /// instance. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IGroupUserOperations operations, string resourceGroupName, string serviceName, string groupId, string uid, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IGroupUserOperations operations, string resourceGroupName, string serviceName, string groupId, string userId, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, groupId, uid, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, groupId, userId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Lists a collection of the members of the group, specified by its - /// identifier. + /// Lists a collection of user entities associated with the group. /// /// /// The operations group for this extension method. @@ -261,8 +258,7 @@ public static IPage ListNext(this IGroupUserOperations operations, } /// - /// Lists a collection of the members of the group, specified by its - /// identifier. + /// Lists a collection of user entities associated with the group. /// /// /// The operations group for this extension method. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiDiagnosticLoggerOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiDiagnosticLoggerOperations.cs deleted file mode 100644 index 462730ebd498..000000000000 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiDiagnosticLoggerOperations.cs +++ /dev/null @@ -1,194 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.ApiManagement -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Microsoft.Rest.Azure.OData; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// ApiDiagnosticLoggerOperations operations. - /// - public partial interface IApiDiagnosticLoggerOperations - { - /// - /// Lists all loggers associated with the specified Diagnostic of an - /// API. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// API identifier. Must be unique in the current API Management - /// service instance. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management - /// service instance. - /// - /// - /// OData parameters to apply to the operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string diagnosticId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Checks that logger entity specified by identifier is associated - /// with the diagnostics entity. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// API identifier. Must be unique in the current API Management - /// service instance. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management - /// service instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service - /// instance. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task> CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string diagnosticId, string loggerid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Attaches a logger to a diagnostic for an API. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// API identifier. Must be unique in the current API Management - /// service instance. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management - /// service instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service - /// instance. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string diagnosticId, string loggerid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Deletes the specified Logger from Diagnostic for an API. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// API identifier. Must be unique in the current API Management - /// service instance. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management - /// service instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service - /// instance. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string diagnosticId, string loggerid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Lists all loggers associated with the specified Diagnostic of an - /// API. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiDiagnosticOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiDiagnosticOperations.cs index 586743c555c6..cb1588ad34ef 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiDiagnosticOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiDiagnosticOperations.cs @@ -160,7 +160,7 @@ public partial interface IApiDiagnosticOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string diagnosticId, DiagnosticContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string diagnosticId, DiagnosticContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates the details of the Diagnostic for an API specified by its /// identifier. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiExportOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiExportOperations.cs index fe19cf79c0bb..378dcb46bb7b 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiExportOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiExportOperations.cs @@ -42,7 +42,7 @@ public partial interface IApiExportOperations /// /// Format in which to export the Api Details to the Storage Blob with /// Sas Key valid for 5 minutes. Possible values include: 'Swagger', - /// 'Wsdl', 'Wadl' + /// 'Wsdl', 'Wadl', 'Openapi' /// /// /// The headers that will be added to request. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiIssueAttachmentOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiIssueAttachmentOperations.cs index 263d26c29628..dc3d68771cc7 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiIssueAttachmentOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiIssueAttachmentOperations.cs @@ -25,7 +25,8 @@ namespace Microsoft.Azure.Management.ApiManagement public partial interface IApiIssueAttachmentOperations { /// - /// Lists all comments for the Issue associated with the specified API. + /// Lists all attachments for the Issue associated with the specified + /// API. /// /// /// The name of the resource group. @@ -159,9 +160,8 @@ public partial interface IApiIssueAttachmentOperations /// Create parameters. /// /// - /// ETag of the Issue Entity. ETag should match the current entity - /// state from the header response of the GET request or it should be * - /// for unconditional update. + /// ETag of the Entity. Not required when creating an entity, but + /// required when updating an entity. /// /// /// The headers that will be added to request. @@ -178,7 +178,7 @@ public partial interface IApiIssueAttachmentOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, string attachmentId, IssueAttachmentContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, string attachmentId, IssueAttachmentContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes the specified comment from an Issue. /// @@ -201,9 +201,9 @@ public partial interface IApiIssueAttachmentOperations /// current Issue. /// /// - /// ETag of the Issue Entity. ETag should match the current entity - /// state from the header response of the GET request or it should be * - /// for unconditional update. + /// ETag of the Entity. ETag should match the current entity state from + /// the header response of the GET request or it should be * for + /// unconditional update. /// /// /// The headers that will be added to request. @@ -219,7 +219,8 @@ public partial interface IApiIssueAttachmentOperations /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, string attachmentId, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all comments for the Issue associated with the specified API. + /// Lists all attachments for the Issue associated with the specified + /// API. /// /// /// The NextLink from the previous successful call to List operation. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiIssueCommentOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiIssueCommentOperations.cs index 8934080ecfb9..87d36014eb92 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiIssueCommentOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiIssueCommentOperations.cs @@ -159,9 +159,8 @@ public partial interface IApiIssueCommentOperations /// Create parameters. /// /// - /// ETag of the Issue Entity. ETag should match the current entity - /// state from the header response of the GET request or it should be * - /// for unconditional update. + /// ETag of the Entity. Not required when creating an entity, but + /// required when updating an entity. /// /// /// The headers that will be added to request. @@ -178,7 +177,7 @@ public partial interface IApiIssueCommentOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, string commentId, IssueCommentContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, string commentId, IssueCommentContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes the specified comment from an Issue. /// @@ -201,9 +200,9 @@ public partial interface IApiIssueCommentOperations /// Issue. /// /// - /// ETag of the Issue Entity. ETag should match the current entity - /// state from the header response of the GET request or it should be * - /// for unconditional update. + /// ETag of the Entity. ETag should match the current entity state from + /// the header response of the GET request or it should be * for + /// unconditional update. /// /// /// The headers that will be added to request. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiIssueOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiIssueOperations.cs index 463027006fd2..e8943bde687e 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiIssueOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiIssueOperations.cs @@ -40,6 +40,9 @@ public partial interface IApiIssueOperations /// /// OData parameters to apply to the operation. /// + /// + /// Expand the comment attachments. + /// /// /// The headers that will be added to request. /// @@ -55,7 +58,7 @@ public partial interface IApiIssueOperations /// /// Thrown when a required parameter is null /// - Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), bool? expandCommentsAttachments = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the entity state (Etag) version of the Issue for an API /// specified by its identifier. @@ -105,6 +108,9 @@ public partial interface IApiIssueOperations /// Issue identifier. Must be unique in the current API Management /// service instance. /// + /// + /// Expand the comment attachments. + /// /// /// The headers that will be added to request. /// @@ -120,7 +126,7 @@ public partial interface IApiIssueOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, bool? expandCommentsAttachments = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates a new Issue for an API or updates an existing one. /// @@ -142,9 +148,8 @@ public partial interface IApiIssueOperations /// Create parameters. /// /// - /// ETag of the Issue Entity. ETag should match the current entity - /// state from the header response of the GET request or it should be * - /// for unconditional update. + /// ETag of the Entity. Not required when creating an entity, but + /// required when updating an entity. /// /// /// The headers that will be added to request. @@ -161,7 +166,7 @@ public partial interface IApiIssueOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, IssueContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, IssueContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates an existing issue for an API. /// @@ -183,9 +188,9 @@ public partial interface IApiIssueOperations /// Update parameters. /// /// - /// ETag of the Issue Entity. ETag should match the current entity - /// state from the header response of the GET request or it should be * - /// for unconditional update. + /// ETag of the Entity. ETag should match the current entity state from + /// the header response of the GET request or it should be * for + /// unconditional update. /// /// /// The headers that will be added to request. @@ -199,7 +204,7 @@ public partial interface IApiIssueOperations /// /// Thrown when a required parameter is null /// - Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, IssueUpdateContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string issueId, IssueUpdateContract parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes the specified Issue from an API. /// @@ -218,9 +223,9 @@ public partial interface IApiIssueOperations /// service instance. /// /// - /// ETag of the Issue Entity. ETag should match the current entity - /// state from the header response of the GET request or it should be * - /// for unconditional update. + /// ETag of the Entity. ETag should match the current entity state from + /// the header response of the GET request or it should be * for + /// unconditional update. /// /// /// The headers that will be added to request. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiManagementClient.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiManagementClient.cs index 2efdb50bf1af..af383c0b11fd 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiManagementClient.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiManagementClient.cs @@ -71,30 +71,15 @@ public partial interface IApiManagementClient : System.IDisposable bool? GenerateClientRequestId { get; set; } - /// - /// Gets the IPolicyOperations. - /// - IPolicyOperations Policy { get; } - - /// - /// Gets the IPolicySnippetsOperations. - /// - IPolicySnippetsOperations PolicySnippets { get; } - - /// - /// Gets the IRegionsOperations. - /// - IRegionsOperations Regions { get; } - /// /// Gets the IApiOperations. /// IApiOperations Api { get; } /// - /// Gets the IApiRevisionsOperations. + /// Gets the IApiRevisionOperations. /// - IApiRevisionsOperations ApiRevisions { get; } + IApiRevisionOperations ApiRevision { get; } /// /// Gets the IApiReleaseOperations. @@ -111,6 +96,11 @@ public partial interface IApiManagementClient : System.IDisposable /// IApiOperationPolicyOperations ApiOperationPolicy { get; } + /// + /// Gets the ITagOperations. + /// + ITagOperations Tag { get; } + /// /// Gets the IApiProductOperations. /// @@ -131,11 +121,6 @@ public partial interface IApiManagementClient : System.IDisposable /// IApiDiagnosticOperations ApiDiagnostic { get; } - /// - /// Gets the IApiDiagnosticLoggerOperations. - /// - IApiDiagnosticLoggerOperations ApiDiagnosticLogger { get; } - /// /// Gets the IApiIssueOperations. /// @@ -151,6 +136,21 @@ public partial interface IApiManagementClient : System.IDisposable /// IApiIssueAttachmentOperations ApiIssueAttachment { get; } + /// + /// Gets the IApiTagDescriptionOperations. + /// + IApiTagDescriptionOperations ApiTagDescription { get; } + + /// + /// Gets the IOperationOperations. + /// + IOperationOperations Operation { get; } + + /// + /// Gets the IApiVersionSetOperations. + /// + IApiVersionSetOperations ApiVersionSet { get; } + /// /// Gets the IAuthorizationServerOperations. /// @@ -161,6 +161,11 @@ public partial interface IApiManagementClient : System.IDisposable /// IBackendOperations Backend { get; } + /// + /// Gets the ICacheOperations. + /// + ICacheOperations Cache { get; } + /// /// Gets the ICertificateOperations. /// @@ -186,11 +191,6 @@ public partial interface IApiManagementClient : System.IDisposable /// IDiagnosticOperations Diagnostic { get; } - /// - /// Gets the IDiagnosticLoggerOperations. - /// - IDiagnosticLoggerOperations DiagnosticLogger { get; } - /// /// Gets the IEmailTemplateOperations. /// @@ -211,11 +211,21 @@ public partial interface IApiManagementClient : System.IDisposable /// IIdentityProviderOperations IdentityProvider { get; } + /// + /// Gets the IIssueOperations. + /// + IIssueOperations Issue { get; } + /// /// Gets the ILoggerOperations. /// ILoggerOperations Logger { get; } + /// + /// Gets the INetworkStatusOperations. + /// + INetworkStatusOperations NetworkStatus { get; } + /// /// Gets the INotificationOperations. /// @@ -232,14 +242,19 @@ public partial interface IApiManagementClient : System.IDisposable INotificationRecipientEmailOperations NotificationRecipientEmail { get; } /// - /// Gets the INetworkStatusOperations. + /// Gets the IOpenIdConnectProviderOperations. /// - INetworkStatusOperations NetworkStatus { get; } + IOpenIdConnectProviderOperations OpenIdConnectProvider { get; } /// - /// Gets the IOpenIdConnectProviderOperations. + /// Gets the IPolicyOperations. /// - IOpenIdConnectProviderOperations OpenIdConnectProvider { get; } + IPolicyOperations Policy { get; } + + /// + /// Gets the IPolicySnippetOperations. + /// + IPolicySnippetOperations PolicySnippet { get; } /// /// Gets the ISignInSettingsOperations. @@ -296,6 +311,11 @@ public partial interface IApiManagementClient : System.IDisposable /// IQuotaByPeriodKeysOperations QuotaByPeriodKeys { get; } + /// + /// Gets the IRegionOperations. + /// + IRegionOperations Region { get; } + /// /// Gets the IReportsOperations. /// @@ -311,21 +331,6 @@ public partial interface IApiManagementClient : System.IDisposable /// ITagResourceOperations TagResource { get; } - /// - /// Gets the ITagOperations. - /// - ITagOperations Tag { get; } - - /// - /// Gets the ITagDescriptionOperations. - /// - ITagDescriptionOperations TagDescription { get; } - - /// - /// Gets the IOperationOperations. - /// - IOperationOperations Operation { get; } - /// /// Gets the ITenantAccessOperations. /// @@ -362,9 +367,9 @@ public partial interface IApiManagementClient : System.IDisposable IUserIdentitiesOperations UserIdentities { get; } /// - /// Gets the IApiVersionSetOperations. + /// Gets the IUserConfirmationPasswordOperations. /// - IApiVersionSetOperations ApiVersionSet { get; } + IUserConfirmationPasswordOperations UserConfirmationPassword { get; } /// /// Gets the IApiExportOperations. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiManagementServiceOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiManagementServiceOperations.cs index 4ecd4d550190..214f132e961e 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiManagementServiceOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiManagementServiceOperations.cs @@ -187,10 +187,13 @@ public partial interface IApiManagementServiceOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// List all API Management services within a resource group. /// @@ -314,68 +317,6 @@ public partial interface IApiManagementServiceOperations /// Task> ApplyNetworkConfigurationUpdatesWithHttpMessagesAsync(string resourceGroupName, string serviceName, ApiManagementServiceApplyNetworkConfigurationParameters parameters = default(ApiManagementServiceApplyNetworkConfigurationParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Upload Custom Domain SSL certificate for an API Management service. - /// This operation will be deprecated in future releases. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Parameters supplied to the Upload SSL certificate for an API - /// Management service operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> UploadCertificateWithHttpMessagesAsync(string resourceGroupName, string serviceName, ApiManagementServiceUploadCertificateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Creates, updates, or deletes the custom hostnames for an API - /// Management service. The custom hostname can be applied to the Proxy - /// and Portal endpoint. This is a long running operation and could - /// take several minutes to complete. This operation will be deprecated - /// in the next version update. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Parameters supplied to the UpdateHostname operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> UpdateHostnameWithHttpMessagesAsync(string resourceGroupName, string serviceName, ApiManagementServiceUpdateHostnameParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// /// Restores a backup of an API Management service created using the /// ApiManagementService_Backup operation on the current service. This /// is a long running operation and could take several minutes to @@ -497,8 +438,7 @@ public partial interface IApiManagementServiceOperations /// Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, ApiManagementServiceUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Updates the Microsoft.ApiManagement resource running in the Virtual - /// network to pick the updated network settings. + /// Deletes an existing API Management service. /// /// /// The name of the resource group. @@ -506,12 +446,6 @@ public partial interface IApiManagementServiceOperations /// /// The name of the API Management service. /// - /// - /// Parameters supplied to the Apply Network Configuration operation. - /// If the parameters are empty, all the regions in which the Api - /// Management service is deployed will be updated sequentially without - /// incurring downtime in the region. - /// /// /// The headers that will be added to request. /// @@ -527,13 +461,10 @@ public partial interface IApiManagementServiceOperations /// /// Thrown when a required parameter is null /// - Task> BeginApplyNetworkConfigurationUpdatesWithHttpMessagesAsync(string resourceGroupName, string serviceName, ApiManagementServiceApplyNetworkConfigurationParameters parameters = default(ApiManagementServiceApplyNetworkConfigurationParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Creates, updates, or deletes the custom hostnames for an API - /// Management service. The custom hostname can be applied to the Proxy - /// and Portal endpoint. This is a long running operation and could - /// take several minutes to complete. This operation will be deprecated - /// in the next version update. + /// Updates the Microsoft.ApiManagement resource running in the Virtual + /// network to pick the updated network settings. /// /// /// The name of the resource group. @@ -542,7 +473,10 @@ public partial interface IApiManagementServiceOperations /// The name of the API Management service. /// /// - /// Parameters supplied to the UpdateHostname operation. + /// Parameters supplied to the Apply Network Configuration operation. + /// If the parameters are empty, all the regions in which the Api + /// Management service is deployed will be updated sequentially without + /// incurring downtime in the region. /// /// /// The headers that will be added to request. @@ -559,7 +493,7 @@ public partial interface IApiManagementServiceOperations /// /// Thrown when a required parameter is null /// - Task> BeginUpdateHostnameWithHttpMessagesAsync(string resourceGroupName, string serviceName, ApiManagementServiceUpdateHostnameParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginApplyNetworkConfigurationUpdatesWithHttpMessagesAsync(string resourceGroupName, string serviceName, ApiManagementServiceApplyNetworkConfigurationParameters parameters = default(ApiManagementServiceApplyNetworkConfigurationParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// List all API Management services within a resource group. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperationOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperationOperations.cs index fa1038a00606..16723838dc3d 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperationOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperationOperations.cs @@ -41,6 +41,9 @@ public partial interface IApiOperationOperations /// /// OData parameters to apply to the operation. /// + /// + /// Include tags in the response. + /// /// /// The headers that will be added to request. /// @@ -56,7 +59,7 @@ public partial interface IApiOperationOperations /// /// Thrown when a required parameter is null /// - Task>> ListByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), string tags = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the entity state (Etag) version of the API operation specified /// by its identifier. @@ -163,7 +166,7 @@ public partial interface IApiOperationOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, OperationContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, OperationContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates the details of the operation in the API specified by its /// identifier. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperationPolicyOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperationPolicyOperations.cs index d938f258b4a9..692e57702467 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperationPolicyOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperationPolicyOperations.cs @@ -164,7 +164,7 @@ public partial interface IApiOperationPolicyOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, PolicyContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, PolicyContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes the policy configuration at the Api Operation. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperations.cs index 4723c745afbb..8912cc0f7c09 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperations.cs @@ -37,6 +37,9 @@ public partial interface IApiOperations /// /// OData parameters to apply to the operation. /// + /// + /// Include tags in the response. + /// /// /// Include full ApiVersionSet resource in response /// @@ -55,7 +58,7 @@ public partial interface IApiOperations /// /// Thrown when a required parameter is null /// - Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? expandApiVersionSet = false, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), string tags = default(string), bool? expandApiVersionSet = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the entity state (Etag) version of the API specified by its /// identifier. @@ -234,13 +237,16 @@ public partial interface IApiOperations /// /// OData parameters to apply to the operation. /// + /// + /// Include not tagged APIs. + /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -249,7 +255,45 @@ public partial interface IApiOperations /// /// Thrown when a required parameter is null /// - Task>> ListByTagsWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByTagsWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? includeNotTaggedApis = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates new or updates existing specified API of the API Management + /// service instance. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// 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. + /// + /// + /// Create or update parameters. + /// + /// + /// ETag of the Entity. Not required when creating an entity, but + /// required when updating an entity. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ApiCreateOrUpdateParameter parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists all APIs of the API Management service instance. /// @@ -285,7 +329,7 @@ public partial interface IApiOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiPolicyOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiPolicyOperations.cs index c9922fe8c88a..0482f9eb8da9 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiPolicyOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiPolicyOperations.cs @@ -52,7 +52,7 @@ public partial interface IApiPolicyOperations /// /// Thrown when a required parameter is null /// - Task> ListByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the entity state (Etag) version of the API policy specified by /// its identifier. @@ -147,7 +147,7 @@ public partial interface IApiPolicyOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, PolicyContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, PolicyContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes the policy configuration at the Api. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiReleaseOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiReleaseOperations.cs index 60592ab071fd..89a362870dc8 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiReleaseOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiReleaseOperations.cs @@ -58,7 +58,7 @@ public partial interface IApiReleaseOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Returns the etag of an API release. /// @@ -121,7 +121,7 @@ public partial interface IApiReleaseOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string releaseId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string releaseId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates a new Release for the API. /// @@ -142,6 +142,10 @@ public partial interface IApiReleaseOperations /// /// Create parameters. /// + /// + /// ETag of the Entity. Not required when creating an entity, but + /// required when updating an entity. + /// /// /// The headers that will be added to request. /// @@ -157,7 +161,7 @@ public partial interface IApiReleaseOperations /// /// Thrown when a required parameter is null /// - Task> CreateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string releaseId, ApiReleaseContract parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string releaseId, ApiReleaseContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates the details of the release of the API specified by its /// identifier. @@ -256,6 +260,6 @@ public partial interface IApiReleaseOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiRevisionsOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiRevisionOperations.cs similarity index 83% rename from src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiRevisionsOperations.cs rename to src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiRevisionOperations.cs index 7654d974a12c..ca93630f9a52 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiRevisionsOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiRevisionOperations.cs @@ -20,9 +20,9 @@ namespace Microsoft.Azure.Management.ApiManagement using System.Threading.Tasks; /// - /// ApiRevisionsOperations operations. + /// ApiRevisionOperations operations. /// - public partial interface IApiRevisionsOperations + public partial interface IApiRevisionOperations { /// /// Lists all revisions of an API. @@ -55,7 +55,7 @@ public partial interface IApiRevisionsOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists all revisions of an API. /// @@ -77,6 +77,6 @@ public partial interface IApiRevisionsOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiSchemaOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiSchemaOperations.cs index cea7865bfec8..4dab754f854a 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiSchemaOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiSchemaOperations.cs @@ -37,6 +37,19 @@ public partial interface IApiSchemaOperations /// Management service instance. Non-current revision has ;rev=n as a /// suffix where n is the revision number. /// + /// + /// | Field | Usage | Supported operators | + /// Supported functions + /// |</br>|-------------|-------------|-------------|-------------|</br>| + /// contentType | filter | ge, le, eq, ne, gt, lt | substringof, + /// contains, startswith, endswith | </br> + /// + /// + /// Number of records to return. + /// + /// + /// Number of records to skip. + /// /// /// The headers that will be added to request. /// @@ -52,7 +65,7 @@ public partial interface IApiSchemaOperations /// /// Thrown when a required parameter is null /// - Task,ApiSchemaListByApiHeaders>> ListByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string filter = default(string), int? top = default(int?), int? skip = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the entity state (Etag) version of the schema specified by its /// identifier. @@ -159,7 +172,7 @@ public partial interface IApiSchemaOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string schemaId, SchemaContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string schemaId, SchemaContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes the schema configuration at the Api. /// @@ -183,6 +196,9 @@ public partial interface IApiSchemaOperations /// the header response of the GET request or it should be * for /// unconditional update. /// + /// + /// If true removes all references to the schema before deleting it. + /// /// /// The headers that will be added to request. /// @@ -195,7 +211,7 @@ public partial interface IApiSchemaOperations /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string schemaId, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string schemaId, string ifMatch, bool? force = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Get the schema configuration at the API level. /// @@ -217,6 +233,6 @@ public partial interface IApiSchemaOperations /// /// Thrown when a required parameter is null /// - Task,ApiSchemaListByApiHeaders>> ListByApiNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByApiNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagDescriptionOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiTagDescriptionOperations.cs similarity index 85% rename from src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagDescriptionOperations.cs rename to src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiTagDescriptionOperations.cs index 17770599276a..de82a0ef8a2e 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagDescriptionOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiTagDescriptionOperations.cs @@ -20,9 +20,9 @@ namespace Microsoft.Azure.Management.ApiManagement using System.Threading.Tasks; /// - /// TagDescriptionOperations operations. + /// ApiTagDescriptionOperations operations. /// - public partial interface ITagDescriptionOperations + public partial interface IApiTagDescriptionOperations { /// /// Lists all Tags descriptions in scope of API. Model similar to @@ -58,7 +58,7 @@ public partial interface ITagDescriptionOperations /// /// Thrown when a required parameter is null /// - Task>> ListByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the entity state version of the tag specified by its /// identifier. @@ -90,9 +90,9 @@ public partial interface ITagDescriptionOperations /// /// Thrown when a required parameter is null /// - Task> GetEntityStateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Get tag associated with the API. + /// Get Tag description in scope of API /// /// /// The name of the resource group. @@ -124,7 +124,7 @@ public partial interface ITagDescriptionOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Create/Update tag description in scope of the Api. /// @@ -165,7 +165,7 @@ public partial interface ITagDescriptionOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, TagDescriptionCreateParameters parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, TagDescriptionCreateParameters parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Delete tag description for the Api. /// @@ -225,6 +225,6 @@ public partial interface ITagDescriptionOperations /// /// Thrown when a required parameter is null /// - Task>> ListByApiNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiVersionSetOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiVersionSetOperations.cs index 07889eed0cb5..44dd8b1845f3 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiVersionSetOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiVersionSetOperations.cs @@ -145,7 +145,7 @@ public partial interface IApiVersionSetOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string versionSetId, ApiVersionSetContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string versionSetId, ApiVersionSetContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates the details of the Api VersionSet specified by its /// identifier. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IAuthorizationServerOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IAuthorizationServerOperations.cs index b4cd31d3f797..a2a7f772c677 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IAuthorizationServerOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IAuthorizationServerOperations.cs @@ -43,7 +43,7 @@ public partial interface IAuthorizationServerOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -143,7 +143,7 @@ public partial interface IAuthorizationServerOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string authsid, AuthorizationServerContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string authsid, AuthorizationServerContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates the details of the authorization server specified by its /// identifier. @@ -221,7 +221,7 @@ public partial interface IAuthorizationServerOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IBackendOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IBackendOperations.cs index 23d20b5997e8..73af2d8d0cd2 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IBackendOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IBackendOperations.cs @@ -62,7 +62,7 @@ public partial interface IBackendOperations /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -78,7 +78,7 @@ public partial interface IBackendOperations /// /// Thrown when a required parameter is null /// - Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the details of the backend specified by its identifier. /// @@ -88,7 +88,7 @@ public partial interface IBackendOperations /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -107,7 +107,7 @@ public partial interface IBackendOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates or Updates a backend. /// @@ -117,7 +117,7 @@ public partial interface IBackendOperations /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -143,7 +143,7 @@ public partial interface IBackendOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendid, BackendContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendId, BackendContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates an existing backend. /// @@ -153,7 +153,7 @@ public partial interface IBackendOperations /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -177,7 +177,7 @@ public partial interface IBackendOperations /// /// Thrown when a required parameter is null /// - Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendid, BackendUpdateParameters parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendId, BackendUpdateParameters parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes the specified backend. /// @@ -187,7 +187,7 @@ public partial interface IBackendOperations /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -208,7 +208,7 @@ public partial interface IBackendOperations /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendid, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendId, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Notifies the APIM proxy to create a new connection to the backend /// after the specified timeout. If no timeout was specified, timeout @@ -220,7 +220,7 @@ public partial interface IBackendOperations /// /// The name of the API Management service. /// - /// + /// /// Identifier of the Backend entity. Must be unique in the current API /// Management service instance. /// @@ -239,7 +239,7 @@ public partial interface IBackendOperations /// /// Thrown when a required parameter is null /// - Task ReconnectWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendid, BackendReconnectContract parameters = default(BackendReconnectContract), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task ReconnectWithHttpMessagesAsync(string resourceGroupName, string serviceName, string backendId, BackendReconnectContract parameters = default(BackendReconnectContract), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists a collection of backends in the specified service instance. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ICacheOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ICacheOperations.cs new file mode 100644 index 000000000000..9e1aa0fa49db --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ICacheOperations.cs @@ -0,0 +1,241 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// CacheOperations operations. + /// + public partial interface ICacheOperations + { + /// + /// Lists a collection of all external Caches in the specified service + /// instance. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Number of records to return. + /// + /// + /// Number of records to skip. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, int? top = default(int?), int? skip = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the entity state (Etag) version of the Cache specified by its + /// identifier. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, string cacheId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the details of the Cache specified by its identifier. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string cacheId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates an External Cache to be used in Api Management + /// instance. + /// + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). + /// + /// + /// Create or Update parameters. + /// + /// + /// ETag of the Entity. Not required when creating an entity, but + /// required when updating an entity. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string cacheId, CacheContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the details of the cache specified by its identifier. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). + /// + /// + /// Update parameters. + /// + /// + /// ETag of the Entity. ETag should match the current entity state from + /// the header response of the GET request or it should be * for + /// unconditional update. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string cacheId, CacheUpdateParameters parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes specific Cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Identifier of the Cache entity. Cache identifier (should be either + /// 'default' or valid Azure region identifier). + /// + /// + /// ETag of the Entity. ETag should match the current entity state from + /// the header response of the GET request or it should be * for + /// unconditional update. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string cacheId, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists a collection of all external Caches in the specified service + /// instance. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ICertificateOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ICertificateOperations.cs index 2c6ad29a5837..263dcb93056a 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ICertificateOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ICertificateOperations.cs @@ -146,7 +146,7 @@ public partial interface ICertificateOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string certificateId, CertificateCreateOrUpdateParameters parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string certificateId, CertificateCreateOrUpdateParameters parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes specific certificate. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IDelegationSettingsOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IDelegationSettingsOperations.cs index 2541758c7bbd..8f2a0ec61d69 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IDelegationSettingsOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IDelegationSettingsOperations.cs @@ -46,7 +46,7 @@ public partial interface IDelegationSettingsOperations /// Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Get Delegation settings. + /// Get Delegation Settings for the Portal. /// /// /// The name of the resource group. @@ -60,7 +60,7 @@ public partial interface IDelegationSettingsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -112,6 +112,10 @@ public partial interface IDelegationSettingsOperations /// /// Create or update parameters. /// + /// + /// ETag of the Entity. Not required when creating an entity, but + /// required when updating an entity. + /// /// /// The headers that will be added to request. /// @@ -127,6 +131,6 @@ public partial interface IDelegationSettingsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, PortalDelegationSettings parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, PortalDelegationSettings parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IDiagnosticLoggerOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IDiagnosticLoggerOperations.cs deleted file mode 100644 index cb75c3ad603b..000000000000 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IDiagnosticLoggerOperations.cs +++ /dev/null @@ -1,178 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.ApiManagement -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Microsoft.Rest.Azure.OData; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// DiagnosticLoggerOperations operations. - /// - public partial interface IDiagnosticLoggerOperations - { - /// - /// Lists all loggers associated with the specified Diagnostic of the - /// API Management service instance. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management - /// service instance. - /// - /// - /// OData parameters to apply to the operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, string diagnosticId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Checks that logger entity specified by identifier is associated - /// with the diagnostics entity. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management - /// service instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service - /// instance. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task> CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string diagnosticId, string loggerid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Attaches a logger to a diagnostic. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management - /// service instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service - /// instance. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string diagnosticId, string loggerid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Deletes the specified Logger from Diagnostic. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Diagnostic identifier. Must be unique in the current API Management - /// service instance. - /// - /// - /// Logger identifier. Must be unique in the API Management service - /// instance. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string diagnosticId, string loggerid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Lists all loggers associated with the specified Diagnostic of the - /// API Management service instance. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IDiagnosticOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IDiagnosticOperations.cs index 1ee17f431a5e..c2d8347411cc 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IDiagnosticOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IDiagnosticOperations.cs @@ -143,7 +143,7 @@ public partial interface IDiagnosticOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string diagnosticId, DiagnosticContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string diagnosticId, DiagnosticContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates the details of the Diagnostic specified by its identifier. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IEmailTemplateOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IEmailTemplateOperations.cs index eef045b7afe7..91bd3a5a41d4 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IEmailTemplateOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IEmailTemplateOperations.cs @@ -32,6 +32,13 @@ public partial interface IEmailTemplateOperations /// /// The name of the API Management service. /// + /// + /// | Field | Usage | Supported operators | + /// Supported functions + /// |</br>|-------------|-------------|-------------|-------------|</br>| + /// name | filter | ge, le, eq, ne, gt, lt | substringof, contains, + /// startswith, endswith | </br> + /// /// /// Number of records to return. /// @@ -44,7 +51,7 @@ public partial interface IEmailTemplateOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -53,7 +60,7 @@ public partial interface IEmailTemplateOperations /// /// Thrown when a required parameter is null /// - Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, int? top = default(int?), int? skip = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, string filter = default(string), int? top = default(int?), int? skip = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the entity state (Etag) version of the email template /// specified by its identifier. @@ -198,6 +205,11 @@ public partial interface IEmailTemplateOperations /// /// Update parameters. /// + /// + /// ETag of the Entity. ETag should match the current entity state from + /// the header response of the GET request or it should be * for + /// unconditional update. + /// /// /// The headers that will be added to request. /// @@ -210,7 +222,7 @@ public partial interface IEmailTemplateOperations /// /// Thrown when a required parameter is null /// - Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string templateName, EmailTemplateUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string templateName, EmailTemplateUpdateParameters parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Reset the Email Template to default template provided by the API /// Management service instance. @@ -264,7 +276,7 @@ public partial interface IEmailTemplateOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IGroupOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IGroupOperations.cs index e6c137f25281..2f661b326d49 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IGroupOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IGroupOperations.cs @@ -43,7 +43,7 @@ public partial interface IGroupOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -144,7 +144,7 @@ public partial interface IGroupOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string groupId, GroupCreateParameters parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string groupId, GroupCreateParameters parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates the details of the group specified by its identifier. /// @@ -223,7 +223,7 @@ public partial interface IGroupOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IGroupUserOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IGroupUserOperations.cs index fd7f3f4d0819..9f8f507e33ad 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IGroupUserOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IGroupUserOperations.cs @@ -25,8 +25,7 @@ namespace Microsoft.Azure.Management.ApiManagement public partial interface IGroupUserOperations { /// - /// Lists a collection of the members of the group, specified by its - /// identifier. + /// Lists a collection of user entities associated with the group. /// /// /// The name of the resource group. @@ -71,7 +70,7 @@ public partial interface IGroupUserOperations /// Group identifier. Must be unique in the current API Management /// service instance. /// - /// + /// /// User identifier. Must be unique in the current API Management /// service instance. /// @@ -87,9 +86,9 @@ public partial interface IGroupUserOperations /// /// Thrown when a required parameter is null /// - Task> CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string groupId, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string groupId, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Adds a user to the specified group. + /// Add existing user to existing group /// /// /// The name of the resource group. @@ -101,7 +100,7 @@ public partial interface IGroupUserOperations /// Group identifier. Must be unique in the current API Management /// service instance. /// - /// + /// /// User identifier. Must be unique in the current API Management /// service instance. /// @@ -120,7 +119,7 @@ public partial interface IGroupUserOperations /// /// Thrown when a required parameter is null /// - Task> CreateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string groupId, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string groupId, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Remove existing user from existing group. /// @@ -134,7 +133,7 @@ public partial interface IGroupUserOperations /// Group identifier. Must be unique in the current API Management /// service instance. /// - /// + /// /// User identifier. Must be unique in the current API Management /// service instance. /// @@ -150,10 +149,9 @@ public partial interface IGroupUserOperations /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string groupId, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string groupId, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists a collection of the members of the group, specified by its - /// identifier. + /// Lists a collection of user entities associated with the group. /// /// /// The NextLink from the previous successful call to List operation. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IIdentityProviderOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IIdentityProviderOperations.cs index cf3e79a589fe..9c6d200fe20c 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IIdentityProviderOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IIdentityProviderOperations.cs @@ -142,7 +142,7 @@ public partial interface IIdentityProviderOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string identityProviderName, IdentityProviderContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string identityProviderName, IdentityProviderContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates an existing IdentityProvider configuration. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IIssueOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IIssueOperations.cs new file mode 100644 index 000000000000..c529a82e9ffe --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IIssueOperations.cs @@ -0,0 +1,107 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// IssueOperations operations. + /// + public partial interface IIssueOperations + { + /// + /// Lists a collection of issues in the specified service instance. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets API Management issue details + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Issue identifier. Must be unique in the current API Management + /// service instance. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string issueId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists a collection of issues in the specified service instance. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ILoggerOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ILoggerOperations.cs index 78a979e9161d..e8e9e8053753 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ILoggerOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ILoggerOperations.cs @@ -63,7 +63,7 @@ public partial interface ILoggerOperations /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service /// instance. /// @@ -79,7 +79,7 @@ public partial interface ILoggerOperations /// /// Thrown when a required parameter is null /// - Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the details of the logger specified by its identifier. /// @@ -89,7 +89,7 @@ public partial interface ILoggerOperations /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service /// instance. /// @@ -108,7 +108,7 @@ public partial interface ILoggerOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates or Updates a logger. /// @@ -118,7 +118,7 @@ public partial interface ILoggerOperations /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service /// instance. /// @@ -144,7 +144,7 @@ public partial interface ILoggerOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerid, LoggerContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerId, LoggerContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates an existing logger. /// @@ -154,7 +154,7 @@ public partial interface ILoggerOperations /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service /// instance. /// @@ -178,7 +178,7 @@ public partial interface ILoggerOperations /// /// Thrown when a required parameter is null /// - Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerid, LoggerUpdateContract parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerId, LoggerUpdateContract parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes the specified logger. /// @@ -188,7 +188,7 @@ public partial interface ILoggerOperations /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service /// instance. /// @@ -197,6 +197,9 @@ public partial interface ILoggerOperations /// the header response of the GET request or it should be * for /// unconditional update. /// + /// + /// Force deletion even if diagnostic is attached. + /// /// /// The headers that will be added to request. /// @@ -209,7 +212,7 @@ public partial interface ILoggerOperations /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerid, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerId, string ifMatch, bool? force = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists a collection of loggers in the specified service instance. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/INotificationOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/INotificationOperations.cs index aacc09d62c7d..15b2dbfb3386 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/INotificationOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/INotificationOperations.cs @@ -44,7 +44,7 @@ public partial interface INotificationOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -88,7 +88,7 @@ public partial interface INotificationOperations /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string notificationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Updates an Notification. + /// Create or Update API Management publisher notification. /// /// /// The name of the resource group. @@ -136,7 +136,7 @@ public partial interface INotificationOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/INotificationRecipientUserOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/INotificationRecipientUserOperations.cs index 42d61b7074da..b12b74453ac9 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/INotificationRecipientUserOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/INotificationRecipientUserOperations.cs @@ -75,7 +75,7 @@ public partial interface INotificationRecipientUserOperations /// 'NewIssuePublisherNotificationMessage', 'AccountClosedPublisher', /// 'QuotaLimitApproachingPublisherNotificationMessage' /// - /// + /// /// User identifier. Must be unique in the current API Management /// service instance. /// @@ -91,7 +91,7 @@ public partial interface INotificationRecipientUserOperations /// /// Thrown when a required parameter is null /// - Task> CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string notificationName, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string notificationName, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Adds the API Management User to the list of Recipients for the /// Notification. @@ -110,7 +110,7 @@ public partial interface INotificationRecipientUserOperations /// 'NewIssuePublisherNotificationMessage', 'AccountClosedPublisher', /// 'QuotaLimitApproachingPublisherNotificationMessage' /// - /// + /// /// User identifier. Must be unique in the current API Management /// service instance. /// @@ -129,7 +129,7 @@ public partial interface INotificationRecipientUserOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string notificationName, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string notificationName, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Removes the API Management user from the list of Notification. /// @@ -147,7 +147,7 @@ public partial interface INotificationRecipientUserOperations /// 'NewIssuePublisherNotificationMessage', 'AccountClosedPublisher', /// 'QuotaLimitApproachingPublisherNotificationMessage' /// - /// + /// /// User identifier. Must be unique in the current API Management /// service instance. /// @@ -163,6 +163,6 @@ public partial interface INotificationRecipientUserOperations /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string notificationName, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string notificationName, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IOpenIdConnectProviderOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IOpenIdConnectProviderOperations.cs index c751d92c0b23..17aec5998271 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IOpenIdConnectProviderOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IOpenIdConnectProviderOperations.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Management.ApiManagement public partial interface IOpenIdConnectProviderOperations { /// - /// Lists all OpenID Connect Providers. + /// Lists of all the OpenId Connect Providers. /// /// /// The name of the resource group. @@ -42,7 +42,7 @@ public partial interface IOpenIdConnectProviderOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -140,7 +140,7 @@ public partial interface IOpenIdConnectProviderOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string opid, OpenidConnectProviderContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string opid, OpenidConnectProviderContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates the specific OpenID Connect Provider. /// @@ -206,7 +206,7 @@ public partial interface IOpenIdConnectProviderOperations /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string opid, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all OpenID Connect Providers. + /// Lists of all the OpenId Connect Providers. /// /// /// The NextLink from the previous successful call to List operation. @@ -217,7 +217,7 @@ public partial interface IOpenIdConnectProviderOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IOperationOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IOperationOperations.cs index a386b4383b4f..1edd5b50d3c9 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IOperationOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IOperationOperations.cs @@ -41,6 +41,9 @@ public partial interface IOperationOperations /// /// OData parameters to apply to the operation. /// + /// + /// Include not tagged Operations. + /// /// /// The headers that will be added to request. /// @@ -56,7 +59,7 @@ public partial interface IOperationOperations /// /// Thrown when a required parameter is null /// - Task>> ListByTagsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByTagsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), bool? includeNotTaggedOperations = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists a collection of operations associated with tags. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IPolicyOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IPolicyOperations.cs index 0794c014801a..a9841c1a1ab5 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IPolicyOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IPolicyOperations.cs @@ -33,17 +33,13 @@ public partial interface IPolicyOperations /// /// The name of the API Management service. /// - /// - /// Policy scope. Possible values include: 'Tenant', 'Product', 'Api', - /// 'Operation', 'All' - /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -52,7 +48,7 @@ public partial interface IPolicyOperations /// /// Thrown when a required parameter is null /// - Task> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, PolicyScopeContract? scope = default(PolicyScopeContract?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the entity state (Etag) version of the Global policy /// definition in the Api Management service. @@ -114,6 +110,10 @@ public partial interface IPolicyOperations /// /// The policy contents to apply. /// + /// + /// ETag of the Entity. Not required when creating an entity, but + /// required when updating an entity. + /// /// /// The headers that will be added to request. /// @@ -129,7 +129,7 @@ public partial interface IPolicyOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, PolicyContract parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, PolicyContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes the global policy configuration of the Api Management /// Service. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IPolicySnippetsOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IPolicySnippetOperations.cs similarity index 92% rename from src/SDKs/ApiManagement/Management.ApiManagement/Generated/IPolicySnippetsOperations.cs rename to src/SDKs/ApiManagement/Management.ApiManagement/Generated/IPolicySnippetOperations.cs index d0f2781dc09a..85e4a3f200ae 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IPolicySnippetsOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IPolicySnippetOperations.cs @@ -19,9 +19,9 @@ namespace Microsoft.Azure.Management.ApiManagement using System.Threading.Tasks; /// - /// PolicySnippetsOperations operations. + /// PolicySnippetOperations operations. /// - public partial interface IPolicySnippetsOperations + public partial interface IPolicySnippetOperations { /// /// Lists all policy snippets. @@ -42,7 +42,7 @@ public partial interface IPolicySnippetsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IProductApiOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IProductApiOperations.cs index c68f2bdb2609..e683d51edd9f 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IProductApiOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IProductApiOperations.cs @@ -87,7 +87,7 @@ public partial interface IProductApiOperations /// /// Thrown when a required parameter is null /// - Task> CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string apiId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string apiId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Adds an API to the specified product. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IProductGroupOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IProductGroupOperations.cs index d76c398f35c0..8b25d8f4ea89 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IProductGroupOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IProductGroupOperations.cs @@ -87,7 +87,7 @@ public partial interface IProductGroupOperations /// /// Thrown when a required parameter is null /// - Task> CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string groupId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string groupId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Adds the association between the specified developer group with the /// specified product. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IProductOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IProductOperations.cs index 54833aedbaba..b26137e42470 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IProductOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IProductOperations.cs @@ -40,6 +40,9 @@ public partial interface IProductOperations /// When set to true, the response contains an array of groups that /// have visibility to the product. The default is false. /// + /// + /// Products which are part of a specific tag. + /// /// /// The headers that will be added to request. /// @@ -55,7 +58,7 @@ public partial interface IProductOperations /// /// Thrown when a required parameter is null /// - Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? expandGroups = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? expandGroups = default(bool?), string tags = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the entity state (Etag) version of the product specified by /// its identifier. @@ -147,9 +150,9 @@ public partial interface IProductOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, ProductContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, ProductContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update product. + /// Update existing product details. /// /// /// The name of the resource group. @@ -217,6 +220,37 @@ public partial interface IProductOperations /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string ifMatch, bool? deleteSubscriptions = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Lists a collection of products associated with tags. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Include not tagged Products. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByTagsWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? includeNotTaggedProducts = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Lists a collection of products in the specified service instance. /// /// @@ -238,5 +272,27 @@ public partial interface IProductOperations /// Thrown when a required parameter is null /// Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists a collection of products associated with tags. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByTagsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IProductPolicyOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IProductPolicyOperations.cs index f5c4c8dcdec4..0e7fd663c5d0 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IProductPolicyOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IProductPolicyOperations.cs @@ -51,7 +51,7 @@ public partial interface IProductPolicyOperations /// /// Thrown when a required parameter is null /// - Task> ListByProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListByProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Get the ETag of the policy configuration at the Product level. /// @@ -142,7 +142,7 @@ public partial interface IProductPolicyOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, PolicyContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, PolicyContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes the policy configuration at the Product. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IPropertyOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IPropertyOperations.cs index 8e2d74e779c3..17962e6db70c 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IPropertyOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IPropertyOperations.cs @@ -43,7 +43,7 @@ public partial interface IPropertyOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -141,7 +141,7 @@ public partial interface IPropertyOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string propId, PropertyContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string propId, PropertyContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates the specific property. /// @@ -218,7 +218,7 @@ public partial interface IPropertyOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IRegionsOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IRegionOperations.cs similarity index 93% rename from src/SDKs/ApiManagement/Management.ApiManagement/Generated/IRegionsOperations.cs rename to src/SDKs/ApiManagement/Management.ApiManagement/Generated/IRegionOperations.cs index df9fbf4aa423..37023ce2a251 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IRegionsOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IRegionOperations.cs @@ -19,9 +19,9 @@ namespace Microsoft.Azure.Management.ApiManagement using System.Threading.Tasks; /// - /// RegionsOperations operations. + /// RegionOperations operations. /// - public partial interface IRegionsOperations + public partial interface IRegionOperations { /// /// Lists all azure regions in which the service exists. @@ -38,7 +38,7 @@ public partial interface IRegionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -60,7 +60,7 @@ public partial interface IRegionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IReportsOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IReportsOperations.cs index 21dcf81ced6e..18057e3b810f 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IReportsOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IReportsOperations.cs @@ -139,15 +139,15 @@ public partial interface IReportsOperations /// /// Lists report records by geography. /// + /// + /// OData parameters to apply to the operation. + /// /// /// The name of the resource group. /// /// /// The name of the API Management service. /// - /// - /// OData parameters to apply to the operation. - /// /// /// The headers that will be added to request. /// @@ -163,19 +163,19 @@ public partial interface IReportsOperations /// /// Thrown when a required parameter is null /// - Task>> ListByGeoWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByGeoWithHttpMessagesAsync(ODataQuery odataQuery, string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists report records by subscription. /// + /// + /// OData parameters to apply to the operation. + /// /// /// The name of the resource group. /// /// /// The name of the API Management service. /// - /// - /// OData parameters to apply to the operation. - /// /// /// The headers that will be added to request. /// @@ -191,10 +191,13 @@ public partial interface IReportsOperations /// /// Thrown when a required parameter is null /// - Task>> ListBySubscriptionWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListBySubscriptionWithHttpMessagesAsync(ODataQuery odataQuery, string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists report records by Time. /// + /// + /// OData parameters to apply to the operation. + /// /// /// The name of the resource group. /// @@ -206,10 +209,7 @@ public partial interface IReportsOperations /// not be zero. The value should be in ISO 8601 format /// (http://en.wikipedia.org/wiki/ISO_8601#Durations).This code can be /// used to convert TimeSpan to a valid interval string: - /// XmlConvert.ToString(new TimeSpan(hours, minutes, seconds)) - /// - /// - /// OData parameters to apply to the operation. + /// XmlConvert.ToString(new TimeSpan(hours, minutes, seconds)). /// /// /// The headers that will be added to request. @@ -226,7 +226,7 @@ public partial interface IReportsOperations /// /// Thrown when a required parameter is null /// - Task>> ListByTimeWithHttpMessagesAsync(string resourceGroupName, string serviceName, System.TimeSpan interval, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByTimeWithHttpMessagesAsync(ODataQuery odataQuery, string resourceGroupName, string serviceName, System.TimeSpan interval, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists report records by Request. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ISignInSettingsOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ISignInSettingsOperations.cs index b01e2cd7df36..9235335022ab 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ISignInSettingsOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ISignInSettingsOperations.cs @@ -46,7 +46,7 @@ public partial interface ISignInSettingsOperations /// Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Get Sign-In settings. + /// Get Sign In Settings for the Portal /// /// /// The name of the resource group. @@ -60,7 +60,7 @@ public partial interface ISignInSettingsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -112,6 +112,10 @@ public partial interface ISignInSettingsOperations /// /// Create or update parameters. /// + /// + /// ETag of the Entity. Not required when creating an entity, but + /// required when updating an entity. + /// /// /// The headers that will be added to request. /// @@ -127,6 +131,6 @@ public partial interface ISignInSettingsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, PortalSigninSettings parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, PortalSigninSettings parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ISignUpSettingsOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ISignUpSettingsOperations.cs index cd64e2fe80e1..da2379a5914e 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ISignUpSettingsOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ISignUpSettingsOperations.cs @@ -46,7 +46,7 @@ public partial interface ISignUpSettingsOperations /// Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Get Sign-Up settings. + /// Get Sign Up Settings for the Portal /// /// /// The name of the resource group. @@ -60,7 +60,7 @@ public partial interface ISignUpSettingsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -112,6 +112,10 @@ public partial interface ISignUpSettingsOperations /// /// Create or update parameters. /// + /// + /// ETag of the Entity. Not required when creating an entity, but + /// required when updating an entity. + /// /// /// The headers that will be added to request. /// @@ -127,6 +131,6 @@ public partial interface ISignUpSettingsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, PortalSignupSettings parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, PortalSignupSettings parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ISubscriptionOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ISubscriptionOperations.cs index d817cf4a0bb8..e587fee3e4c3 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ISubscriptionOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ISubscriptionOperations.cs @@ -151,7 +151,7 @@ public partial interface ISubscriptionOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string sid, SubscriptionCreateParameters parameters, bool? notify = default(bool?), string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string sid, SubscriptionCreateParameters parameters, bool? notify = default(bool?), string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates the details of a subscription specified by its identifier. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagOperations.cs index e3179ce4abbc..1a276d1654fb 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagOperations.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Management.ApiManagement public partial interface ITagOperations { /// - /// Lists a collection of tags defined within a service instance. + /// Lists all Tags associated with the Operation. /// /// /// The name of the resource group. @@ -33,6 +33,15 @@ public partial interface ITagOperations /// /// The name of the API Management service. /// + /// + /// 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 Management service instance. + /// /// /// OData parameters to apply to the operation. /// @@ -42,7 +51,7 @@ public partial interface ITagOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -51,7 +60,7 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the entity state version of the tag specified by its /// identifier. @@ -62,6 +71,15 @@ public partial interface ITagOperations /// /// The name of the API Management service. /// + /// + /// 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 Management service instance. + /// /// /// Tag identifier. Must be unique in the current API Management /// service instance. @@ -78,9 +96,9 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task> GetEntityStateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetEntityStateByOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the details of the tag specified by its identifier. + /// Get tag associated with the Operation. /// /// /// The name of the resource group. @@ -88,6 +106,15 @@ public partial interface ITagOperations /// /// The name of the API Management service. /// + /// + /// 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 Management service instance. + /// /// /// Tag identifier. Must be unique in the current API Management /// service instance. @@ -107,9 +134,9 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetByOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Creates a tag. + /// Assign tag to the Operation. /// /// /// The name of the resource group. @@ -117,13 +144,19 @@ public partial interface ITagOperations /// /// The name of the API Management service. /// + /// + /// 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 Management service instance. + /// /// /// Tag identifier. Must be unique in the current API Management /// service instance. /// - /// - /// Create parameters. - /// /// /// The headers that will be added to request. /// @@ -139,9 +172,9 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, TagCreateUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> AssignToOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Updates the details of the tag specified by its identifier. + /// Detach the tag from the Operation. /// /// /// The name of the resource group. @@ -149,49 +182,19 @@ public partial interface ITagOperations /// /// The name of the API Management service. /// - /// - /// Tag identifier. Must be unique in the current API Management - /// service instance. - /// - /// - /// Update parameters. - /// - /// - /// ETag of the Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for - /// unconditional update. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, TagCreateUpdateParameters parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Deletes specific tag of the API Management service instance. - /// - /// - /// The name of the resource group. + /// + /// 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 name of the API Management service. + /// + /// Operation identifier within an API. Must be unique in the current + /// API Management service instance. /// /// /// Tag identifier. Must be unique in the current API Management /// service instance. /// - /// - /// ETag of the Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for - /// unconditional update. - /// /// /// The headers that will be added to request. /// @@ -204,7 +207,7 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DetachFromOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists all Tags associated with the API. /// @@ -322,10 +325,6 @@ public partial interface ITagOperations /// Tag identifier. Must be unique in the current API Management /// service instance. /// - /// - /// ETag of the Entity. Not required when creating an entity, but - /// required when updating an entity. - /// /// /// The headers that will be added to request. /// @@ -341,7 +340,7 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task> AssignToApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> AssignToApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Detach the tag from the Api. /// @@ -360,11 +359,6 @@ public partial interface ITagOperations /// Tag identifier. Must be unique in the current API Management /// service instance. /// - /// - /// ETag of the Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for - /// unconditional update. - /// /// /// The headers that will be added to request. /// @@ -377,9 +371,9 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task DetachFromApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DetachFromApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all Tags associated with the Operation. + /// Lists all Tags associated with the Product. /// /// /// The name of the resource group. @@ -387,14 +381,9 @@ public partial interface ITagOperations /// /// The name of the API Management service. /// - /// - /// 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 Management service instance. + /// + /// Product identifier. Must be unique in the current API Management + /// service instance. /// /// /// OData parameters to apply to the operation. @@ -414,7 +403,7 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task>> ListByOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the entity state version of the tag specified by its /// identifier. @@ -425,14 +414,9 @@ public partial interface ITagOperations /// /// The name of the API Management service. /// - /// - /// 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 Management service instance. + /// + /// Product identifier. Must be unique in the current API Management + /// service instance. /// /// /// Tag identifier. Must be unique in the current API Management @@ -450,9 +434,9 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task> GetEntityStateByOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetEntityStateByProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Get tag associated with the Operation. + /// Get tag associated with the Product. /// /// /// The name of the resource group. @@ -460,14 +444,9 @@ public partial interface ITagOperations /// /// The name of the API Management service. /// - /// - /// 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 Management service instance. + /// + /// Product identifier. Must be unique in the current API Management + /// service instance. /// /// /// Tag identifier. Must be unique in the current API Management @@ -488,9 +467,9 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task> GetByOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetByProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Assign tag to the Operation. + /// Assign tag to the Product. /// /// /// The name of the resource group. @@ -498,23 +477,14 @@ public partial interface ITagOperations /// /// The name of the API Management service. /// - /// - /// 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 Management service instance. + /// + /// Product identifier. Must be unique in the current API Management + /// service instance. /// /// /// Tag identifier. Must be unique in the current API Management /// service instance. /// - /// - /// ETag of the Entity. Not required when creating an entity, but - /// required when updating an entity. - /// /// /// The headers that will be added to request. /// @@ -530,9 +500,9 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task> AssignToOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> AssignToProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Detach the tag from the Operation. + /// Detach the tag from the Product. /// /// /// The name of the resource group. @@ -540,24 +510,14 @@ public partial interface ITagOperations /// /// The name of the API Management service. /// - /// - /// 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 Management service instance. + /// + /// Product identifier. Must be unique in the current API Management + /// service instance. /// /// /// Tag identifier. Must be unique in the current API Management /// service instance. /// - /// - /// ETag of the Entity. ETag should match the current entity state from - /// the header response of the GET request or it should be * for - /// unconditional update. - /// /// /// The headers that will be added to request. /// @@ -570,9 +530,9 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task DetachFromOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DetachFromProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all Tags associated with the Product. + /// Lists a collection of tags defined within a service instance. /// /// /// The name of the resource group. @@ -580,13 +540,12 @@ public partial interface ITagOperations /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management - /// service instance. - /// /// /// OData parameters to apply to the operation. /// + /// + /// Scope like 'apis', 'products' or 'apis/{apiId} + /// /// /// The headers that will be added to request. /// @@ -602,7 +561,7 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task>> ListByProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), string scope = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the entity state version of the tag specified by its /// identifier. @@ -613,10 +572,6 @@ public partial interface ITagOperations /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management - /// service instance. - /// /// /// Tag identifier. Must be unique in the current API Management /// service instance. @@ -633,9 +588,9 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task> GetEntityStateByProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetEntityStateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Get tag associated with the Product. + /// Gets the details of the tag specified by its identifier. /// /// /// The name of the resource group. @@ -643,10 +598,6 @@ public partial interface ITagOperations /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management - /// service instance. - /// /// /// Tag identifier. Must be unique in the current API Management /// service instance. @@ -666,9 +617,9 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task> GetByProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Assign tag to the Product. + /// Creates a tag. /// /// /// The name of the resource group. @@ -676,14 +627,13 @@ public partial interface ITagOperations /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management - /// service instance. - /// /// /// Tag identifier. Must be unique in the current API Management /// service instance. /// + /// + /// Create parameters. + /// /// /// ETag of the Entity. Not required when creating an entity, but /// required when updating an entity. @@ -703,9 +653,9 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task> AssignToProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string tagId, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, TagCreateUpdateParameters parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Detach the tag from the Product. + /// Updates the details of the tag specified by its identifier. /// /// /// The name of the resource group. @@ -713,10 +663,40 @@ public partial interface ITagOperations /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management + /// + /// Tag identifier. Must be unique in the current API Management /// service instance. /// + /// + /// Update parameters. + /// + /// + /// ETag of the Entity. ETag should match the current entity state from + /// the header response of the GET request or it should be * for + /// unconditional update. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, TagCreateUpdateParameters parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes specific tag of the API Management service instance. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// /// /// Tag identifier. Must be unique in the current API Management /// service instance. @@ -738,9 +718,9 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task DetachFromProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string tagId, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists a collection of tags defined within a service instance. + /// Lists all Tags associated with the Operation. /// /// /// The NextLink from the previous successful call to List operation. @@ -751,7 +731,7 @@ public partial interface ITagOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -760,7 +740,7 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByOperationNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists all Tags associated with the API. /// @@ -784,7 +764,7 @@ public partial interface ITagOperations /// Task>> ListByApiNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all Tags associated with the Operation. + /// Lists all Tags associated with the Product. /// /// /// The NextLink from the previous successful call to List operation. @@ -804,9 +784,9 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task>> ListByOperationNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByProductNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all Tags associated with the Product. + /// Lists a collection of tags defined within a service instance. /// /// /// The NextLink from the previous successful call to List operation. @@ -826,6 +806,6 @@ public partial interface ITagOperations /// /// Thrown when a required parameter is null /// - Task>> ListByProductNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagResourceOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagResourceOperations.cs index 22c12a38c986..ea7f69ec6647 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagResourceOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagResourceOperations.cs @@ -42,7 +42,7 @@ public partial interface ITagResourceOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -64,7 +64,7 @@ public partial interface ITagResourceOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITenantAccessOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITenantAccessOperations.cs index a4e70551d9a9..1779c4995d87 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITenantAccessOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITenantAccessOperations.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Management.ApiManagement public partial interface ITenantAccessOperations { /// - /// Get tenant access information details. + /// Tenant access metadata /// /// /// The name of the resource group. @@ -38,7 +38,29 @@ public partial interface ITenantAccessOperations /// /// The cancellation token. /// - /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get tenant access information details + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -79,7 +101,7 @@ public partial interface ITenantAccessOperations /// Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, AccessInformationUpdateParameters parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Regenerate primary access key. + /// Regenerate primary access key /// /// /// The name of the resource group. @@ -101,7 +123,7 @@ public partial interface ITenantAccessOperations /// Task RegeneratePrimaryKeyWithHttpMessagesAsync(string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Regenerate secondary access key. + /// Regenerate secondary access key /// /// /// The name of the resource group. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserConfirmationPasswordOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserConfirmationPasswordOperations.cs new file mode 100644 index 000000000000..eaaaa43ad080 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserConfirmationPasswordOperations.cs @@ -0,0 +1,53 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// UserConfirmationPasswordOperations operations. + /// + public partial interface IUserConfirmationPasswordOperations + { + /// + /// Sends confirmation + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// User identifier. Must be unique in the current API Management + /// service instance. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task SendWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserGroupOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserGroupOperations.cs index 38207ba365da..8b123d32b9cd 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserGroupOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserGroupOperations.cs @@ -33,7 +33,7 @@ public partial interface IUserGroupOperations /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management /// service instance. /// @@ -55,7 +55,7 @@ public partial interface IUserGroupOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists all user groups. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserIdentitiesOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserIdentitiesOperations.cs index 252410fadf79..acd0b21e11a6 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserIdentitiesOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserIdentitiesOperations.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Management.ApiManagement public partial interface IUserIdentitiesOperations { /// - /// Lists all user identities. + /// List of all user identities. /// /// /// The name of the resource group. @@ -32,7 +32,7 @@ public partial interface IUserIdentitiesOperations /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management /// service instance. /// @@ -51,9 +51,9 @@ public partial interface IUserIdentitiesOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all user identities. + /// List of all user identities. /// /// /// The NextLink from the previous successful call to List operation. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserOperations.cs index c7b45314fdb7..09d9cd1bd145 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserOperations.cs @@ -24,31 +24,6 @@ namespace Microsoft.Azure.Management.ApiManagement /// public partial interface IUserOperations { - /// - /// Returns calling user identity information. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> GetIdentityWithHttpMessagesAsync(string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists a collection of registered users in the specified service /// instance. @@ -62,6 +37,9 @@ public partial interface IUserOperations /// /// OData parameters to apply to the operation. /// + /// + /// Detailed Group in response. + /// /// /// The headers that will be added to request. /// @@ -77,7 +55,7 @@ public partial interface IUserOperations /// /// Thrown when a required parameter is null /// - Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? expandGroups = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the entity state (Etag) version of the user specified by its /// identifier. @@ -88,7 +66,7 @@ public partial interface IUserOperations /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management /// service instance. /// @@ -104,7 +82,7 @@ public partial interface IUserOperations /// /// Thrown when a required parameter is null /// - Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the details of the user specified by its identifier. /// @@ -114,7 +92,7 @@ public partial interface IUserOperations /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management /// service instance. /// @@ -133,7 +111,7 @@ public partial interface IUserOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates or Updates a user. /// @@ -143,7 +121,7 @@ public partial interface IUserOperations /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management /// service instance. /// @@ -169,7 +147,7 @@ public partial interface IUserOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, UserCreateParameters parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, UserCreateParameters parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates the details of the user specified by its identifier. /// @@ -179,7 +157,7 @@ public partial interface IUserOperations /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management /// service instance. /// @@ -203,7 +181,7 @@ public partial interface IUserOperations /// /// Thrown when a required parameter is null /// - Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, UserUpdateParameters parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, UserUpdateParameters parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes specific user. /// @@ -213,7 +191,7 @@ public partial interface IUserOperations /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management /// service instance. /// @@ -240,7 +218,7 @@ public partial interface IUserOperations /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, string ifMatch, bool? deleteSubscriptions = default(bool?), bool? notify = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, string ifMatch, bool? deleteSubscriptions = default(bool?), bool? notify = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Retrieves a redirection URL containing an authentication token for /// signing a given user into the developer portal. @@ -251,7 +229,7 @@ public partial interface IUserOperations /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management /// service instance. /// @@ -270,7 +248,7 @@ public partial interface IUserOperations /// /// Thrown when a required parameter is null /// - Task> GenerateSsoUrlWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GenerateSsoUrlWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the Shared Access Authorization Token for the User. /// @@ -280,7 +258,7 @@ public partial interface IUserOperations /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management /// service instance. /// @@ -302,7 +280,7 @@ public partial interface IUserOperations /// /// Thrown when a required parameter is null /// - Task> GetSharedAccessTokenWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, UserTokenParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetSharedAccessTokenWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, UserTokenParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists a collection of registered users in the specified service /// instance. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserSubscriptionOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserSubscriptionOperations.cs index 1f99f476ffc6..18ac0979009d 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserSubscriptionOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IUserSubscriptionOperations.cs @@ -33,7 +33,7 @@ public partial interface IUserSubscriptionOperations /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management /// service instance. /// @@ -55,7 +55,7 @@ public partial interface IUserSubscriptionOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists the collection of subscriptions of the specified user. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IdentityProviderOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IdentityProviderOperations.cs index f474f29b73c8..aa8e2243206f 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IdentityProviderOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IdentityProviderOperations.cs @@ -84,10 +84,6 @@ internal IdentityProviderOperations(ApiManagementClient client) /// public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); @@ -115,6 +111,10 @@ internal IdentityProviderOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -130,9 +130,9 @@ internal IdentityProviderOperations(ApiManagementClient client) // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/identityProviders").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -292,10 +292,6 @@ internal IdentityProviderOperations(ApiManagementClient client) /// public async Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, string identityProviderName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); @@ -327,6 +323,10 @@ internal IdentityProviderOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -343,10 +343,10 @@ internal IdentityProviderOperations(ApiManagementClient client) // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/identityProviders/{identityProviderName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); _url = _url.Replace("{identityProviderName}", System.Uri.EscapeDataString(identityProviderName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -504,10 +504,6 @@ internal IdentityProviderOperations(ApiManagementClient client) /// public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string identityProviderName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); @@ -539,6 +535,10 @@ internal IdentityProviderOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -555,10 +555,10 @@ internal IdentityProviderOperations(ApiManagementClient client) // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/identityProviders/{identityProviderName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); _url = _url.Replace("{identityProviderName}", System.Uri.EscapeDataString(identityProviderName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -738,7 +738,7 @@ internal IdentityProviderOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string identityProviderName, IdentityProviderContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string identityProviderName, IdentityProviderContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -912,7 +912,7 @@ internal IdentityProviderOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -955,6 +955,19 @@ internal IdentityProviderOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IssueOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IssueOperations.cs new file mode 100644 index 000000000000..3a092a601fa5 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IssueOperations.cs @@ -0,0 +1,685 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// IssueOperations operations. + /// + internal partial class IssueOperations : IServiceOperations, IIssueOperations + { + /// + /// Initializes a new instance of the IssueOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal IssueOperations(ApiManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ApiManagementClient + /// + public ApiManagementClient Client { get; private set; } + + /// + /// Lists a collection of issues in the specified service instance. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serviceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serviceName"); + } + if (serviceName != null) + { + if (serviceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "serviceName", 50); + } + if (serviceName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "serviceName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(serviceName, "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$")) + { + throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("odataQuery", odataQuery); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serviceName", serviceName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByService", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/issues").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets API Management issue details + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Issue identifier. Must be unique in the current API Management service + /// instance. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string issueId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serviceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serviceName"); + } + if (serviceName != null) + { + if (serviceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "serviceName", 50); + } + if (serviceName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "serviceName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(serviceName, "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$")) + { + throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); + } + } + if (issueId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "issueId"); + } + if (issueId != null) + { + if (issueId.Length > 256) + { + throw new ValidationException(ValidationRules.MaxLength, "issueId", 256); + } + if (issueId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "issueId", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(issueId, "^[^*#&+:<>?]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "issueId", "^[^*#&+:<>?]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serviceName", serviceName); + tracingParameters.Add("issueId", issueId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/issues/{issueId}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); + _url = _url.Replace("{issueId}", System.Uri.EscapeDataString(issueId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists a collection of issues in the specified service instance. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByServiceNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IssueOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IssueOperationsExtensions.cs new file mode 100644 index 000000000000..98f8814c63bf --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IssueOperationsExtensions.cs @@ -0,0 +1,154 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for IssueOperations. + /// + public static partial class IssueOperationsExtensions + { + /// + /// Lists a collection of issues in the specified service instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// OData parameters to apply to the operation. + /// + public static IPage ListByService(this IIssueOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery)) + { + return operations.ListByServiceAsync(resourceGroupName, serviceName, odataQuery).GetAwaiter().GetResult(); + } + + /// + /// Lists a collection of issues in the specified service instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByServiceAsync(this IIssueOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, odataQuery, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets API Management issue details + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Issue identifier. Must be unique in the current API Management service + /// instance. + /// + public static IssueContract Get(this IIssueOperations operations, string resourceGroupName, string serviceName, string issueId) + { + return operations.GetAsync(resourceGroupName, serviceName, issueId).GetAwaiter().GetResult(); + } + + /// + /// Gets API Management issue details + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Issue identifier. Must be unique in the current API Management service + /// instance. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IIssueOperations operations, string resourceGroupName, string serviceName, string issueId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serviceName, issueId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists a collection of issues in the specified service instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByServiceNext(this IIssueOperations operations, string nextPageLink) + { + return operations.ListByServiceNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists a collection of issues in the specified service instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByServiceNextAsync(this IIssueOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByServiceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/LoggerOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/LoggerOperations.cs index 7291ad78e966..cced12f6ab9b 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/LoggerOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/LoggerOperations.cs @@ -280,7 +280,7 @@ internal LoggerOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service instance. /// /// @@ -301,7 +301,7 @@ internal LoggerOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -326,19 +326,19 @@ internal LoggerOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (loggerid == null) + if (loggerId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "loggerid"); + throw new ValidationException(ValidationRules.CannotBeNull, "loggerId"); } - if (loggerid != null) + if (loggerId != null) { - if (loggerid.Length > 80) + if (loggerId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "loggerid", 80); + throw new ValidationException(ValidationRules.MaxLength, "loggerId", 256); } - if (!System.Text.RegularExpressions.Regex.IsMatch(loggerid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(loggerId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "loggerid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "loggerId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -358,16 +358,16 @@ internal LoggerOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("loggerid", loggerid); + tracingParameters.Add("loggerId", loggerId); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "GetEntityTag", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/loggers/{loggerid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/loggers/{loggerId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{loggerid}", System.Uri.EscapeDataString(loggerid)); + _url = _url.Replace("{loggerId}", System.Uri.EscapeDataString(loggerId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -498,7 +498,7 @@ internal LoggerOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service instance. /// /// @@ -522,7 +522,7 @@ internal LoggerOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -547,19 +547,19 @@ internal LoggerOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (loggerid == null) + if (loggerId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "loggerid"); + throw new ValidationException(ValidationRules.CannotBeNull, "loggerId"); } - if (loggerid != null) + if (loggerId != null) { - if (loggerid.Length > 80) + if (loggerId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "loggerid", 80); + throw new ValidationException(ValidationRules.MaxLength, "loggerId", 256); } - if (!System.Text.RegularExpressions.Regex.IsMatch(loggerid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(loggerId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "loggerid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "loggerId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -579,16 +579,16 @@ internal LoggerOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("loggerid", loggerid); + tracingParameters.Add("loggerId", loggerId); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/loggers/{loggerid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/loggers/{loggerId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{loggerid}", System.Uri.EscapeDataString(loggerid)); + _url = _url.Replace("{loggerId}", System.Uri.EscapeDataString(loggerId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -737,7 +737,7 @@ internal LoggerOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service instance. /// /// @@ -768,7 +768,7 @@ internal LoggerOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerid, LoggerContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerId, LoggerContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -793,19 +793,19 @@ internal LoggerOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (loggerid == null) + if (loggerId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "loggerid"); + throw new ValidationException(ValidationRules.CannotBeNull, "loggerId"); } - if (loggerid != null) + if (loggerId != null) { - if (loggerid.Length > 80) + if (loggerId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "loggerid", 80); + throw new ValidationException(ValidationRules.MaxLength, "loggerId", 256); } - if (!System.Text.RegularExpressions.Regex.IsMatch(loggerid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(loggerId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "loggerid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "loggerId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -833,7 +833,7 @@ internal LoggerOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("loggerid", loggerid); + tracingParameters.Add("loggerId", loggerId); tracingParameters.Add("parameters", parameters); tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); @@ -841,10 +841,10 @@ internal LoggerOperations(ApiManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/loggers/{loggerid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/loggers/{loggerId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{loggerid}", System.Uri.EscapeDataString(loggerid)); + _url = _url.Replace("{loggerId}", System.Uri.EscapeDataString(loggerId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -953,7 +953,7 @@ internal LoggerOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -996,6 +996,19 @@ internal LoggerOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1012,7 +1025,7 @@ internal LoggerOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service instance. /// /// @@ -1041,7 +1054,7 @@ internal LoggerOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerid, LoggerUpdateContract parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerId, LoggerUpdateContract parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1066,19 +1079,19 @@ internal LoggerOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (loggerid == null) + if (loggerId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "loggerid"); + throw new ValidationException(ValidationRules.CannotBeNull, "loggerId"); } - if (loggerid != null) + if (loggerId != null) { - if (loggerid.Length > 80) + if (loggerId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "loggerid", 80); + throw new ValidationException(ValidationRules.MaxLength, "loggerId", 256); } - if (!System.Text.RegularExpressions.Regex.IsMatch(loggerid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(loggerId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "loggerid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "loggerId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1106,7 +1119,7 @@ internal LoggerOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("loggerid", loggerid); + tracingParameters.Add("loggerId", loggerId); tracingParameters.Add("parameters", parameters); tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); @@ -1114,10 +1127,10 @@ internal LoggerOperations(ApiManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/loggers/{loggerid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/loggers/{loggerId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{loggerid}", System.Uri.EscapeDataString(loggerid)); + _url = _url.Replace("{loggerId}", System.Uri.EscapeDataString(loggerId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -1249,7 +1262,7 @@ internal LoggerOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service instance. /// /// @@ -1257,6 +1270,9 @@ internal LoggerOperations(ApiManagementClient client) /// header response of the GET request or it should be * for unconditional /// update. /// + /// + /// Force deletion even if diagnostic is attached. + /// /// /// Headers that will be added to request. /// @@ -1275,7 +1291,7 @@ internal LoggerOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerid, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string loggerId, string ifMatch, bool? force = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1300,19 +1316,19 @@ internal LoggerOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (loggerid == null) + if (loggerId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "loggerid"); + throw new ValidationException(ValidationRules.CannotBeNull, "loggerId"); } - if (loggerid != null) + if (loggerId != null) { - if (loggerid.Length > 80) + if (loggerId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "loggerid", 80); + throw new ValidationException(ValidationRules.MaxLength, "loggerId", 256); } - if (!System.Text.RegularExpressions.Regex.IsMatch(loggerid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(loggerId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "loggerid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "loggerId", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) @@ -1336,19 +1352,24 @@ internal LoggerOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("loggerid", loggerid); + tracingParameters.Add("loggerId", loggerId); tracingParameters.Add("ifMatch", ifMatch); + tracingParameters.Add("force", force); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/loggers/{loggerid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/loggers/{loggerId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{loggerid}", System.Uri.EscapeDataString(loggerid)); + _url = _url.Replace("{loggerId}", System.Uri.EscapeDataString(loggerId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); + if (force != null) + { + _queryParameters.Add(string.Format("force={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(force, Client.SerializationSettings).Trim('"')))); + } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/LoggerOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/LoggerOperationsExtensions.cs index 07776e18c97e..a2f83603eac6 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/LoggerOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/LoggerOperationsExtensions.cs @@ -83,12 +83,12 @@ public static partial class LoggerOperationsExtensions /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service instance. /// - public static LoggerGetEntityTagHeaders GetEntityTag(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerid) + public static LoggerGetEntityTagHeaders GetEntityTag(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerId) { - return operations.GetEntityTagAsync(resourceGroupName, serviceName, loggerid).GetAwaiter().GetResult(); + return operations.GetEntityTagAsync(resourceGroupName, serviceName, loggerId).GetAwaiter().GetResult(); } /// @@ -104,15 +104,15 @@ public static LoggerGetEntityTagHeaders GetEntityTag(this ILoggerOperations oper /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service instance. /// /// /// The cancellation token. /// - public static async Task GetEntityTagAsync(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerid, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetEntityTagAsync(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetEntityTagWithHttpMessagesAsync(resourceGroupName, serviceName, loggerid, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetEntityTagWithHttpMessagesAsync(resourceGroupName, serviceName, loggerId, null, cancellationToken).ConfigureAwait(false)) { return _result.Headers; } @@ -130,12 +130,12 @@ public static LoggerGetEntityTagHeaders GetEntityTag(this ILoggerOperations oper /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service instance. /// - public static LoggerContract Get(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerid) + public static LoggerContract Get(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerId) { - return operations.GetAsync(resourceGroupName, serviceName, loggerid).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, serviceName, loggerId).GetAwaiter().GetResult(); } /// @@ -150,15 +150,15 @@ public static LoggerContract Get(this ILoggerOperations operations, string resou /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service instance. /// /// /// The cancellation token. /// - public static async Task GetAsync(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerid, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serviceName, loggerid, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serviceName, loggerId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -176,7 +176,7 @@ public static LoggerContract Get(this ILoggerOperations operations, string resou /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service instance. /// /// @@ -186,9 +186,9 @@ public static LoggerContract Get(this ILoggerOperations operations, string resou /// ETag of the Entity. Not required when creating an entity, but required when /// updating an entity. /// - public static LoggerContract CreateOrUpdate(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerid, LoggerContract parameters, string ifMatch = default(string)) + public static LoggerContract CreateOrUpdate(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerId, LoggerContract parameters, string ifMatch = default(string)) { - return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, loggerid, parameters, ifMatch).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, loggerId, parameters, ifMatch).GetAwaiter().GetResult(); } /// @@ -203,7 +203,7 @@ public static LoggerContract Get(this ILoggerOperations operations, string resou /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service instance. /// /// @@ -216,9 +216,9 @@ public static LoggerContract Get(this ILoggerOperations operations, string resou /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerid, LoggerContract parameters, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerId, LoggerContract parameters, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, loggerid, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, loggerId, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -236,7 +236,7 @@ public static LoggerContract Get(this ILoggerOperations operations, string resou /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service instance. /// /// @@ -247,9 +247,9 @@ public static LoggerContract Get(this ILoggerOperations operations, string resou /// header response of the GET request or it should be * for unconditional /// update. /// - public static void Update(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerid, LoggerUpdateContract parameters, string ifMatch) + public static void Update(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerId, LoggerUpdateContract parameters, string ifMatch) { - operations.UpdateAsync(resourceGroupName, serviceName, loggerid, parameters, ifMatch).GetAwaiter().GetResult(); + operations.UpdateAsync(resourceGroupName, serviceName, loggerId, parameters, ifMatch).GetAwaiter().GetResult(); } /// @@ -264,7 +264,7 @@ public static void Update(this ILoggerOperations operations, string resourceGrou /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service instance. /// /// @@ -278,9 +278,9 @@ public static void Update(this ILoggerOperations operations, string resourceGrou /// /// The cancellation token. /// - public static async Task UpdateAsync(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerid, LoggerUpdateContract parameters, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerId, LoggerUpdateContract parameters, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.UpdateWithHttpMessagesAsync(resourceGroupName, serviceName, loggerid, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.UpdateWithHttpMessagesAsync(resourceGroupName, serviceName, loggerId, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -295,7 +295,7 @@ public static void Update(this ILoggerOperations operations, string resourceGrou /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service instance. /// /// @@ -303,9 +303,12 @@ public static void Update(this ILoggerOperations operations, string resourceGrou /// header response of the GET request or it should be * for unconditional /// update. /// - public static void Delete(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerid, string ifMatch) + /// + /// Force deletion even if diagnostic is attached. + /// + public static void Delete(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerId, string ifMatch, bool? force = default(bool?)) { - operations.DeleteAsync(resourceGroupName, serviceName, loggerid, ifMatch).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, serviceName, loggerId, ifMatch, force).GetAwaiter().GetResult(); } /// @@ -320,7 +323,7 @@ public static void Delete(this ILoggerOperations operations, string resourceGrou /// /// The name of the API Management service. /// - /// + /// /// Logger identifier. Must be unique in the API Management service instance. /// /// @@ -328,12 +331,15 @@ public static void Delete(this ILoggerOperations operations, string resourceGrou /// header response of the GET request or it should be * for unconditional /// update. /// + /// + /// Force deletion even if diagnostic is attached. + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerid, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this ILoggerOperations operations, string resourceGroupName, string serviceName, string loggerId, string ifMatch, bool? force = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, loggerid, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, loggerId, ifMatch, force, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/AccessInformationContract.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/AccessInformationContract.cs index bb2dc85b2783..a95673ff3195 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/AccessInformationContract.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/AccessInformationContract.cs @@ -32,8 +32,8 @@ public AccessInformationContract() /// Identifier. /// Primary access key. /// Secondary access key. - /// Tenant access information of the API - /// Management service. + /// Determines whether direct access is + /// enabled. public AccessInformationContract(string id = default(string), string primaryKey = default(string), string secondaryKey = default(string), bool? enabled = default(bool?)) { Id = id; @@ -67,8 +67,7 @@ public AccessInformationContract() public string SecondaryKey { get; set; } /// - /// Gets or sets tenant access information of the API Management - /// service. + /// Gets or sets determines whether direct access is enabled. /// [JsonProperty(PropertyName = "enabled")] public bool? Enabled { get; set; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/AccessInformationUpdateParameters.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/AccessInformationUpdateParameters.cs index 8238de3e0249..0dccb2c8f50a 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/AccessInformationUpdateParameters.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/AccessInformationUpdateParameters.cs @@ -10,13 +10,15 @@ namespace Microsoft.Azure.Management.ApiManagement.Models { + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; /// - /// Tenant access information update parameters of the API Management - /// service. + /// Tenant access information update parameters. /// + [Rest.Serialization.JsonTransformation] public partial class AccessInformationUpdateParameters { /// @@ -32,8 +34,8 @@ public AccessInformationUpdateParameters() /// Initializes a new instance of the AccessInformationUpdateParameters /// class. /// - /// Tenant access information of the API - /// Management service. + /// Determines whether direct access is + /// enabled. public AccessInformationUpdateParameters(bool? enabled = default(bool?)) { Enabled = enabled; @@ -46,10 +48,9 @@ public AccessInformationUpdateParameters() partial void CustomInit(); /// - /// Gets or sets tenant access information of the API Management - /// service. + /// Gets or sets determines whether direct access is enabled. /// - [JsonProperty(PropertyName = "enabled")] + [JsonProperty(PropertyName = "properties.enabled")] public bool? Enabled { get; set; } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/AlwaysLog.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/AlwaysLog.cs new file mode 100644 index 000000000000..12ce420ecf8e --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/AlwaysLog.cs @@ -0,0 +1,24 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + + /// + /// Defines values for AlwaysLog. + /// + public static class AlwaysLog + { + /// + /// Always log all erroneous request regardless of sampling settings. + /// + public const string AllErrors = "allErrors"; + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiContract.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiContract.cs index e888e2cee73a..c9ef93de9951 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiContract.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiContract.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Management.ApiManagement.Models using System.Linq; /// - /// API details. + /// Api details. /// [Rest.Serialization.JsonTransformation] public partial class ApiContract : Resource @@ -65,12 +65,18 @@ public ApiContract() /// Version. /// A resource identifier for the related /// ApiVersionSet. - /// API name. + /// Specifies whether an API or + /// Product subscription is required for accessing the API. + /// API identifier of the source API. + /// API name. Must be 1 to 300 characters + /// long. /// Absolute URL of the backend service - /// implementing this API. + /// implementing this API. Cannot be more than 2000 characters + /// long. /// Describes on which protocols the operations /// in this API can be invoked. - public ApiContract(string path, string id = default(string), string name = default(string), string type = default(string), 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 apiRevisionDescription = default(string), string apiVersionDescription = default(string), string apiVersionSetId = default(string), string displayName = default(string), string serviceUrl = default(string), IList protocols = default(IList), ApiVersionSetContractDetails apiVersionSet = default(ApiVersionSetContractDetails)) + /// Version set details + public ApiContract(string path, string id = default(string), string name = default(string), string type = default(string), 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 apiRevisionDescription = default(string), string apiVersionDescription = default(string), string apiVersionSetId = default(string), bool? subscriptionRequired = default(bool?), string sourceApiId = default(string), string displayName = default(string), string serviceUrl = default(string), IList protocols = default(IList), ApiVersionSetContractDetails apiVersionSet = default(ApiVersionSetContractDetails)) : base(id, name, type) { Description = description; @@ -84,6 +90,8 @@ public ApiContract() ApiRevisionDescription = apiRevisionDescription; ApiVersionDescription = apiVersionDescription; ApiVersionSetId = apiVersionSetId; + SubscriptionRequired = subscriptionRequired; + SourceApiId = sourceApiId; DisplayName = displayName; ServiceUrl = serviceUrl; Path = path; @@ -138,10 +146,10 @@ public ApiContract() public string ApiVersion { get; set; } /// - /// Gets indicates if API revision is current api revision. + /// Gets or sets indicates if API revision is current api revision. /// [JsonProperty(PropertyName = "properties.isCurrent")] - public bool? IsCurrent { get; private set; } + public bool? IsCurrent { get; set; } /// /// Gets indicates if API revision is accessible via the gateway. @@ -168,14 +176,27 @@ public ApiContract() public string ApiVersionSetId { get; set; } /// - /// Gets or sets API name. + /// Gets or sets specifies whether an API or Product subscription is + /// required for accessing the API. + /// + [JsonProperty(PropertyName = "properties.subscriptionRequired")] + public bool? SubscriptionRequired { get; set; } + + /// + /// Gets or sets API identifier of the source API. + /// + [JsonProperty(PropertyName = "properties.sourceApiId")] + public string SourceApiId { get; set; } + + /// + /// Gets or sets API name. Must be 1 to 300 characters long. /// [JsonProperty(PropertyName = "properties.displayName")] public string DisplayName { get; set; } /// /// Gets or sets absolute URL of the backend service implementing this - /// API. + /// API. Cannot be more than 2000 characters long. /// [JsonProperty(PropertyName = "properties.serviceUrl")] public string ServiceUrl { get; set; } @@ -197,6 +218,7 @@ public ApiContract() public IList Protocols { get; set; } /// + /// Gets or sets version set details /// [JsonProperty(PropertyName = "properties.apiVersionSet")] public ApiVersionSetContractDetails ApiVersionSet { get; set; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiContractProperties.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiContractProperties.cs index 3f207fa33eea..abfb457626dd 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiContractProperties.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiContractProperties.cs @@ -59,14 +59,21 @@ public ApiContractProperties() /// Version. /// A resource identifier for the related /// ApiVersionSet. - /// API name. + /// Specifies whether an API or + /// Product subscription is required for accessing the API. + /// API identifier of the source API. + /// API name. Must be 1 to 300 characters + /// long. /// Absolute URL of the backend service - /// implementing this API. + /// implementing this API. Cannot be more than 2000 characters + /// long. /// Describes on which protocols the operations /// in this API can be invoked. - public ApiContractProperties(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 apiRevisionDescription = default(string), string apiVersionDescription = default(string), string apiVersionSetId = default(string), string displayName = default(string), string serviceUrl = default(string), IList protocols = default(IList), ApiVersionSetContractDetails apiVersionSet = default(ApiVersionSetContractDetails)) - : base(description, authenticationSettings, subscriptionKeyParameterNames, apiType, apiRevision, apiVersion, isCurrent, isOnline, apiRevisionDescription, apiVersionDescription, apiVersionSetId) + /// Version set details + public ApiContractProperties(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 apiRevisionDescription = default(string), string apiVersionDescription = default(string), string apiVersionSetId = default(string), bool? subscriptionRequired = default(bool?), string sourceApiId = default(string), string displayName = default(string), string serviceUrl = default(string), IList protocols = default(IList), ApiVersionSetContractDetails apiVersionSet = default(ApiVersionSetContractDetails)) + : base(description, authenticationSettings, subscriptionKeyParameterNames, apiType, apiRevision, apiVersion, isCurrent, isOnline, apiRevisionDescription, apiVersionDescription, apiVersionSetId, subscriptionRequired) { + SourceApiId = sourceApiId; DisplayName = displayName; ServiceUrl = serviceUrl; Path = path; @@ -81,14 +88,20 @@ public ApiContractProperties() partial void CustomInit(); /// - /// Gets or sets API name. + /// Gets or sets API identifier of the source API. + /// + [JsonProperty(PropertyName = "sourceApiId")] + public string SourceApiId { get; set; } + + /// + /// Gets or sets API name. Must be 1 to 300 characters long. /// [JsonProperty(PropertyName = "displayName")] public string DisplayName { get; set; } /// /// Gets or sets absolute URL of the backend service implementing this - /// API. + /// API. Cannot be more than 2000 characters long. /// [JsonProperty(PropertyName = "serviceUrl")] public string ServiceUrl { get; set; } @@ -110,6 +123,7 @@ public ApiContractProperties() public IList Protocols { get; set; } /// + /// Gets or sets version set details /// [JsonProperty(PropertyName = "apiVersionSet")] public ApiVersionSetContractDetails ApiVersionSet { get; set; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiCreateOrUpdateParameter.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiCreateOrUpdateParameter.cs index b5f661b7340c..63f3b3639e27 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiCreateOrUpdateParameter.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiCreateOrUpdateParameter.cs @@ -61,24 +61,29 @@ public ApiCreateOrUpdateParameter() /// Version. /// A resource identifier for the related /// ApiVersionSet. - /// API name. + /// Specifies whether an API or + /// Product subscription is required for accessing the API. + /// API identifier of the source API. + /// API name. Must be 1 to 300 characters + /// long. /// Absolute URL of the backend service - /// implementing this API. + /// implementing this API. Cannot be more than 2000 characters + /// long. /// Describes on which protocols the operations /// in this API can be invoked. - /// Content value when Importing an - /// API. - /// Format of the Content in which the API - /// is getting imported. Possible values include: 'wadl-xml', + /// Version set details + /// Content value when Importing an API. + /// Format of the Content in which the API is + /// getting imported. Possible values include: 'wadl-xml', /// 'wadl-link-json', 'swagger-json', 'swagger-link-json', 'wsdl', - /// 'wsdl-link' + /// 'wsdl-link', 'openapi', 'openapi+json', 'openapi-link' /// Criteria to limit import of WSDL to a /// subset of the document. /// Type of Api to create. /// * `http` creates a SOAP to REST API /// * `soap` creates a SOAP pass-through API. Possible values include: /// '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 apiRevisionDescription = default(string), string apiVersionDescription = default(string), 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)) + 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 apiRevisionDescription = default(string), string apiVersionDescription = default(string), string apiVersionSetId = default(string), bool? subscriptionRequired = default(bool?), string sourceApiId = default(string), string displayName = default(string), string serviceUrl = default(string), IList protocols = default(IList), ApiVersionSetContractDetails apiVersionSet = default(ApiVersionSetContractDetails), string value = default(string), string format = default(string), ApiCreateOrUpdatePropertiesWsdlSelector wsdlSelector = default(ApiCreateOrUpdatePropertiesWsdlSelector), string soapApiType = default(string)) { Description = description; AuthenticationSettings = authenticationSettings; @@ -91,13 +96,15 @@ public ApiCreateOrUpdateParameter() ApiRevisionDescription = apiRevisionDescription; ApiVersionDescription = apiVersionDescription; ApiVersionSetId = apiVersionSetId; + SubscriptionRequired = subscriptionRequired; + SourceApiId = sourceApiId; DisplayName = displayName; ServiceUrl = serviceUrl; Path = path; Protocols = protocols; ApiVersionSet = apiVersionSet; - ContentValue = contentValue; - ContentFormat = contentFormat; + Value = value; + Format = format; WsdlSelector = wsdlSelector; SoapApiType = soapApiType; CustomInit(); @@ -149,10 +156,10 @@ public ApiCreateOrUpdateParameter() public string ApiVersion { get; set; } /// - /// Gets indicates if API revision is current api revision. + /// Gets or sets indicates if API revision is current api revision. /// [JsonProperty(PropertyName = "properties.isCurrent")] - public bool? IsCurrent { get; private set; } + public bool? IsCurrent { get; set; } /// /// Gets indicates if API revision is accessible via the gateway. @@ -179,14 +186,27 @@ public ApiCreateOrUpdateParameter() public string ApiVersionSetId { get; set; } /// - /// Gets or sets API name. + /// Gets or sets specifies whether an API or Product subscription is + /// required for accessing the API. + /// + [JsonProperty(PropertyName = "properties.subscriptionRequired")] + public bool? SubscriptionRequired { get; set; } + + /// + /// Gets or sets API identifier of the source API. + /// + [JsonProperty(PropertyName = "properties.sourceApiId")] + public string SourceApiId { get; set; } + + /// + /// Gets or sets API name. Must be 1 to 300 characters long. /// [JsonProperty(PropertyName = "properties.displayName")] public string DisplayName { get; set; } /// /// Gets or sets absolute URL of the backend service implementing this - /// API. + /// API. Cannot be more than 2000 characters long. /// [JsonProperty(PropertyName = "properties.serviceUrl")] public string ServiceUrl { get; set; } @@ -208,6 +228,7 @@ public ApiCreateOrUpdateParameter() public IList Protocols { get; set; } /// + /// Gets or sets version set details /// [JsonProperty(PropertyName = "properties.apiVersionSet")] public ApiVersionSetContractDetails ApiVersionSet { get; set; } @@ -215,16 +236,17 @@ public ApiCreateOrUpdateParameter() /// /// Gets or sets content value when Importing an API. /// - [JsonProperty(PropertyName = "properties.contentValue")] - public string ContentValue { get; set; } + [JsonProperty(PropertyName = "properties.value")] + public string Value { get; set; } /// /// Gets or sets format of the Content in which the API is getting /// imported. Possible values include: 'wadl-xml', 'wadl-link-json', - /// 'swagger-json', 'swagger-link-json', 'wsdl', 'wsdl-link' + /// 'swagger-json', 'swagger-link-json', 'wsdl', 'wsdl-link', + /// 'openapi', 'openapi+json', 'openapi-link' /// - [JsonProperty(PropertyName = "properties.contentFormat")] - public string ContentFormat { get; set; } + [JsonProperty(PropertyName = "properties.format")] + public string Format { get; set; } /// /// Gets or sets criteria to limit import of WSDL to a subset of the diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/TagDescriptionGetEntityStateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiDiagnosticCreateOrUpdateHeaders.cs similarity index 79% rename from src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/TagDescriptionGetEntityStateHeaders.cs rename to src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiDiagnosticCreateOrUpdateHeaders.cs index 88da060d56d7..07ff1ff429f8 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/TagDescriptionGetEntityStateHeaders.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiDiagnosticCreateOrUpdateHeaders.cs @@ -14,26 +14,26 @@ namespace Microsoft.Azure.Management.ApiManagement.Models using System.Linq; /// - /// Defines headers for GetEntityState operation. + /// Defines headers for CreateOrUpdate operation. /// - public partial class TagDescriptionGetEntityStateHeaders + public partial class ApiDiagnosticCreateOrUpdateHeaders { /// /// Initializes a new instance of the - /// TagDescriptionGetEntityStateHeaders class. + /// ApiDiagnosticCreateOrUpdateHeaders class. /// - public TagDescriptionGetEntityStateHeaders() + public ApiDiagnosticCreateOrUpdateHeaders() { CustomInit(); } /// /// Initializes a new instance of the - /// TagDescriptionGetEntityStateHeaders class. + /// ApiDiagnosticCreateOrUpdateHeaders class. /// /// Current entity state version. Should be treated /// as opaque and used to make conditional HTTP requests. - public TagDescriptionGetEntityStateHeaders(string eTag = default(string)) + public ApiDiagnosticCreateOrUpdateHeaders(string eTag = default(string)) { ETag = eTag; CustomInit(); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiEntityBaseContract.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiEntityBaseContract.cs index 7db9634fa4e8..3a3644053459 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiEntityBaseContract.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiEntityBaseContract.cs @@ -52,7 +52,9 @@ public ApiEntityBaseContract() /// Version. /// A resource identifier for the related /// ApiVersionSet. - public ApiEntityBaseContract(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 apiRevisionDescription = default(string), string apiVersionDescription = default(string), string apiVersionSetId = default(string)) + /// Specifies whether an API or + /// Product subscription is required for accessing the API. + public ApiEntityBaseContract(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 apiRevisionDescription = default(string), string apiVersionDescription = default(string), string apiVersionSetId = default(string), bool? subscriptionRequired = default(bool?)) { Description = description; AuthenticationSettings = authenticationSettings; @@ -65,6 +67,7 @@ public ApiEntityBaseContract() ApiRevisionDescription = apiRevisionDescription; ApiVersionDescription = apiVersionDescription; ApiVersionSetId = apiVersionSetId; + SubscriptionRequired = subscriptionRequired; CustomInit(); } @@ -114,10 +117,10 @@ public ApiEntityBaseContract() public string ApiVersion { get; set; } /// - /// Gets indicates if API revision is current api revision. + /// Gets or sets indicates if API revision is current api revision. /// [JsonProperty(PropertyName = "isCurrent")] - public bool? IsCurrent { get; private set; } + public bool? IsCurrent { get; set; } /// /// Gets indicates if API revision is accessible via the gateway. @@ -143,6 +146,13 @@ public ApiEntityBaseContract() [JsonProperty(PropertyName = "apiVersionSetId")] public string ApiVersionSetId { get; set; } + /// + /// Gets or sets specifies whether an API or Product subscription is + /// required for accessing the API. + /// + [JsonProperty(PropertyName = "subscriptionRequired")] + public bool? SubscriptionRequired { get; set; } + /// /// Validate the object. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiExportResult.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiExportResult.cs index 17f3673af68c..cb2027f46a8f 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiExportResult.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiExportResult.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.ApiManagement.Models using System.Linq; /// - /// API Export result Blob Uri. + /// API Export result. /// public partial class ApiExportResult { @@ -29,12 +29,18 @@ public ApiExportResult() /// /// Initializes a new instance of the ApiExportResult class. /// - /// Link to the Storage Blob containing the result - /// of the export operation. The Blob Uri is only valid for 5 - /// minutes. - public ApiExportResult(string link = default(string)) + /// ResourceId of the API which was exported. + /// Format in which the Api Details + /// are exported to the Storage Blob with Sas Key valid for 5 minutes. + /// Possible values include: 'Swagger', 'Wsdl', 'Wadl', + /// 'OpenApi' + /// The object defining the schema of the exported + /// Api Detail + public ApiExportResult(string id = default(string), string exportResultFormat = default(string), ApiExportResultValue value = default(ApiExportResultValue)) { - Link = link; + Id = id; + ExportResultFormat = exportResultFormat; + Value = value; CustomInit(); } @@ -44,11 +50,25 @@ public ApiExportResult() partial void CustomInit(); /// - /// Gets or sets link to the Storage Blob containing the result of the - /// export operation. The Blob Uri is only valid for 5 minutes. + /// Gets or sets resourceId of the API which was exported. /// - [JsonProperty(PropertyName = "link")] - public string Link { get; set; } + [JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets format in which the Api Details are exported to the + /// Storage Blob with Sas Key valid for 5 minutes. Possible values + /// include: 'Swagger', 'Wsdl', 'Wadl', 'OpenApi' + /// + [JsonProperty(PropertyName = "format")] + public string ExportResultFormat { get; set; } + + /// + /// Gets or sets the object defining the schema of the exported Api + /// Detail + /// + [JsonProperty(PropertyName = "value")] + public ApiExportResultValue Value { get; set; } } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiExportResultValue.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiExportResultValue.cs new file mode 100644 index 000000000000..95f6644dfc5c --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiExportResultValue.cs @@ -0,0 +1,54 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The object defining the schema of the exported Api Detail + /// + public partial class ApiExportResultValue + { + /// + /// Initializes a new instance of the ApiExportResultValue class. + /// + public ApiExportResultValue() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ApiExportResultValue class. + /// + /// Link to the Storage Blob containing the result + /// of the export operation. The Blob Uri is only valid for 5 + /// minutes. + public ApiExportResultValue(string link = default(string)) + { + Link = link; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets link to the Storage Blob containing the result of the + /// export operation. The Blob Uri is only valid for 5 minutes. + /// + [JsonProperty(PropertyName = "link")] + public string Link { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiIssueAttachmentCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiIssueAttachmentCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..7d2f8f8e5429 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiIssueAttachmentCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class ApiIssueAttachmentCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// ApiIssueAttachmentCreateOrUpdateHeaders class. + /// + public ApiIssueAttachmentCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// ApiIssueAttachmentCreateOrUpdateHeaders class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public ApiIssueAttachmentCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiIssueCommentCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiIssueCommentCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..4f6b30ecc67a --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiIssueCommentCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class ApiIssueCommentCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// ApiIssueCommentCreateOrUpdateHeaders class. + /// + public ApiIssueCommentCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// ApiIssueCommentCreateOrUpdateHeaders class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public ApiIssueCommentCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiIssueCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiIssueCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..1a79e210ced0 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiIssueCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class ApiIssueCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the ApiIssueCreateOrUpdateHeaders + /// class. + /// + public ApiIssueCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ApiIssueCreateOrUpdateHeaders + /// class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public ApiIssueCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceBaseProperties.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceBaseProperties.cs index 378c3d017ea5..5c75e34f6b18 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceBaseProperties.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceBaseProperties.cs @@ -82,6 +82,11 @@ public ApiManagementServiceBaseProperties() /// List of Certificates that need to be /// installed in the API Management service. Max supported certificates /// that can be installed is 10. + /// Property only meant to be + /// used for Consumption SKU Service. This enforces a client + /// certificate to be presented on each request to the gateway. This + /// also enables the ability to authenticate the certificate in the + /// policy on the gateway. /// The type of VPN in which API /// Management service needs to be configured in. None (Default Value) /// means the API Management service is not part of any Virtual @@ -90,7 +95,7 @@ public ApiManagementServiceBaseProperties() /// Internal means that API Management deployment is setup inside a /// Virtual Network having an Intranet Facing Endpoint only. Possible /// values include: 'None', 'External', 'Internal' - public ApiManagementServiceBaseProperties(string notificationSenderEmail = default(string), string provisioningState = default(string), string targetProvisioningState = default(string), System.DateTime? createdAtUtc = default(System.DateTime?), string gatewayUrl = default(string), string gatewayRegionalUrl = default(string), string portalUrl = default(string), string managementApiUrl = default(string), string scmUrl = default(string), IList hostnameConfigurations = default(IList), IList publicIPAddresses = default(IList), IList privateIPAddresses = default(IList), VirtualNetworkConfiguration virtualNetworkConfiguration = default(VirtualNetworkConfiguration), IList additionalLocations = default(IList), IDictionary customProperties = default(IDictionary), IList certificates = default(IList), string virtualNetworkType = default(string)) + public ApiManagementServiceBaseProperties(string notificationSenderEmail = default(string), string provisioningState = default(string), string targetProvisioningState = default(string), System.DateTime? createdAtUtc = default(System.DateTime?), string gatewayUrl = default(string), string gatewayRegionalUrl = default(string), string portalUrl = default(string), string managementApiUrl = default(string), string scmUrl = default(string), IList hostnameConfigurations = default(IList), IList publicIPAddresses = default(IList), IList privateIPAddresses = default(IList), VirtualNetworkConfiguration virtualNetworkConfiguration = default(VirtualNetworkConfiguration), IList additionalLocations = default(IList), IDictionary customProperties = default(IDictionary), IList certificates = default(IList), bool? enableClientCertificate = default(bool?), string virtualNetworkType = default(string)) { NotificationSenderEmail = notificationSenderEmail; ProvisioningState = provisioningState; @@ -108,6 +113,7 @@ public ApiManagementServiceBaseProperties() AdditionalLocations = additionalLocations; CustomProperties = customProperties; Certificates = certificates; + EnableClientCertificate = enableClientCertificate; VirtualNetworkType = virtualNetworkType; CustomInit(); } @@ -238,6 +244,15 @@ public ApiManagementServiceBaseProperties() [JsonProperty(PropertyName = "certificates")] public IList Certificates { get; set; } + /// + /// Gets or sets property only meant to be used for Consumption SKU + /// Service. This enforces a client certificate to be presented on each + /// request to the gateway. This also enables the ability to + /// authenticate the certificate in the policy on the gateway. + /// + [JsonProperty(PropertyName = "enableClientCertificate")] + public bool? EnableClientCertificate { get; set; } + /// /// Gets or sets the type of VPN in which API Management service needs /// to be configured in. None (Default Value) means the API Management diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceResource.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceResource.cs index cd7fffb2a13a..613ebb73eb7d 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceResource.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceResource.cs @@ -94,6 +94,11 @@ public ApiManagementServiceResource() /// List of Certificates that need to be /// installed in the API Management service. Max supported certificates /// that can be installed is 10. + /// Property only meant to be + /// used for Consumption SKU Service. This enforces a client + /// certificate to be presented on each request to the gateway. This + /// also enables the ability to authenticate the certificate in the + /// policy on the gateway. /// The type of VPN in which API /// Management service needs to be configured in. None (Default Value) /// means the API Management service is not part of any Virtual @@ -105,7 +110,7 @@ public ApiManagementServiceResource() /// Managed service identity of the Api /// Management service. /// ETag of the resource. - public ApiManagementServiceResource(string publisherEmail, string publisherName, ApiManagementServiceSkuProperties sku, string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string notificationSenderEmail = default(string), string provisioningState = default(string), string targetProvisioningState = default(string), System.DateTime? createdAtUtc = default(System.DateTime?), string gatewayUrl = default(string), string gatewayRegionalUrl = default(string), string portalUrl = default(string), string managementApiUrl = default(string), string scmUrl = default(string), IList hostnameConfigurations = default(IList), IList publicIPAddresses = default(IList), IList privateIPAddresses = default(IList), VirtualNetworkConfiguration virtualNetworkConfiguration = default(VirtualNetworkConfiguration), IList additionalLocations = default(IList), IDictionary customProperties = default(IDictionary), IList certificates = default(IList), string virtualNetworkType = default(string), ApiManagementServiceIdentity identity = default(ApiManagementServiceIdentity), string etag = default(string)) + public ApiManagementServiceResource(string publisherEmail, string publisherName, ApiManagementServiceSkuProperties sku, string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string notificationSenderEmail = default(string), string provisioningState = default(string), string targetProvisioningState = default(string), System.DateTime? createdAtUtc = default(System.DateTime?), string gatewayUrl = default(string), string gatewayRegionalUrl = default(string), string portalUrl = default(string), string managementApiUrl = default(string), string scmUrl = default(string), IList hostnameConfigurations = default(IList), IList publicIPAddresses = default(IList), IList privateIPAddresses = default(IList), VirtualNetworkConfiguration virtualNetworkConfiguration = default(VirtualNetworkConfiguration), IList additionalLocations = default(IList), IDictionary customProperties = default(IDictionary), IList certificates = default(IList), bool? enableClientCertificate = default(bool?), string virtualNetworkType = default(string), ApiManagementServiceIdentity identity = default(ApiManagementServiceIdentity), string etag = default(string)) : base(id, name, type, tags) { NotificationSenderEmail = notificationSenderEmail; @@ -124,6 +129,7 @@ public ApiManagementServiceResource() AdditionalLocations = additionalLocations; CustomProperties = customProperties; Certificates = certificates; + EnableClientCertificate = enableClientCertificate; VirtualNetworkType = virtualNetworkType; PublisherEmail = publisherEmail; PublisherName = publisherName; @@ -260,6 +266,15 @@ public ApiManagementServiceResource() [JsonProperty(PropertyName = "properties.certificates")] public IList Certificates { get; set; } + /// + /// Gets or sets property only meant to be used for Consumption SKU + /// Service. This enforces a client certificate to be presented on each + /// request to the gateway. This also enables the ability to + /// authenticate the certificate in the policy on the gateway. + /// + [JsonProperty(PropertyName = "properties.enableClientCertificate")] + public bool? EnableClientCertificate { get; set; } + /// /// Gets or sets the type of VPN in which API Management service needs /// to be configured in. None (Default Value) means the API Management diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceSkuProperties.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceSkuProperties.cs index d5fa7f53dde8..f3e8837f135b 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceSkuProperties.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceSkuProperties.cs @@ -33,7 +33,7 @@ public ApiManagementServiceSkuProperties() /// class. /// /// Name of the Sku. Possible values include: - /// 'Developer', 'Standard', 'Premium', 'Basic' + /// 'Developer', 'Standard', 'Premium', 'Basic', 'Consumption' /// Capacity of the SKU (number of deployed /// units of the SKU). The default value is 1. public ApiManagementServiceSkuProperties(string name, int? capacity = default(int?)) @@ -50,7 +50,7 @@ public ApiManagementServiceSkuProperties() /// /// Gets or sets name of the Sku. Possible values include: 'Developer', - /// 'Standard', 'Premium', 'Basic' + /// 'Standard', 'Premium', 'Basic', 'Consumption' /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceUpdateHostnameParameters.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceUpdateHostnameParameters.cs deleted file mode 100644 index d9eb729d5698..000000000000 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceUpdateHostnameParameters.cs +++ /dev/null @@ -1,63 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.ApiManagement.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Parameters supplied to the UpdateHostname operation. - /// - public partial class ApiManagementServiceUpdateHostnameParameters - { - /// - /// Initializes a new instance of the - /// ApiManagementServiceUpdateHostnameParameters class. - /// - public ApiManagementServiceUpdateHostnameParameters() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// ApiManagementServiceUpdateHostnameParameters class. - /// - /// Hostnames to create or update. - /// Hostnames types to delete. - public ApiManagementServiceUpdateHostnameParameters(IList update = default(IList), IList delete = default(IList)) - { - Update = update; - Delete = delete; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets hostnames to create or update. - /// - [JsonProperty(PropertyName = "update")] - public IList Update { get; set; } - - /// - /// Gets or sets hostnames types to delete. - /// - [JsonProperty(PropertyName = "delete")] - public IList Delete { get; set; } - - } -} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceUpdateParameters.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceUpdateParameters.cs index fa07a644a0da..caad94497ae3 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceUpdateParameters.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceUpdateParameters.cs @@ -89,6 +89,11 @@ public ApiManagementServiceUpdateParameters() /// List of Certificates that need to be /// installed in the API Management service. Max supported certificates /// that can be installed is 10. + /// Property only meant to be + /// used for Consumption SKU Service. This enforces a client + /// certificate to be presented on each request to the gateway. This + /// also enables the ability to authenticate the certificate in the + /// policy on the gateway. /// The type of VPN in which API /// Management service needs to be configured in. None (Default Value) /// means the API Management service is not part of any Virtual @@ -104,7 +109,7 @@ public ApiManagementServiceUpdateParameters() /// Managed service identity of the Api /// Management service. /// ETag of the resource. - public ApiManagementServiceUpdateParameters(string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string notificationSenderEmail = default(string), string provisioningState = default(string), string targetProvisioningState = default(string), System.DateTime? createdAtUtc = default(System.DateTime?), string gatewayUrl = default(string), string gatewayRegionalUrl = default(string), string portalUrl = default(string), string managementApiUrl = default(string), string scmUrl = default(string), IList hostnameConfigurations = default(IList), IList publicIPAddresses = default(IList), IList privateIPAddresses = default(IList), VirtualNetworkConfiguration virtualNetworkConfiguration = default(VirtualNetworkConfiguration), IList additionalLocations = default(IList), IDictionary customProperties = default(IDictionary), IList certificates = default(IList), string virtualNetworkType = default(string), string publisherEmail = default(string), string publisherName = default(string), ApiManagementServiceSkuProperties sku = default(ApiManagementServiceSkuProperties), ApiManagementServiceIdentity identity = default(ApiManagementServiceIdentity), string etag = default(string)) + public ApiManagementServiceUpdateParameters(string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string notificationSenderEmail = default(string), string provisioningState = default(string), string targetProvisioningState = default(string), System.DateTime? createdAtUtc = default(System.DateTime?), string gatewayUrl = default(string), string gatewayRegionalUrl = default(string), string portalUrl = default(string), string managementApiUrl = default(string), string scmUrl = default(string), IList hostnameConfigurations = default(IList), IList publicIPAddresses = default(IList), IList privateIPAddresses = default(IList), VirtualNetworkConfiguration virtualNetworkConfiguration = default(VirtualNetworkConfiguration), IList additionalLocations = default(IList), IDictionary customProperties = default(IDictionary), IList certificates = default(IList), bool? enableClientCertificate = default(bool?), string virtualNetworkType = default(string), string publisherEmail = default(string), string publisherName = default(string), ApiManagementServiceSkuProperties sku = default(ApiManagementServiceSkuProperties), ApiManagementServiceIdentity identity = default(ApiManagementServiceIdentity), string etag = default(string)) : base(id, name, type, tags) { NotificationSenderEmail = notificationSenderEmail; @@ -123,6 +128,7 @@ public ApiManagementServiceUpdateParameters() AdditionalLocations = additionalLocations; CustomProperties = customProperties; Certificates = certificates; + EnableClientCertificate = enableClientCertificate; VirtualNetworkType = virtualNetworkType; PublisherEmail = publisherEmail; PublisherName = publisherName; @@ -258,6 +264,15 @@ public ApiManagementServiceUpdateParameters() [JsonProperty(PropertyName = "properties.certificates")] public IList Certificates { get; set; } + /// + /// Gets or sets property only meant to be used for Consumption SKU + /// Service. This enforces a client certificate to be presented on each + /// request to the gateway. This also enables the ability to + /// authenticate the certificate in the policy on the gateway. + /// + [JsonProperty(PropertyName = "properties.enableClientCertificate")] + public bool? EnableClientCertificate { get; set; } + /// /// Gets or sets the type of VPN in which API Management service needs /// to be configured in. None (Default Value) means the API Management diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceUploadCertificateParameters.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceUploadCertificateParameters.cs deleted file mode 100644 index 174e1c871e38..000000000000 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiManagementServiceUploadCertificateParameters.cs +++ /dev/null @@ -1,90 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.ApiManagement.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Parameters supplied to the Upload SSL certificate for an API Management - /// service operation. - /// - public partial class ApiManagementServiceUploadCertificateParameters - { - /// - /// Initializes a new instance of the - /// ApiManagementServiceUploadCertificateParameters class. - /// - public ApiManagementServiceUploadCertificateParameters() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// ApiManagementServiceUploadCertificateParameters class. - /// - /// Hostname type. Possible values include: 'Proxy', - /// 'Portal', 'Management', 'Scm' - /// Base64 Encoded certificate. - /// Certificate password. - public ApiManagementServiceUploadCertificateParameters(HostnameType type, string certificate, string certificatePassword) - { - Type = type; - Certificate = certificate; - CertificatePassword = certificatePassword; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets hostname type. Possible values include: 'Proxy', - /// 'Portal', 'Management', 'Scm' - /// - [JsonProperty(PropertyName = "type")] - public HostnameType Type { get; set; } - - /// - /// Gets or sets base64 Encoded certificate. - /// - [JsonProperty(PropertyName = "certificate")] - public string Certificate { get; set; } - - /// - /// Gets or sets certificate password. - /// - [JsonProperty(PropertyName = "certificate_password")] - public string CertificatePassword { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Certificate == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Certificate"); - } - if (CertificatePassword == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "CertificatePassword"); - } - } - } -} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductPolicyListByProductHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiOperationCreateOrUpdateHeaders.cs similarity index 77% rename from src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductPolicyListByProductHeaders.cs rename to src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiOperationCreateOrUpdateHeaders.cs index 8973b626b15f..4b6d5681472c 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductPolicyListByProductHeaders.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiOperationCreateOrUpdateHeaders.cs @@ -14,26 +14,26 @@ namespace Microsoft.Azure.Management.ApiManagement.Models using System.Linq; /// - /// Defines headers for ListByProduct operation. + /// Defines headers for CreateOrUpdate operation. /// - public partial class ProductPolicyListByProductHeaders + public partial class ApiOperationCreateOrUpdateHeaders { /// - /// Initializes a new instance of the ProductPolicyListByProductHeaders + /// Initializes a new instance of the ApiOperationCreateOrUpdateHeaders /// class. /// - public ProductPolicyListByProductHeaders() + public ApiOperationCreateOrUpdateHeaders() { CustomInit(); } /// - /// Initializes a new instance of the ProductPolicyListByProductHeaders + /// Initializes a new instance of the ApiOperationCreateOrUpdateHeaders /// class. /// /// Current entity state version. Should be treated /// as opaque and used to make conditional HTTP requests. - public ProductPolicyListByProductHeaders(string eTag = default(string)) + public ApiOperationCreateOrUpdateHeaders(string eTag = default(string)) { ETag = eTag; CustomInit(); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiOperationPolicyCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiOperationPolicyCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..e2e851fe04ae --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiOperationPolicyCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class ApiOperationPolicyCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// ApiOperationPolicyCreateOrUpdateHeaders class. + /// + public ApiOperationPolicyCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// ApiOperationPolicyCreateOrUpdateHeaders class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public ApiOperationPolicyCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiPolicyCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiPolicyCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..35d75569d531 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiPolicyCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class ApiPolicyCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the ApiPolicyCreateOrUpdateHeaders + /// class. + /// + public ApiPolicyCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ApiPolicyCreateOrUpdateHeaders + /// class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public ApiPolicyCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiReleaseContract.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiReleaseContract.cs index 493d55bc6207..25ac88945611 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiReleaseContract.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiReleaseContract.cs @@ -16,7 +16,7 @@ namespace Microsoft.Azure.Management.ApiManagement.Models using System.Linq; /// - /// Api Release details. + /// ApiRelease details. /// [Rest.Serialization.JsonTransformation] public partial class ApiReleaseContract : Resource diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiReleaseCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiReleaseCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..31bc638a89e0 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiReleaseCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class ApiReleaseCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the ApiReleaseCreateOrUpdateHeaders + /// class. + /// + public ApiReleaseCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ApiReleaseCreateOrUpdateHeaders + /// class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public ApiReleaseCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/TagDescriptionGetHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiReleaseGetHeaders.cs similarity index 81% rename from src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/TagDescriptionGetHeaders.cs rename to src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiReleaseGetHeaders.cs index 6b4f43d29e20..8e09b0e0ee56 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/TagDescriptionGetHeaders.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiReleaseGetHeaders.cs @@ -16,22 +16,22 @@ namespace Microsoft.Azure.Management.ApiManagement.Models /// /// Defines headers for Get operation. /// - public partial class TagDescriptionGetHeaders + public partial class ApiReleaseGetHeaders { /// - /// Initializes a new instance of the TagDescriptionGetHeaders class. + /// Initializes a new instance of the ApiReleaseGetHeaders class. /// - public TagDescriptionGetHeaders() + public ApiReleaseGetHeaders() { CustomInit(); } /// - /// Initializes a new instance of the TagDescriptionGetHeaders class. + /// Initializes a new instance of the ApiReleaseGetHeaders class. /// /// Current entity state version. Should be treated /// as opaque and used to make conditional HTTP requests. - public TagDescriptionGetHeaders(string eTag = default(string)) + public ApiReleaseGetHeaders(string eTag = default(string)) { ETag = eTag; CustomInit(); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiSchemaCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiSchemaCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..2ee2cdb31b52 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiSchemaCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class ApiSchemaCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the ApiSchemaCreateOrUpdateHeaders + /// class. + /// + public ApiSchemaCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ApiSchemaCreateOrUpdateHeaders + /// class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public ApiSchemaCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiTagDescriptionCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiTagDescriptionCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..d7315c18112c --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiTagDescriptionCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class ApiTagDescriptionCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// ApiTagDescriptionCreateOrUpdateHeaders class. + /// + public ApiTagDescriptionCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// ApiTagDescriptionCreateOrUpdateHeaders class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public ApiTagDescriptionCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiTagDescriptionGetEntityTagHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiTagDescriptionGetEntityTagHeaders.cs new file mode 100644 index 000000000000..b7df522c9235 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiTagDescriptionGetEntityTagHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for GetEntityTag operation. + /// + public partial class ApiTagDescriptionGetEntityTagHeaders + { + /// + /// Initializes a new instance of the + /// ApiTagDescriptionGetEntityTagHeaders class. + /// + public ApiTagDescriptionGetEntityTagHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// ApiTagDescriptionGetEntityTagHeaders class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public ApiTagDescriptionGetEntityTagHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiTagDescriptionGetHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiTagDescriptionGetHeaders.cs new file mode 100644 index 000000000000..19912f23f96b --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiTagDescriptionGetHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for Get operation. + /// + public partial class ApiTagDescriptionGetHeaders + { + /// + /// Initializes a new instance of the ApiTagDescriptionGetHeaders + /// class. + /// + public ApiTagDescriptionGetHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ApiTagDescriptionGetHeaders + /// class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public ApiTagDescriptionGetHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiTagResourceContractProperties.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiTagResourceContractProperties.cs index 228a5238ff2d..eb956160cc20 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiTagResourceContractProperties.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiTagResourceContractProperties.cs @@ -56,6 +56,8 @@ public ApiTagResourceContractProperties() /// Version. /// A resource identifier for the related /// ApiVersionSet. + /// Specifies whether an API or + /// Product subscription is required for accessing the API. /// API identifier in the form /apis/{apiId}. /// API name. /// Absolute URL of the backend service @@ -67,8 +69,8 @@ public ApiTagResourceContractProperties() /// API. /// Describes on which protocols the operations /// in this API can be invoked. - public ApiTagResourceContractProperties(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 apiRevisionDescription = default(string), string apiVersionDescription = default(string), string apiVersionSetId = default(string), string id = default(string), string name = default(string), string serviceUrl = default(string), string path = default(string), IList protocols = default(IList)) - : base(description, authenticationSettings, subscriptionKeyParameterNames, apiType, apiRevision, apiVersion, isCurrent, isOnline, apiRevisionDescription, apiVersionDescription, apiVersionSetId) + public ApiTagResourceContractProperties(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 apiRevisionDescription = default(string), string apiVersionDescription = default(string), string apiVersionSetId = default(string), bool? subscriptionRequired = default(bool?), string id = default(string), string name = default(string), string serviceUrl = default(string), string path = default(string), IList protocols = default(IList)) + : base(description, authenticationSettings, subscriptionKeyParameterNames, apiType, apiRevision, apiVersion, isCurrent, isOnline, apiRevisionDescription, apiVersionDescription, apiVersionSetId, subscriptionRequired) { Id = id; Name = name; diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiUpdateContract.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiUpdateContract.cs index e37f0a261798..7701cc20b045 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiUpdateContract.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiUpdateContract.cs @@ -56,6 +56,8 @@ public ApiUpdateContract() /// Version. /// A resource identifier for the related /// ApiVersionSet. + /// Specifies whether an API or + /// Product subscription is required for accessing the API. /// API name. /// Absolute URL of the backend service /// implementing this API. @@ -66,7 +68,7 @@ public ApiUpdateContract() /// API. /// Describes on which protocols the operations /// in this API can be invoked. - public ApiUpdateContract(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 apiRevisionDescription = default(string), string apiVersionDescription = default(string), string apiVersionSetId = default(string), string displayName = default(string), string serviceUrl = default(string), string path = default(string), IList protocols = default(IList)) + public ApiUpdateContract(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 apiRevisionDescription = default(string), string apiVersionDescription = default(string), string apiVersionSetId = default(string), bool? subscriptionRequired = default(bool?), string displayName = default(string), string serviceUrl = default(string), string path = default(string), IList protocols = default(IList)) { Description = description; AuthenticationSettings = authenticationSettings; @@ -79,6 +81,7 @@ public ApiUpdateContract() ApiRevisionDescription = apiRevisionDescription; ApiVersionDescription = apiVersionDescription; ApiVersionSetId = apiVersionSetId; + SubscriptionRequired = subscriptionRequired; DisplayName = displayName; ServiceUrl = serviceUrl; Path = path; @@ -132,10 +135,10 @@ public ApiUpdateContract() public string ApiVersion { get; set; } /// - /// Gets indicates if API revision is current api revision. + /// Gets or sets indicates if API revision is current api revision. /// [JsonProperty(PropertyName = "properties.isCurrent")] - public bool? IsCurrent { get; private set; } + public bool? IsCurrent { get; set; } /// /// Gets indicates if API revision is accessible via the gateway. @@ -161,6 +164,13 @@ public ApiUpdateContract() [JsonProperty(PropertyName = "properties.apiVersionSetId")] public string ApiVersionSetId { get; set; } + /// + /// Gets or sets specifies whether an API or Product subscription is + /// required for accessing the API. + /// + [JsonProperty(PropertyName = "properties.subscriptionRequired")] + public bool? SubscriptionRequired { get; set; } + /// /// Gets or sets API name. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiVersionSetContractDetails.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiVersionSetContractDetails.cs index 5f07c44b8ab4..d62a35bf699e 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiVersionSetContractDetails.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiVersionSetContractDetails.cs @@ -34,6 +34,7 @@ public ApiVersionSetContractDetails() /// /// Identifier for existing API Version Set. Omit this /// value to create a new Version Set. + /// The display Name of the API Version Set. /// Description of API Version Set. /// An value that determines where the /// API Version identifer will be located in a HTTP request. Possible @@ -44,9 +45,10 @@ public ApiVersionSetContractDetails() /// Name of HTTP header parameter that /// indicates the API Version if versioningScheme is set to /// `header`. - public ApiVersionSetContractDetails(string id = default(string), string description = default(string), string versioningScheme = default(string), string versionQueryName = default(string), string versionHeaderName = default(string)) + public ApiVersionSetContractDetails(string id = default(string), string name = default(string), string description = default(string), string versioningScheme = default(string), string versionQueryName = default(string), string versionHeaderName = default(string)) { Id = id; + Name = name; Description = description; VersioningScheme = versioningScheme; VersionQueryName = versionQueryName; @@ -66,6 +68,12 @@ public ApiVersionSetContractDetails() [JsonProperty(PropertyName = "id")] public string Id { get; set; } + /// + /// Gets or sets the display Name of the API Version Set. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + /// /// Gets or sets description of API Version Set. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiVersionSetCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiVersionSetCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..bf23299d37e6 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiVersionSetCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class ApiVersionSetCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// ApiVersionSetCreateOrUpdateHeaders class. + /// + public ApiVersionSetCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// ApiVersionSetCreateOrUpdateHeaders class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public ApiVersionSetCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/AuthorizationServerCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/AuthorizationServerCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..239e01986738 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/AuthorizationServerCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class AuthorizationServerCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// AuthorizationServerCreateOrUpdateHeaders class. + /// + public AuthorizationServerCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// AuthorizationServerCreateOrUpdateHeaders class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public AuthorizationServerCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/BackendCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/BackendCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..c330d38efb96 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/BackendCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class BackendCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the BackendCreateOrUpdateHeaders + /// class. + /// + public BackendCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the BackendCreateOrUpdateHeaders + /// class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public BackendCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/BodyDiagnosticSettings.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/BodyDiagnosticSettings.cs new file mode 100644 index 000000000000..89eefdb8ba67 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/BodyDiagnosticSettings.cs @@ -0,0 +1,65 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Body logging settings. + /// + public partial class BodyDiagnosticSettings + { + /// + /// Initializes a new instance of the BodyDiagnosticSettings class. + /// + public BodyDiagnosticSettings() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the BodyDiagnosticSettings class. + /// + /// Number of request body bytes to log. + public BodyDiagnosticSettings(int? bytes = default(int?)) + { + Bytes = bytes; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets number of request body bytes to log. + /// + [JsonProperty(PropertyName = "bytes")] + public int? Bytes { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Bytes > 8192) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "Bytes", 8192); + } + } + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CacheContract.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CacheContract.cs new file mode 100644 index 000000000000..2d7c660a2553 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CacheContract.cs @@ -0,0 +1,112 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Cache details. + /// + [Rest.Serialization.JsonTransformation] + public partial class CacheContract : Resource + { + /// + /// Initializes a new instance of the CacheContract class. + /// + public CacheContract() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CacheContract class. + /// + /// Runtime connection string to + /// cache + /// Resource ID. + /// Resource name. + /// Resource type for API Management + /// resource. + /// Cache description + /// Original uri of entity in external system + /// cache points to + public CacheContract(string connectionString, string id = default(string), string name = default(string), string type = default(string), string description = default(string), string resourceId = default(string)) + : base(id, name, type) + { + Description = description; + ConnectionString = connectionString; + ResourceId = resourceId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets cache description + /// + [JsonProperty(PropertyName = "properties.description")] + public string Description { get; set; } + + /// + /// Gets or sets runtime connection string to cache + /// + [JsonProperty(PropertyName = "properties.connectionString")] + public string ConnectionString { get; set; } + + /// + /// Gets or sets original uri of entity in external system cache points + /// to + /// + [JsonProperty(PropertyName = "properties.resourceId")] + public string ResourceId { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (ConnectionString == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ConnectionString"); + } + if (Description != null) + { + if (Description.Length > 2000) + { + throw new ValidationException(ValidationRules.MaxLength, "Description", 2000); + } + } + if (ConnectionString != null) + { + if (ConnectionString.Length > 300) + { + throw new ValidationException(ValidationRules.MaxLength, "ConnectionString", 300); + } + } + if (ResourceId != null) + { + if (ResourceId.Length > 2000) + { + throw new ValidationException(ValidationRules.MaxLength, "ResourceId", 2000); + } + } + } + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CacheCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CacheCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..b6aefa982c22 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CacheCreateOrUpdateHeaders.cs @@ -0,0 +1,53 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class CacheCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the CacheCreateOrUpdateHeaders class. + /// + public CacheCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CacheCreateOrUpdateHeaders class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public CacheCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiPolicyListByApiHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CacheGetEntityTagHeaders.cs similarity index 77% rename from src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiPolicyListByApiHeaders.cs rename to src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CacheGetEntityTagHeaders.cs index 01f6a25116eb..2a8e9c5860c5 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiPolicyListByApiHeaders.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CacheGetEntityTagHeaders.cs @@ -14,24 +14,24 @@ namespace Microsoft.Azure.Management.ApiManagement.Models using System.Linq; /// - /// Defines headers for ListByApi operation. + /// Defines headers for GetEntityTag operation. /// - public partial class ApiPolicyListByApiHeaders + public partial class CacheGetEntityTagHeaders { /// - /// Initializes a new instance of the ApiPolicyListByApiHeaders class. + /// Initializes a new instance of the CacheGetEntityTagHeaders class. /// - public ApiPolicyListByApiHeaders() + public CacheGetEntityTagHeaders() { CustomInit(); } /// - /// Initializes a new instance of the ApiPolicyListByApiHeaders class. + /// Initializes a new instance of the CacheGetEntityTagHeaders class. /// /// Current entity state version. Should be treated /// as opaque and used to make conditional HTTP requests. - public ApiPolicyListByApiHeaders(string eTag = default(string)) + public CacheGetEntityTagHeaders(string eTag = default(string)) { ETag = eTag; CustomInit(); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CacheGetHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CacheGetHeaders.cs new file mode 100644 index 000000000000..90461881fd76 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CacheGetHeaders.cs @@ -0,0 +1,53 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for Get operation. + /// + public partial class CacheGetHeaders + { + /// + /// Initializes a new instance of the CacheGetHeaders class. + /// + public CacheGetHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CacheGetHeaders class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public CacheGetHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CacheUpdateParameters.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CacheUpdateParameters.cs new file mode 100644 index 000000000000..5ee3d3d2b2a7 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CacheUpdateParameters.cs @@ -0,0 +1,103 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Cache update details. + /// + [Rest.Serialization.JsonTransformation] + public partial class CacheUpdateParameters + { + /// + /// Initializes a new instance of the CacheUpdateParameters class. + /// + public CacheUpdateParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CacheUpdateParameters class. + /// + /// Cache description + /// Runtime connection string to + /// cache + /// Original uri of entity in external system + /// cache points to + public CacheUpdateParameters(string description = default(string), string connectionString = default(string), string resourceId = default(string)) + { + Description = description; + ConnectionString = connectionString; + ResourceId = resourceId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets cache description + /// + [JsonProperty(PropertyName = "properties.description")] + public string Description { get; set; } + + /// + /// Gets or sets runtime connection string to cache + /// + [JsonProperty(PropertyName = "properties.connectionString")] + public string ConnectionString { get; set; } + + /// + /// Gets or sets original uri of entity in external system cache points + /// to + /// + [JsonProperty(PropertyName = "properties.resourceId")] + public string ResourceId { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Description != null) + { + if (Description.Length > 2000) + { + throw new ValidationException(ValidationRules.MaxLength, "Description", 2000); + } + } + if (ConnectionString != null) + { + if (ConnectionString.Length > 300) + { + throw new ValidationException(ValidationRules.MaxLength, "ConnectionString", 300); + } + } + if (ResourceId != null) + { + if (ResourceId.Length > 2000) + { + throw new ValidationException(ValidationRules.MaxLength, "ResourceId", 2000); + } + } + } + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CertificateCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CertificateCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..d4aa92ef7029 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CertificateCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class CertificateCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the CertificateCreateOrUpdateHeaders + /// class. + /// + public CertificateCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CertificateCreateOrUpdateHeaders + /// class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public CertificateCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ContentFormat.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ContentFormat.cs index 9610f5808635..1bad0c969a30 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ContentFormat.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ContentFormat.cs @@ -43,5 +43,20 @@ public static class ContentFormat /// address. /// public const string WsdlLink = "wsdl-link"; + /// + /// The contents are inline and Content Type is a OpenApi 3.0 Document + /// in YAML format. + /// + public const string Openapi = "openapi"; + /// + /// The contents are inline and Content Type is a OpenApi 3.0 Document + /// in JSON format. + /// + public const string Openapijson = "openapi+json"; + /// + /// The Open Api 3.0 document is hosted on a publicly accessible + /// internet address. + /// + public const string OpenapiLink = "openapi-link"; } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CurrentUserIdentity.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CurrentUserIdentity.cs deleted file mode 100644 index d28786fc53e6..000000000000 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/CurrentUserIdentity.cs +++ /dev/null @@ -1,48 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.ApiManagement.Models -{ - using Newtonsoft.Json; - using System.Linq; - - public partial class CurrentUserIdentity - { - /// - /// Initializes a new instance of the CurrentUserIdentity class. - /// - public CurrentUserIdentity() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CurrentUserIdentity class. - /// - /// API Management service user id. - public CurrentUserIdentity(string id = default(string)) - { - Id = id; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets API Management service user id. - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; set; } - - } -} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/DeployConfigurationParameters.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/DeployConfigurationParameters.cs index ef4460c6617e..b3ec13c2489c 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/DeployConfigurationParameters.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/DeployConfigurationParameters.cs @@ -11,12 +11,14 @@ namespace Microsoft.Azure.Management.ApiManagement.Models { using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; /// - /// Parameters supplied to the Deploy Configuration operation. + /// Deploy Tenant Configuration Contract. /// + [Rest.Serialization.JsonTransformation] public partial class DeployConfigurationParameters { /// @@ -53,14 +55,14 @@ public DeployConfigurationParameters() /// Gets or sets the name of the Git branch from which the /// configuration is to be deployed to the configuration database. /// - [JsonProperty(PropertyName = "branch")] + [JsonProperty(PropertyName = "properties.branch")] public string Branch { get; set; } /// /// Gets or sets the value enforcing deleting subscriptions to products /// that are deleted in this update. /// - [JsonProperty(PropertyName = "force")] + [JsonProperty(PropertyName = "properties.force")] public bool? Force { get; set; } /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/DiagnosticContract.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/DiagnosticContract.cs index e18dc7176900..f6d2b2bba129 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/DiagnosticContract.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/DiagnosticContract.cs @@ -32,16 +32,32 @@ public DiagnosticContract() /// /// Initializes a new instance of the DiagnosticContract class. /// - /// Indicates whether a diagnostic should receive - /// data or not. + /// Resource Id of a target logger. /// Resource ID. /// Resource name. /// Resource type for API Management /// resource. - public DiagnosticContract(bool enabled, string id = default(string), string name = default(string), string type = default(string)) + /// Specifies for what type of messages + /// sampling settings should not apply. Possible values include: + /// 'allErrors' + /// Sampling settings for Diagnostic. + /// Diagnostic settings for incoming/outgoing + /// HTTP messages to the Gateway. + /// Diagnostic settings for incoming/outgoing + /// HTTP messages to the Backend + /// Whether to process + /// Correlation Headers coming to Api Management Service. Only + /// applicable to Application Insights diagnostics. Default is + /// true. + public DiagnosticContract(string loggerId, string id = default(string), string name = default(string), string type = default(string), string alwaysLog = default(string), SamplingSettings sampling = default(SamplingSettings), PipelineDiagnosticSettings frontend = default(PipelineDiagnosticSettings), PipelineDiagnosticSettings backend = default(PipelineDiagnosticSettings), bool? enableHttpCorrelationHeaders = default(bool?)) : base(id, name, type) { - Enabled = enabled; + AlwaysLog = alwaysLog; + LoggerId = loggerId; + Sampling = sampling; + Frontend = frontend; + Backend = backend; + EnableHttpCorrelationHeaders = enableHttpCorrelationHeaders; CustomInit(); } @@ -51,11 +67,45 @@ public DiagnosticContract() partial void CustomInit(); /// - /// Gets or sets indicates whether a diagnostic should receive data or - /// not. + /// Gets or sets specifies for what type of messages sampling settings + /// should not apply. Possible values include: 'allErrors' /// - [JsonProperty(PropertyName = "properties.enabled")] - public bool Enabled { get; set; } + [JsonProperty(PropertyName = "properties.alwaysLog")] + public string AlwaysLog { get; set; } + + /// + /// Gets or sets resource Id of a target logger. + /// + [JsonProperty(PropertyName = "properties.loggerId")] + public string LoggerId { get; set; } + + /// + /// Gets or sets sampling settings for Diagnostic. + /// + [JsonProperty(PropertyName = "properties.sampling")] + public SamplingSettings Sampling { get; set; } + + /// + /// Gets or sets diagnostic settings for incoming/outgoing HTTP + /// messages to the Gateway. + /// + [JsonProperty(PropertyName = "properties.frontend")] + public PipelineDiagnosticSettings Frontend { get; set; } + + /// + /// Gets or sets diagnostic settings for incoming/outgoing HTTP + /// messages to the Backend + /// + [JsonProperty(PropertyName = "properties.backend")] + public PipelineDiagnosticSettings Backend { get; set; } + + /// + /// Gets or sets whether to process Correlation Headers coming to Api + /// Management Service. Only applicable to Application Insights + /// diagnostics. Default is true. + /// + [JsonProperty(PropertyName = "properties.enableHttpCorrelationHeaders")] + public bool? EnableHttpCorrelationHeaders { get; set; } /// /// Validate the object. @@ -65,7 +115,22 @@ public DiagnosticContract() /// public virtual void Validate() { - //Nothing to validate + if (LoggerId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "LoggerId"); + } + if (Sampling != null) + { + Sampling.Validate(); + } + if (Frontend != null) + { + Frontend.Validate(); + } + if (Backend != null) + { + Backend.Validate(); + } } } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/DiagnosticCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/DiagnosticCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..1d3d9c0131b6 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/DiagnosticCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class DiagnosticCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the DiagnosticCreateOrUpdateHeaders + /// class. + /// + public DiagnosticCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DiagnosticCreateOrUpdateHeaders + /// class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public DiagnosticCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ExportFormat.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ExportFormat.cs index 103977b89966..a2204f4c64f7 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ExportFormat.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ExportFormat.cs @@ -30,5 +30,10 @@ public static class ExportFormat /// Export the Api Definition in WADL Schema to Storage Blob. /// public const string Wadl = "wadl-link"; + /// + /// Export the Api Definition in OpenApi Specification 3.0 to Storage + /// Blob. + /// + public const string Openapi = "openapi-link"; } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ExportResultFormat.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ExportResultFormat.cs new file mode 100644 index 000000000000..f26777e685bb --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ExportResultFormat.cs @@ -0,0 +1,39 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + + /// + /// Defines values for ExportResultFormat. + /// + public static class ExportResultFormat + { + /// + /// The Api Definition is exported in OpenApi Specification 2.0 format + /// to the Storage Blob. + /// + public const string Swagger = "swagger-link-json"; + /// + /// The Api Definition is exported in WSDL Schema to Storage Blob. This + /// is only supported for APIs of Type `soap` + /// + public const string Wsdl = "wsdl-link+xml"; + /// + /// Export the Api Definition in WADL Schema to Storage Blob. + /// + public const string Wadl = "wadl-link-json"; + /// + /// Export the Api Definition in OpenApi Specification 3.0 to Storage + /// Blob. + /// + public const string OpenApi = "openapi-link"; + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupContract.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupContract.cs index a11cca9d8b1d..e17fe5e13ffb 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupContract.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupContract.cs @@ -47,8 +47,8 @@ public GroupContract() /// For external groups, this property /// contains the id of the group from the external identity provider, /// e.g. for Azure Active Directory - /// aad://<tenant>.onmicrosoft.com/groups/<group object - /// id>; otherwise the value is null. + /// `aad://<tenant>.onmicrosoft.com/groups/<group object + /// id>`; otherwise the value is null. public GroupContract(string displayName, string id = default(string), string name = default(string), string type = default(string), string description = default(string), bool? builtIn = default(bool?), GroupType? groupContractType = default(GroupType?), string externalId = default(string)) : base(id, name, type) { @@ -95,8 +95,8 @@ public GroupContract() /// Gets or sets for external groups, this property contains the id of /// the group from the external identity provider, e.g. for Azure /// Active Directory - /// aad://&lt;tenant&gt;.onmicrosoft.com/groups/&lt;group - /// object id&gt;; otherwise the value is null. + /// `aad://&lt;tenant&gt;.onmicrosoft.com/groups/&lt;group + /// object id&gt;`; otherwise the value is null. /// [JsonProperty(PropertyName = "properties.externalId")] public string ExternalId { get; set; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupContractProperties.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupContractProperties.cs index 4345de152d30..07c97234a6f2 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupContractProperties.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupContractProperties.cs @@ -41,8 +41,8 @@ public GroupContractProperties() /// For external groups, this property /// contains the id of the group from the external identity provider, /// e.g. for Azure Active Directory - /// aad://<tenant>.onmicrosoft.com/groups/<group object - /// id>; otherwise the value is null. + /// `aad://<tenant>.onmicrosoft.com/groups/<group object + /// id>`; otherwise the value is null. public GroupContractProperties(string displayName, string description = default(string), bool? builtIn = default(bool?), GroupType? type = default(GroupType?), string externalId = default(string)) { DisplayName = displayName; @@ -88,8 +88,8 @@ public GroupContractProperties() /// Gets or sets for external groups, this property contains the id of /// the group from the external identity provider, e.g. for Azure /// Active Directory - /// aad://&lt;tenant&gt;.onmicrosoft.com/groups/&lt;group - /// object id&gt;; otherwise the value is null. + /// `aad://&lt;tenant&gt;.onmicrosoft.com/groups/&lt;group + /// object id&gt;`; otherwise the value is null. /// [JsonProperty(PropertyName = "externalId")] public string ExternalId { get; set; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..96dbed6b4770 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupCreateOrUpdateHeaders.cs @@ -0,0 +1,53 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class GroupCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the GroupCreateOrUpdateHeaders class. + /// + public GroupCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the GroupCreateOrUpdateHeaders class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public GroupCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupCreateParameters.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupCreateParameters.cs index 97e2bf0b8ee9..2dbe8fc20697 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupCreateParameters.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupCreateParameters.cs @@ -39,8 +39,8 @@ public GroupCreateParameters() /// Identifier of the external groups, this /// property contains the id of the group from the external identity /// provider, e.g. for Azure Active Directory - /// aad://<tenant>.onmicrosoft.com/groups/<group object - /// id>; otherwise the value is null. + /// `aad://<tenant>.onmicrosoft.com/groups/<group object + /// id>`; otherwise the value is null. public GroupCreateParameters(string displayName, string description = default(string), GroupType? type = default(GroupType?), string externalId = default(string)) { DisplayName = displayName; @@ -78,8 +78,8 @@ public GroupCreateParameters() /// Gets or sets identifier of the external groups, this property /// contains the id of the group from the external identity provider, /// e.g. for Azure Active Directory - /// aad://&lt;tenant&gt;.onmicrosoft.com/groups/&lt;group - /// object id&gt;; otherwise the value is null. + /// `aad://&lt;tenant&gt;.onmicrosoft.com/groups/&lt;group + /// object id&gt;`; otherwise the value is null. /// [JsonProperty(PropertyName = "properties.externalId")] public string ExternalId { get; set; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupUpdateParameters.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupUpdateParameters.cs index f65c93a72c01..8d236c2893ec 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupUpdateParameters.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/GroupUpdateParameters.cs @@ -39,8 +39,8 @@ public GroupUpdateParameters() /// Identifier of the external groups, this /// property contains the id of the group from the external identity /// provider, e.g. for Azure Active Directory - /// aad://<tenant>.onmicrosoft.com/groups/<group object - /// id>; otherwise the value is null. + /// `aad://<tenant>.onmicrosoft.com/groups/<group object + /// id>`; otherwise the value is null. public GroupUpdateParameters(string displayName = default(string), string description = default(string), GroupType? type = default(GroupType?), string externalId = default(string)) { DisplayName = displayName; @@ -78,8 +78,8 @@ public GroupUpdateParameters() /// Gets or sets identifier of the external groups, this property /// contains the id of the group from the external identity provider, /// e.g. for Azure Active Directory - /// aad://&lt;tenant&gt;.onmicrosoft.com/groups/&lt;group - /// object id&gt;; otherwise the value is null. + /// `aad://&lt;tenant&gt;.onmicrosoft.com/groups/&lt;group + /// object id&gt;`; otherwise the value is null. /// [JsonProperty(PropertyName = "properties.externalId")] public string ExternalId { get; set; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/HostnameConfiguration.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/HostnameConfiguration.cs index 27ca85ed17ea..21e5dac3e22f 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/HostnameConfiguration.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/HostnameConfiguration.cs @@ -31,7 +31,7 @@ public HostnameConfiguration() /// Initializes a new instance of the HostnameConfiguration class. /// /// Hostname type. Possible values include: 'Proxy', - /// 'Portal', 'Management', 'Scm' + /// 'Portal', 'Management', 'Scm', 'DeveloperPortal' /// Hostname to configure on the Api Management /// service. /// Url to the KeyVault Secret containing the @@ -53,7 +53,7 @@ public HostnameConfiguration() /// negotiate client certificate on the hostname. Default Value is /// false. /// Certificate information. - public HostnameConfiguration(HostnameType type, string hostName, string keyVaultId = default(string), string encodedCertificate = default(string), string certificatePassword = default(string), bool? defaultSslBinding = default(bool?), bool? negotiateClientCertificate = default(bool?), CertificateInformation certificate = default(CertificateInformation)) + public HostnameConfiguration(string type, string hostName, string keyVaultId = default(string), string encodedCertificate = default(string), string certificatePassword = default(string), bool? defaultSslBinding = default(bool?), bool? negotiateClientCertificate = default(bool?), CertificateInformation certificate = default(CertificateInformation)) { Type = type; HostName = hostName; @@ -73,10 +73,10 @@ public HostnameConfiguration() /// /// Gets or sets hostname type. Possible values include: 'Proxy', - /// 'Portal', 'Management', 'Scm' + /// 'Portal', 'Management', 'Scm', 'DeveloperPortal' /// [JsonProperty(PropertyName = "type")] - public HostnameType Type { get; set; } + public string Type { get; set; } /// /// Gets or sets hostname to configure on the Api Management service. @@ -138,6 +138,10 @@ public HostnameConfiguration() /// public virtual void Validate() { + if (Type == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Type"); + } if (HostName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "HostName"); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/HostnameConfigurationOld.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/HostnameConfigurationOld.cs deleted file mode 100644 index 911c30c8c86b..000000000000 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/HostnameConfigurationOld.cs +++ /dev/null @@ -1,91 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.ApiManagement.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Custom hostname configuration. - /// - public partial class HostnameConfigurationOld - { - /// - /// Initializes a new instance of the HostnameConfigurationOld class. - /// - public HostnameConfigurationOld() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the HostnameConfigurationOld class. - /// - /// Hostname type. Possible values include: 'Proxy', - /// 'Portal', 'Management', 'Scm' - /// Hostname to configure. - /// Certificate information. - public HostnameConfigurationOld(HostnameType type, string hostname, CertificateInformation certificate) - { - Type = type; - Hostname = hostname; - Certificate = certificate; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets hostname type. Possible values include: 'Proxy', - /// 'Portal', 'Management', 'Scm' - /// - [JsonProperty(PropertyName = "type")] - public HostnameType Type { get; set; } - - /// - /// Gets or sets hostname to configure. - /// - [JsonProperty(PropertyName = "hostname")] - public string Hostname { get; set; } - - /// - /// Gets or sets certificate information. - /// - [JsonProperty(PropertyName = "certificate")] - public CertificateInformation Certificate { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Hostname == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Hostname"); - } - if (Certificate == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Certificate"); - } - if (Certificate != null) - { - Certificate.Validate(); - } - } - } -} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/HostnameType.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/HostnameType.cs index be79442e129a..34f37dbf4d03 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/HostnameType.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/HostnameType.cs @@ -10,63 +10,16 @@ namespace Microsoft.Azure.Management.ApiManagement.Models { - using Newtonsoft.Json; - using Newtonsoft.Json.Converters; - using System.Runtime; - using System.Runtime.Serialization; /// /// Defines values for HostnameType. /// - [JsonConverter(typeof(StringEnumConverter))] - public enum HostnameType + public static class HostnameType { - [EnumMember(Value = "Proxy")] - Proxy, - [EnumMember(Value = "Portal")] - Portal, - [EnumMember(Value = "Management")] - Management, - [EnumMember(Value = "Scm")] - Scm - } - internal static class HostnameTypeEnumExtension - { - internal static string ToSerializedValue(this HostnameType? value) - { - return value == null ? null : ((HostnameType)value).ToSerializedValue(); - } - - internal static string ToSerializedValue(this HostnameType value) - { - switch( value ) - { - case HostnameType.Proxy: - return "Proxy"; - case HostnameType.Portal: - return "Portal"; - case HostnameType.Management: - return "Management"; - case HostnameType.Scm: - return "Scm"; - } - return null; - } - - internal static HostnameType? ParseHostnameType(this string value) - { - switch( value ) - { - case "Proxy": - return HostnameType.Proxy; - case "Portal": - return HostnameType.Portal; - case "Management": - return HostnameType.Management; - case "Scm": - return HostnameType.Scm; - } - return null; - } + public const string Proxy = "Proxy"; + public const string Portal = "Portal"; + public const string Management = "Management"; + public const string Scm = "Scm"; + public const string DeveloperPortal = "DeveloperPortal"; } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/HttpMessageDiagnostic.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/HttpMessageDiagnostic.cs new file mode 100644 index 000000000000..f7d24049ac88 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/HttpMessageDiagnostic.cs @@ -0,0 +1,74 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Http message diagnostic settings. + /// + public partial class HttpMessageDiagnostic + { + /// + /// Initializes a new instance of the HttpMessageDiagnostic class. + /// + public HttpMessageDiagnostic() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the HttpMessageDiagnostic class. + /// + /// Array of HTTP Headers to log. + /// Body logging settings. + public HttpMessageDiagnostic(IList headers = default(IList), BodyDiagnosticSettings body = default(BodyDiagnosticSettings)) + { + Headers = headers; + Body = body; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets array of HTTP Headers to log. + /// + [JsonProperty(PropertyName = "headers")] + public IList Headers { get; set; } + + /// + /// Gets or sets body logging settings. + /// + [JsonProperty(PropertyName = "body")] + public BodyDiagnosticSettings Body { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Body != null) + { + Body.Validate(); + } + } + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/IdentityProviderBaseParameters.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/IdentityProviderBaseParameters.cs index 7423c348c1fd..ac734f77c0a0 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/IdentityProviderBaseParameters.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/IdentityProviderBaseParameters.cs @@ -39,6 +39,8 @@ public IdentityProviderBaseParameters() /// 'aad', 'aadB2C' /// List of Allowed Tenants when /// configuring Azure Active Directory login. + /// OpenID Connect discovery endpoint hostname + /// for AAD or AAD B2C. /// Signup Policy Name. Only applies to /// AAD B2C Identity Provider. /// Signin Policy Name. Only applies to @@ -47,10 +49,11 @@ public IdentityProviderBaseParameters() /// Only applies to AAD B2C Identity Provider. /// Password Reset Policy Name. /// Only applies to AAD B2C Identity Provider. - public IdentityProviderBaseParameters(string type = default(string), IList allowedTenants = default(IList), string signupPolicyName = default(string), string signinPolicyName = default(string), string profileEditingPolicyName = default(string), string passwordResetPolicyName = default(string)) + public IdentityProviderBaseParameters(string type = default(string), IList allowedTenants = default(IList), string authority = default(string), string signupPolicyName = default(string), string signinPolicyName = default(string), string profileEditingPolicyName = default(string), string passwordResetPolicyName = default(string)) { Type = type; AllowedTenants = allowedTenants; + Authority = authority; SignupPolicyName = signupPolicyName; SigninPolicyName = signinPolicyName; ProfileEditingPolicyName = profileEditingPolicyName; @@ -78,6 +81,13 @@ public IdentityProviderBaseParameters() [JsonProperty(PropertyName = "allowedTenants")] public IList AllowedTenants { get; set; } + /// + /// Gets or sets openID Connect discovery endpoint hostname for AAD or + /// AAD B2C. + /// + [JsonProperty(PropertyName = "authority")] + public string Authority { get; set; } + /// /// Gets or sets signup Policy Name. Only applies to AAD B2C Identity /// Provider. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/IdentityProviderContract.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/IdentityProviderContract.cs index 6e75dcc02106..109b43f022f3 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/IdentityProviderContract.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/IdentityProviderContract.cs @@ -50,6 +50,8 @@ public IdentityProviderContract() /// 'microsoft', 'twitter', 'aad', 'aadB2C' /// List of Allowed Tenants when /// configuring Azure Active Directory login. + /// OpenID Connect discovery endpoint hostname + /// for AAD or AAD B2C. /// Signup Policy Name. Only applies to /// AAD B2C Identity Provider. /// Signin Policy Name. Only applies to @@ -58,11 +60,12 @@ public IdentityProviderContract() /// Only applies to AAD B2C Identity Provider. /// Password Reset Policy Name. /// Only applies to AAD B2C Identity Provider. - public IdentityProviderContract(string clientId, string clientSecret, string id = default(string), string name = default(string), string type = default(string), string identityProviderContractType = default(string), IList allowedTenants = default(IList), string signupPolicyName = default(string), string signinPolicyName = default(string), string profileEditingPolicyName = default(string), string passwordResetPolicyName = default(string)) + public IdentityProviderContract(string clientId, string clientSecret, string id = default(string), string name = default(string), string type = default(string), string identityProviderContractType = default(string), IList allowedTenants = default(IList), string authority = default(string), string signupPolicyName = default(string), string signinPolicyName = default(string), string profileEditingPolicyName = default(string), string passwordResetPolicyName = default(string)) : base(id, name, type) { IdentityProviderContractType = identityProviderContractType; AllowedTenants = allowedTenants; + Authority = authority; SignupPolicyName = signupPolicyName; SigninPolicyName = signinPolicyName; ProfileEditingPolicyName = profileEditingPolicyName; @@ -92,6 +95,13 @@ public IdentityProviderContract() [JsonProperty(PropertyName = "properties.allowedTenants")] public IList AllowedTenants { get; set; } + /// + /// Gets or sets openID Connect discovery endpoint hostname for AAD or + /// AAD B2C. + /// + [JsonProperty(PropertyName = "properties.authority")] + public string Authority { get; set; } + /// /// Gets or sets signup Policy Name. Only applies to AAD B2C Identity /// Provider. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/IdentityProviderCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/IdentityProviderCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..7c685f57dd5d --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/IdentityProviderCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class IdentityProviderCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// IdentityProviderCreateOrUpdateHeaders class. + /// + public IdentityProviderCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// IdentityProviderCreateOrUpdateHeaders class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public IdentityProviderCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/IdentityProviderUpdateParameters.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/IdentityProviderUpdateParameters.cs index 8967d5016e1c..84d68629b014 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/IdentityProviderUpdateParameters.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/IdentityProviderUpdateParameters.cs @@ -41,6 +41,8 @@ public IdentityProviderUpdateParameters() /// 'aad', 'aadB2C' /// List of Allowed Tenants when /// configuring Azure Active Directory login. + /// OpenID Connect discovery endpoint hostname + /// for AAD or AAD B2C. /// Signup Policy Name. Only applies to /// AAD B2C Identity Provider. /// Signin Policy Name. Only applies to @@ -56,10 +58,11 @@ public IdentityProviderUpdateParameters() /// external Identity Provider, used to authenticate login request. For /// example, it is App Secret for Facebook login, API Key for Google /// login, Public Key for Microsoft. - public IdentityProviderUpdateParameters(string type = default(string), IList allowedTenants = default(IList), string signupPolicyName = default(string), string signinPolicyName = default(string), string profileEditingPolicyName = default(string), string passwordResetPolicyName = default(string), string clientId = default(string), string clientSecret = default(string)) + public IdentityProviderUpdateParameters(string type = default(string), IList allowedTenants = default(IList), string authority = default(string), string signupPolicyName = default(string), string signinPolicyName = default(string), string profileEditingPolicyName = default(string), string passwordResetPolicyName = default(string), string clientId = default(string), string clientSecret = default(string)) { Type = type; AllowedTenants = allowedTenants; + Authority = authority; SignupPolicyName = signupPolicyName; SigninPolicyName = signinPolicyName; ProfileEditingPolicyName = profileEditingPolicyName; @@ -89,6 +92,13 @@ public IdentityProviderUpdateParameters() [JsonProperty(PropertyName = "properties.allowedTenants")] public IList AllowedTenants { get; set; } + /// + /// Gets or sets openID Connect discovery endpoint hostname for AAD or + /// AAD B2C. + /// + [JsonProperty(PropertyName = "properties.authority")] + public string Authority { get; set; } + /// /// Gets or sets signup Policy Name. Only applies to AAD B2C Identity /// Provider. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/IssueGetHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/IssueGetHeaders.cs new file mode 100644 index 000000000000..dc849001caa1 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/IssueGetHeaders.cs @@ -0,0 +1,53 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for Get operation. + /// + public partial class IssueGetHeaders + { + /// + /// Initializes a new instance of the IssueGetHeaders class. + /// + public IssueGetHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the IssueGetHeaders class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public IssueGetHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/LoggerContract.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/LoggerContract.cs index 3ed644651523..faf16d7a335f 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/LoggerContract.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/LoggerContract.cs @@ -46,13 +46,17 @@ public LoggerContract() /// Logger description. /// Whether records are buffered in the logger /// before publishing. Default is assumed to be true. - public LoggerContract(string loggerType, IDictionary credentials, string id = default(string), string name = default(string), string type = default(string), string description = default(string), bool? isBuffered = default(bool?)) + /// Azure Resource Id of a log target (either + /// Azure Event Hub resource or Azure Application Insights + /// resource). + public LoggerContract(string loggerType, IDictionary credentials, string id = default(string), string name = default(string), string type = default(string), string description = default(string), bool? isBuffered = default(bool?), string resourceId = default(string)) : base(id, name, type) { LoggerType = loggerType; Description = description; Credentials = credentials; IsBuffered = isBuffered; + ResourceId = resourceId; CustomInit(); } @@ -89,6 +93,13 @@ public LoggerContract() [JsonProperty(PropertyName = "properties.isBuffered")] public bool? IsBuffered { get; set; } + /// + /// Gets or sets azure Resource Id of a log target (either Azure Event + /// Hub resource or Azure Application Insights resource). + /// + [JsonProperty(PropertyName = "properties.resourceId")] + public string ResourceId { get; set; } + /// /// Validate the object. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/LoggerCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/LoggerCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..1713e4e542d1 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/LoggerCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class LoggerCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the LoggerCreateOrUpdateHeaders + /// class. + /// + public LoggerCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the LoggerCreateOrUpdateHeaders + /// class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public LoggerCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/OpenIdConnectProviderCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/OpenIdConnectProviderCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..193f523ff6fe --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/OpenIdConnectProviderCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class OpenIdConnectProviderCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// OpenIdConnectProviderCreateOrUpdateHeaders class. + /// + public OpenIdConnectProviderCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// OpenIdConnectProviderCreateOrUpdateHeaders class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public OpenIdConnectProviderCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ParameterContract.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ParameterContract.cs index d362f2537c77..e699fd2443a1 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ParameterContract.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ParameterContract.cs @@ -36,7 +36,7 @@ public ParameterContract() /// Parameter type. /// Parameter description. /// Default parameter value. - /// whether parameter is required or + /// Specifies whether parameter is required or /// not. /// Parameter values. public ParameterContract(string name, string type, string description = default(string), string defaultValue = default(string), bool? required = default(bool?), IList values = default(IList)) @@ -80,7 +80,7 @@ public ParameterContract() public string DefaultValue { get; set; } /// - /// Gets or sets whether parameter is required or not. + /// Gets or sets specifies whether parameter is required or not. /// [JsonProperty(PropertyName = "required")] public bool? Required { get; set; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/PipelineDiagnosticSettings.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/PipelineDiagnosticSettings.cs new file mode 100644 index 000000000000..cdf31a5b12ff --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/PipelineDiagnosticSettings.cs @@ -0,0 +1,76 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Diagnostic settings for incoming/outgoing HTTP messages to the Gateway. + /// + public partial class PipelineDiagnosticSettings + { + /// + /// Initializes a new instance of the PipelineDiagnosticSettings class. + /// + public PipelineDiagnosticSettings() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PipelineDiagnosticSettings class. + /// + /// Diagnostic settings for request. + /// Diagnostic settings for response. + public PipelineDiagnosticSettings(HttpMessageDiagnostic request = default(HttpMessageDiagnostic), HttpMessageDiagnostic response = default(HttpMessageDiagnostic)) + { + Request = request; + Response = response; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets diagnostic settings for request. + /// + [JsonProperty(PropertyName = "request")] + public HttpMessageDiagnostic Request { get; set; } + + /// + /// Gets or sets diagnostic settings for response. + /// + [JsonProperty(PropertyName = "response")] + public HttpMessageDiagnostic Response { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Request != null) + { + Request.Validate(); + } + if (Response != null) + { + Response.Validate(); + } + } + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/PolicyContract.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/PolicyContract.cs index f1438a631a52..03dd081e2ec7 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/PolicyContract.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/PolicyContract.cs @@ -32,19 +32,19 @@ public PolicyContract() /// /// Initializes a new instance of the PolicyContract class. /// - /// Json escaped Xml Encoded contents of - /// the Policy. + /// Contents of the Policy as defined by the + /// format. /// Resource ID. /// Resource name. /// Resource type for API Management /// resource. - /// Format of the policyContent. Possible - /// values include: 'xml', 'xml-link', 'rawxml', 'rawxml-link' - public PolicyContract(string policyContent, string id = default(string), string name = default(string), string type = default(string), string contentFormat = default(string)) + /// Format of the policyContent. Possible values + /// include: 'xml', 'xml-link', 'rawxml', 'rawxml-link' + public PolicyContract(string value, string id = default(string), string name = default(string), string type = default(string), string format = default(string)) : base(id, name, type) { - PolicyContent = policyContent; - ContentFormat = contentFormat; + Value = value; + Format = format; CustomInit(); } @@ -54,17 +54,17 @@ public PolicyContract() partial void CustomInit(); /// - /// Gets or sets json escaped Xml Encoded contents of the Policy. + /// Gets or sets contents of the Policy as defined by the format. /// - [JsonProperty(PropertyName = "properties.policyContent")] - public string PolicyContent { get; set; } + [JsonProperty(PropertyName = "properties.value")] + public string Value { get; set; } /// /// Gets or sets format of the policyContent. Possible values include: /// 'xml', 'xml-link', 'rawxml', 'rawxml-link' /// - [JsonProperty(PropertyName = "properties.contentFormat")] - public string ContentFormat { get; set; } + [JsonProperty(PropertyName = "properties.format")] + public string Format { get; set; } /// /// Validate the object. @@ -74,9 +74,9 @@ public PolicyContract() /// public virtual void Validate() { - if (PolicyContent == null) + if (Value == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "PolicyContent"); + throw new ValidationException(ValidationRules.CannotBeNull, "Value"); } } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/PolicyCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/PolicyCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..ab357a5f9af4 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/PolicyCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class PolicyCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the PolicyCreateOrUpdateHeaders + /// class. + /// + public PolicyCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PolicyCreateOrUpdateHeaders + /// class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public PolicyCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductContract.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductContract.cs index e397d90e4356..de06cc03b6ba 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductContract.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductContract.cs @@ -52,15 +52,15 @@ public ProductContract() /// subscription key. If property is omitted when creating a new /// product it's value is assumed to be true. /// whether subscription approval is - /// required. If false, new subscriptions will be approved + /// required. If false, new subscriptions will be approved /// automatically enabling developers to call the product’s APIs - /// immediately after subscribing. If true, administrators must + /// immediately after subscribing. If true, administrators must /// manually approve the subscription before the developer can any of /// the product’s APIs. Can be present only if subscriptionRequired /// property is present and has a value of false. /// Whether the number of /// subscriptions a user can have to this product at the same time. Set - /// to null or omit to allow unlimited per user subscriptions. Can be + /// to null or omit to allow unlimited per user subscriptions. Can be /// present only if subscriptionRequired property is present and has a /// value of false. /// whether product is published or not. Published @@ -114,10 +114,10 @@ public ProductContract() public bool? SubscriptionRequired { get; set; } /// - /// Gets or sets whether subscription approval is required. If false, + /// Gets or sets whether subscription approval is required. If false, /// new subscriptions will be approved automatically enabling /// developers to call the product’s APIs immediately after - /// subscribing. If true, administrators must manually approve the + /// subscribing. If true, administrators must manually approve the /// subscription before the developer can any of the product’s APIs. /// Can be present only if subscriptionRequired property is present and /// has a value of false. @@ -127,7 +127,7 @@ public ProductContract() /// /// Gets or sets whether the number of subscriptions a user can have to - /// this product at the same time. Set to null or omit to allow + /// this product at the same time. Set to null or omit to allow /// unlimited per user subscriptions. Can be present only if /// subscriptionRequired property is present and has a value of false. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..e700a4ccd2c6 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class ProductCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the ProductCreateOrUpdateHeaders + /// class. + /// + public ProductCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ProductCreateOrUpdateHeaders + /// class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public ProductCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductEntityBaseParameters.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductEntityBaseParameters.cs index 601a1d23b609..27c7a314d53b 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductEntityBaseParameters.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductEntityBaseParameters.cs @@ -47,15 +47,15 @@ public ProductEntityBaseParameters() /// subscription key. If property is omitted when creating a new /// product it's value is assumed to be true. /// whether subscription approval is - /// required. If false, new subscriptions will be approved + /// required. If false, new subscriptions will be approved /// automatically enabling developers to call the product’s APIs - /// immediately after subscribing. If true, administrators must + /// immediately after subscribing. If true, administrators must /// manually approve the subscription before the developer can any of /// the product’s APIs. Can be present only if subscriptionRequired /// property is present and has a value of false. /// Whether the number of /// subscriptions a user can have to this product at the same time. Set - /// to null or omit to allow unlimited per user subscriptions. Can be + /// to null or omit to allow unlimited per user subscriptions. Can be /// present only if subscriptionRequired property is present and has a /// value of false. /// whether product is published or not. Published @@ -107,10 +107,10 @@ public ProductEntityBaseParameters() public bool? SubscriptionRequired { get; set; } /// - /// Gets or sets whether subscription approval is required. If false, + /// Gets or sets whether subscription approval is required. If false, /// new subscriptions will be approved automatically enabling /// developers to call the product’s APIs immediately after - /// subscribing. If true, administrators must manually approve the + /// subscribing. If true, administrators must manually approve the /// subscription before the developer can any of the product’s APIs. /// Can be present only if subscriptionRequired property is present and /// has a value of false. @@ -120,7 +120,7 @@ public ProductEntityBaseParameters() /// /// Gets or sets whether the number of subscriptions a user can have to - /// this product at the same time. Set to null or omit to allow + /// this product at the same time. Set to null or omit to allow /// unlimited per user subscriptions. Can be present only if /// subscriptionRequired property is present and has a value of false. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductPolicyCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductPolicyCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..e390e1ecd5f2 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductPolicyCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class ProductPolicyCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the + /// ProductPolicyCreateOrUpdateHeaders class. + /// + public ProductPolicyCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// ProductPolicyCreateOrUpdateHeaders class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public ProductPolicyCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductTagResourceContractProperties.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductTagResourceContractProperties.cs index 0f7a81728b09..870bc3b61cce 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductTagResourceContractProperties.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductTagResourceContractProperties.cs @@ -48,15 +48,15 @@ public ProductTagResourceContractProperties() /// subscription key. If property is omitted when creating a new /// product it's value is assumed to be true. /// whether subscription approval is - /// required. If false, new subscriptions will be approved + /// required. If false, new subscriptions will be approved /// automatically enabling developers to call the product’s APIs - /// immediately after subscribing. If true, administrators must + /// immediately after subscribing. If true, administrators must /// manually approve the subscription before the developer can any of /// the product’s APIs. Can be present only if subscriptionRequired /// property is present and has a value of false. /// Whether the number of /// subscriptions a user can have to this product at the same time. Set - /// to null or omit to allow unlimited per user subscriptions. Can be + /// to null or omit to allow unlimited per user subscriptions. Can be /// present only if subscriptionRequired property is present and has a /// value of false. /// whether product is published or not. Published diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductUpdateParameters.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductUpdateParameters.cs index 0971b62a2bda..d131595232c5 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductUpdateParameters.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ProductUpdateParameters.cs @@ -47,15 +47,15 @@ public ProductUpdateParameters() /// subscription key. If property is omitted when creating a new /// product it's value is assumed to be true. /// whether subscription approval is - /// required. If false, new subscriptions will be approved + /// required. If false, new subscriptions will be approved /// automatically enabling developers to call the product’s APIs - /// immediately after subscribing. If true, administrators must + /// immediately after subscribing. If true, administrators must /// manually approve the subscription before the developer can any of /// the product’s APIs. Can be present only if subscriptionRequired /// property is present and has a value of false. /// Whether the number of /// subscriptions a user can have to this product at the same time. Set - /// to null or omit to allow unlimited per user subscriptions. Can be + /// to null or omit to allow unlimited per user subscriptions. Can be /// present only if subscriptionRequired property is present and has a /// value of false. /// whether product is published or not. Published @@ -109,10 +109,10 @@ public ProductUpdateParameters() public bool? SubscriptionRequired { get; set; } /// - /// Gets or sets whether subscription approval is required. If false, + /// Gets or sets whether subscription approval is required. If false, /// new subscriptions will be approved automatically enabling /// developers to call the product’s APIs immediately after - /// subscribing. If true, administrators must manually approve the + /// subscribing. If true, administrators must manually approve the /// subscription before the developer can any of the product’s APIs. /// Can be present only if subscriptionRequired property is present and /// has a value of false. @@ -122,7 +122,7 @@ public ProductUpdateParameters() /// /// Gets or sets whether the number of subscriptions a user can have to - /// this product at the same time. Set to null or omit to allow + /// this product at the same time. Set to null or omit to allow /// unlimited per user subscriptions. Can be present only if /// subscriptionRequired property is present and has a value of false. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/PropertyCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/PropertyCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..f8793ab94cee --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/PropertyCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class PropertyCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the PropertyCreateOrUpdateHeaders + /// class. + /// + public PropertyCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PropertyCreateOrUpdateHeaders + /// class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public PropertyCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ResourceSku.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ResourceSku.cs index e8e555663592..aa1639c95c44 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ResourceSku.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ResourceSku.cs @@ -30,7 +30,7 @@ public ResourceSku() /// Initializes a new instance of the ResourceSku class. /// /// Name of the Sku. Possible values include: - /// 'Developer', 'Standard', 'Premium', 'Basic' + /// 'Developer', 'Standard', 'Premium', 'Basic', 'Consumption' public ResourceSku(string name = default(string)) { Name = name; @@ -44,7 +44,7 @@ public ResourceSku() /// /// Gets or sets name of the Sku. Possible values include: 'Developer', - /// 'Standard', 'Premium', 'Basic' + /// 'Standard', 'Premium', 'Basic', 'Consumption' /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ResourceSkuCapacity.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ResourceSkuCapacity.cs index 46091df034a3..87858f2b4a88 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ResourceSkuCapacity.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ResourceSkuCapacity.cs @@ -34,7 +34,7 @@ public ResourceSkuCapacity() /// The default capacity. /// The scale type applicable to the sku. /// Possible values include: 'automatic', 'manual', 'none' - public ResourceSkuCapacity(int? minimum = default(int?), int? maximum = default(int?), int? defaultProperty = default(int?), ResourceSkuCapacityScaleType? scaleType = default(ResourceSkuCapacityScaleType?)) + public ResourceSkuCapacity(int? minimum = default(int?), int? maximum = default(int?), int? defaultProperty = default(int?), string scaleType = default(string)) { Minimum = minimum; Maximum = maximum; @@ -71,7 +71,7 @@ public ResourceSkuCapacity() /// 'automatic', 'manual', 'none' /// [JsonProperty(PropertyName = "scaleType")] - public ResourceSkuCapacityScaleType? ScaleType { get; private set; } + public string ScaleType { get; private set; } } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ResourceSkuCapacityScaleType.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ResourceSkuCapacityScaleType.cs index e4cd692d8030..5a67b0f9ecd4 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ResourceSkuCapacityScaleType.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ResourceSkuCapacityScaleType.cs @@ -10,57 +10,23 @@ namespace Microsoft.Azure.Management.ApiManagement.Models { - using Newtonsoft.Json; - using Newtonsoft.Json.Converters; - using System.Runtime; - using System.Runtime.Serialization; /// /// Defines values for ResourceSkuCapacityScaleType. /// - [JsonConverter(typeof(StringEnumConverter))] - public enum ResourceSkuCapacityScaleType + public static class ResourceSkuCapacityScaleType { - [EnumMember(Value = "automatic")] - Automatic, - [EnumMember(Value = "manual")] - Manual, - [EnumMember(Value = "none")] - None - } - internal static class ResourceSkuCapacityScaleTypeEnumExtension - { - internal static string ToSerializedValue(this ResourceSkuCapacityScaleType? value) - { - return value == null ? null : ((ResourceSkuCapacityScaleType)value).ToSerializedValue(); - } - - internal static string ToSerializedValue(this ResourceSkuCapacityScaleType value) - { - switch( value ) - { - case ResourceSkuCapacityScaleType.Automatic: - return "automatic"; - case ResourceSkuCapacityScaleType.Manual: - return "manual"; - case ResourceSkuCapacityScaleType.None: - return "none"; - } - return null; - } - - internal static ResourceSkuCapacityScaleType? ParseResourceSkuCapacityScaleType(this string value) - { - switch( value ) - { - case "automatic": - return ResourceSkuCapacityScaleType.Automatic; - case "manual": - return ResourceSkuCapacityScaleType.Manual; - case "none": - return ResourceSkuCapacityScaleType.None; - } - return null; - } + /// + /// Supported scale type automatic. + /// + public const string Automatic = "automatic"; + /// + /// Supported scale type manual. + /// + public const string Manual = "manual"; + /// + /// Scaling not supported. + /// + public const string None = "none"; } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SamplingSettings.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SamplingSettings.cs new file mode 100644 index 000000000000..6b018b3efe4e --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SamplingSettings.cs @@ -0,0 +1,79 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Sampling settings for Diagnostic. + /// + public partial class SamplingSettings + { + /// + /// Initializes a new instance of the SamplingSettings class. + /// + public SamplingSettings() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SamplingSettings class. + /// + /// Sampling type. Possible values include: + /// 'fixed' + /// Rate of sampling for fixed-rate + /// sampling. + public SamplingSettings(string samplingType = default(string), double? percentage = default(double?)) + { + SamplingType = samplingType; + Percentage = percentage; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets sampling type. Possible values include: 'fixed' + /// + [JsonProperty(PropertyName = "samplingType")] + public string SamplingType { get; set; } + + /// + /// Gets or sets rate of sampling for fixed-rate sampling. + /// + [JsonProperty(PropertyName = "percentage")] + public double? Percentage { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Percentage > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "Percentage", 100); + } + if (Percentage < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "Percentage", 0); + } + } + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SamplingType.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SamplingType.cs new file mode 100644 index 000000000000..59b5f13835e6 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SamplingType.cs @@ -0,0 +1,24 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + + /// + /// Defines values for SamplingType. + /// + public static class SamplingType + { + /// + /// Fixed-rate sampling. + /// + public const string Fixed = "fixed"; + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SaveConfigurationParameter.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SaveConfigurationParameter.cs index 25f16ac56ff2..0ce74f32794b 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SaveConfigurationParameter.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SaveConfigurationParameter.cs @@ -11,12 +11,14 @@ namespace Microsoft.Azure.Management.ApiManagement.Models { using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; /// - /// Parameters supplied to the Save Tenant Configuration operation. + /// Save Tenant Configuration Contract details. /// + [Rest.Serialization.JsonTransformation] public partial class SaveConfigurationParameter { /// @@ -51,7 +53,7 @@ public SaveConfigurationParameter() /// Gets or sets the name of the Git branch in which to commit the /// current configuration snapshot. /// - [JsonProperty(PropertyName = "branch")] + [JsonProperty(PropertyName = "properties.branch")] public string Branch { get; set; } /// @@ -59,7 +61,7 @@ public SaveConfigurationParameter() /// is committed to the Git repository, even if the Git repository has /// newer changes that would be overwritten. /// - [JsonProperty(PropertyName = "force")] + [JsonProperty(PropertyName = "properties.force")] public bool? Force { get; set; } /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SkuType.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SkuType.cs index 17b2f46cd412..306c9e8f9eb7 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SkuType.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SkuType.cs @@ -32,5 +32,9 @@ public static class SkuType /// Basic SKU of Api Management. /// public const string Basic = "Basic"; + /// + /// Consumption SKU of Api Management. + /// + public const string Consumption = "Consumption"; } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SubscriptionContract.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SubscriptionContract.cs index 7c940db72264..958a0cea46e8 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SubscriptionContract.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SubscriptionContract.cs @@ -32,13 +32,8 @@ public SubscriptionContract() /// /// Initializes a new instance of the SubscriptionContract class. /// - /// The user resource identifier of the - /// subscription owner. The value is a valid relative URL in the format - /// of /users/{uid} where {uid} is a user identifier. - /// The product resource identifier of the - /// subscribed product. The value is a valid relative URL in the format - /// of /products/{productId} where {productId} is a product - /// identifier. + /// Scope like /products/{productId} or /apis or + /// /apis/{apiId}. /// Subscription state. Possible states are * /// active – the subscription is active, * suspended – the subscription /// is blocked, and the subscriber cannot call any APIs of the product, @@ -55,6 +50,9 @@ public SubscriptionContract() /// Resource name. /// Resource type for API Management /// resource. + /// The user resource identifier of the + /// subscription owner. The value is a valid relative URL in the format + /// of /users/{userId} where {userId} is a user identifier. /// The name of the subscription, or null if /// the subscription has no name. /// Subscription creation date. The date @@ -88,11 +86,13 @@ public SubscriptionContract() /// /// Optional subscription comment added by /// an administrator. - public SubscriptionContract(string userId, string productId, SubscriptionState state, string primaryKey, string secondaryKey, string id = default(string), string name = default(string), string type = default(string), string displayName = default(string), System.DateTime? createdDate = default(System.DateTime?), System.DateTime? startDate = default(System.DateTime?), System.DateTime? expirationDate = default(System.DateTime?), System.DateTime? endDate = default(System.DateTime?), System.DateTime? notificationDate = default(System.DateTime?), string stateComment = default(string)) + /// Determines whether tracing is + /// enabled + public SubscriptionContract(string scope, SubscriptionState state, string primaryKey, string secondaryKey, string id = default(string), string name = default(string), string type = default(string), string ownerId = default(string), string displayName = default(string), System.DateTime? createdDate = default(System.DateTime?), System.DateTime? startDate = default(System.DateTime?), System.DateTime? expirationDate = default(System.DateTime?), System.DateTime? endDate = default(System.DateTime?), System.DateTime? notificationDate = default(System.DateTime?), string stateComment = default(string), bool? allowTracing = default(bool?)) : base(id, name, type) { - UserId = userId; - ProductId = productId; + OwnerId = ownerId; + Scope = scope; DisplayName = displayName; State = state; CreatedDate = createdDate; @@ -103,6 +103,7 @@ public SubscriptionContract() PrimaryKey = primaryKey; SecondaryKey = secondaryKey; StateComment = stateComment; + AllowTracing = allowTracing; CustomInit(); } @@ -114,18 +115,17 @@ public SubscriptionContract() /// /// Gets or sets the user resource identifier of the subscription /// owner. The value is a valid relative URL in the format of - /// /users/{uid} where {uid} is a user identifier. + /// /users/{userId} where {userId} is a user identifier. /// - [JsonProperty(PropertyName = "properties.userId")] - public string UserId { get; set; } + [JsonProperty(PropertyName = "properties.ownerId")] + public string OwnerId { get; set; } /// - /// Gets or sets the product resource identifier of the subscribed - /// product. The value is a valid relative URL in the format of - /// /products/{productId} where {productId} is a product identifier. + /// Gets or sets scope like /products/{productId} or /apis or + /// /apis/{apiId}. /// - [JsonProperty(PropertyName = "properties.productId")] - public string ProductId { get; set; } + [JsonProperty(PropertyName = "properties.scope")] + public string Scope { get; set; } /// /// Gets or sets the name of the subscription, or null if the @@ -220,6 +220,12 @@ public SubscriptionContract() [JsonProperty(PropertyName = "properties.stateComment")] public string StateComment { get; set; } + /// + /// Gets or sets determines whether tracing is enabled + /// + [JsonProperty(PropertyName = "properties.allowTracing")] + public bool? AllowTracing { get; set; } + /// /// Validate the object. /// @@ -228,13 +234,9 @@ public SubscriptionContract() /// public virtual void Validate() { - if (UserId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "UserId"); - } - if (ProductId == null) + if (Scope == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "ProductId"); + throw new ValidationException(ValidationRules.CannotBeNull, "Scope"); } if (PrimaryKey == null) { diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SubscriptionCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SubscriptionCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..a3cbaef2f1f8 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SubscriptionCreateOrUpdateHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class SubscriptionCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the SubscriptionCreateOrUpdateHeaders + /// class. + /// + public SubscriptionCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SubscriptionCreateOrUpdateHeaders + /// class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public SubscriptionCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SubscriptionCreateParameters.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SubscriptionCreateParameters.cs index a54bd3a4c6a5..35bd7aa3275a 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SubscriptionCreateParameters.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SubscriptionCreateParameters.cs @@ -34,11 +34,11 @@ public SubscriptionCreateParameters() /// Initializes a new instance of the SubscriptionCreateParameters /// class. /// - /// User (user id path) for whom subscription is - /// being created in form /users/{uid} - /// Product (product id path) for which - /// subscription is being created in form /products/{productId} + /// Scope like /products/{productId} or /apis or + /// /apis/{apiId}. /// Subscription name. + /// User (user id path) for whom subscription is + /// being created in form /users/{userId} /// Primary subscription key. If not specified /// during request key will be generated automatically. /// Secondary subscription key. If not @@ -56,14 +56,17 @@ public SubscriptionCreateParameters() /// reached its expiration date and was deactivated. Possible values /// include: 'suspended', 'active', 'expired', 'submitted', 'rejected', /// 'cancelled' - public SubscriptionCreateParameters(string userId, string productId, string displayName, string primaryKey = default(string), string secondaryKey = default(string), SubscriptionState? state = default(SubscriptionState?)) + /// Determines whether tracing can be + /// enabled + public SubscriptionCreateParameters(string scope, string displayName, string ownerId = default(string), string primaryKey = default(string), string secondaryKey = default(string), SubscriptionState? state = default(SubscriptionState?), bool? allowTracing = default(bool?)) { - UserId = userId; - ProductId = productId; + OwnerId = ownerId; + Scope = scope; DisplayName = displayName; PrimaryKey = primaryKey; SecondaryKey = secondaryKey; State = state; + AllowTracing = allowTracing; CustomInit(); } @@ -74,17 +77,17 @@ public SubscriptionCreateParameters() /// /// Gets or sets user (user id path) for whom subscription is being - /// created in form /users/{uid} + /// created in form /users/{userId} /// - [JsonProperty(PropertyName = "properties.userId")] - public string UserId { get; set; } + [JsonProperty(PropertyName = "properties.ownerId")] + public string OwnerId { get; set; } /// - /// Gets or sets product (product id path) for which subscription is - /// being created in form /products/{productId} + /// Gets or sets scope like /products/{productId} or /apis or + /// /apis/{apiId}. /// - [JsonProperty(PropertyName = "properties.productId")] - public string ProductId { get; set; } + [JsonProperty(PropertyName = "properties.scope")] + public string Scope { get; set; } /// /// Gets or sets subscription name. @@ -122,6 +125,12 @@ public SubscriptionCreateParameters() [JsonProperty(PropertyName = "properties.state")] public SubscriptionState? State { get; set; } + /// + /// Gets or sets determines whether tracing can be enabled + /// + [JsonProperty(PropertyName = "properties.allowTracing")] + public bool? AllowTracing { get; set; } + /// /// Validate the object. /// @@ -130,13 +139,9 @@ public SubscriptionCreateParameters() /// public virtual void Validate() { - if (UserId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "UserId"); - } - if (ProductId == null) + if (Scope == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "ProductId"); + throw new ValidationException(ValidationRules.CannotBeNull, "Scope"); } if (DisplayName == null) { diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SubscriptionUpdateParameters.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SubscriptionUpdateParameters.cs index 3b28039ea7e1..380f4d11fd95 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SubscriptionUpdateParameters.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SubscriptionUpdateParameters.cs @@ -34,9 +34,9 @@ public SubscriptionUpdateParameters() /// Initializes a new instance of the SubscriptionUpdateParameters /// class. /// - /// User identifier path: /users/{uid} - /// Product identifier path: - /// /products/{productId} + /// User identifier path: /users/{userId} + /// Scope like /products/{productId} or /apis or + /// /apis/{apiId} /// Subscription expiration date. The /// setting is for audit purposes only and the subscription is not /// automatically expired. The subscription lifecycle can be managed by @@ -58,16 +58,19 @@ public SubscriptionUpdateParameters() /// 'active', 'expired', 'submitted', 'rejected', 'cancelled' /// Comments describing subscription state /// change by the administrator. - public SubscriptionUpdateParameters(string userId = default(string), string productId = default(string), System.DateTime? expirationDate = default(System.DateTime?), string displayName = default(string), string primaryKey = default(string), string secondaryKey = default(string), SubscriptionState? state = default(SubscriptionState?), string stateComment = default(string)) + /// Determines whether tracing can be + /// enabled + public SubscriptionUpdateParameters(string ownerId = default(string), string scope = default(string), System.DateTime? expirationDate = default(System.DateTime?), string displayName = default(string), string primaryKey = default(string), string secondaryKey = default(string), SubscriptionState? state = default(SubscriptionState?), string stateComment = default(string), bool? allowTracing = default(bool?)) { - UserId = userId; - ProductId = productId; + OwnerId = ownerId; + Scope = scope; ExpirationDate = expirationDate; DisplayName = displayName; PrimaryKey = primaryKey; SecondaryKey = secondaryKey; State = state; StateComment = stateComment; + AllowTracing = allowTracing; CustomInit(); } @@ -77,16 +80,17 @@ public SubscriptionUpdateParameters() partial void CustomInit(); /// - /// Gets or sets user identifier path: /users/{uid} + /// Gets or sets user identifier path: /users/{userId} /// - [JsonProperty(PropertyName = "properties.userId")] - public string UserId { get; set; } + [JsonProperty(PropertyName = "properties.ownerId")] + public string OwnerId { get; set; } /// - /// Gets or sets product identifier path: /products/{productId} + /// Gets or sets scope like /products/{productId} or /apis or + /// /apis/{apiId} /// - [JsonProperty(PropertyName = "properties.productId")] - public string ProductId { get; set; } + [JsonProperty(PropertyName = "properties.scope")] + public string Scope { get; set; } /// /// Gets or sets subscription expiration date. The setting is for audit @@ -138,6 +142,12 @@ public SubscriptionUpdateParameters() [JsonProperty(PropertyName = "properties.stateComment")] public string StateComment { get; set; } + /// + /// Gets or sets determines whether tracing can be enabled + /// + [JsonProperty(PropertyName = "properties.allowTracing")] + public bool? AllowTracing { get; set; } + /// /// Validate the object. /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/TagAssignToApiHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/TagAssignToApiHeaders.cs new file mode 100644 index 000000000000..bb5445a0bf92 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/TagAssignToApiHeaders.cs @@ -0,0 +1,53 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for AssignToApi operation. + /// + public partial class TagAssignToApiHeaders + { + /// + /// Initializes a new instance of the TagAssignToApiHeaders class. + /// + public TagAssignToApiHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the TagAssignToApiHeaders class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public TagAssignToApiHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/TagCreateOrUpdateHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/TagCreateOrUpdateHeaders.cs new file mode 100644 index 000000000000..7d66c865a1f6 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/TagCreateOrUpdateHeaders.cs @@ -0,0 +1,53 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for CreateOrUpdate operation. + /// + public partial class TagCreateOrUpdateHeaders + { + /// + /// Initializes a new instance of the TagCreateOrUpdateHeaders class. + /// + public TagCreateOrUpdateHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the TagCreateOrUpdateHeaders class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public TagCreateOrUpdateHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/TenantAccessGetEntityTagHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/TenantAccessGetEntityTagHeaders.cs new file mode 100644 index 000000000000..1d613ed1c3c3 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/TenantAccessGetEntityTagHeaders.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for GetEntityTag operation. + /// + public partial class TenantAccessGetEntityTagHeaders + { + /// + /// Initializes a new instance of the TenantAccessGetEntityTagHeaders + /// class. + /// + public TenantAccessGetEntityTagHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the TenantAccessGetEntityTagHeaders + /// class. + /// + /// Current entity state version. Should be treated + /// as opaque and used to make conditional HTTP requests. + public TenantAccessGetEntityTagHeaders(string eTag = default(string)) + { + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets current entity state version. Should be treated as + /// opaque and used to make conditional HTTP requests. + /// + [JsonProperty(PropertyName = "ETag")] + public string ETag { get; set; } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiSchemaListByApiHeaders.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/UserCreateOrUpdateHeaders.cs similarity index 79% rename from src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiSchemaListByApiHeaders.cs rename to src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/UserCreateOrUpdateHeaders.cs index 61de8984c651..2d0629f9246e 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiSchemaListByApiHeaders.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/UserCreateOrUpdateHeaders.cs @@ -14,24 +14,24 @@ namespace Microsoft.Azure.Management.ApiManagement.Models using System.Linq; /// - /// Defines headers for ListByApi operation. + /// Defines headers for CreateOrUpdate operation. /// - public partial class ApiSchemaListByApiHeaders + public partial class UserCreateOrUpdateHeaders { /// - /// Initializes a new instance of the ApiSchemaListByApiHeaders class. + /// Initializes a new instance of the UserCreateOrUpdateHeaders class. /// - public ApiSchemaListByApiHeaders() + public UserCreateOrUpdateHeaders() { CustomInit(); } /// - /// Initializes a new instance of the ApiSchemaListByApiHeaders class. + /// Initializes a new instance of the UserCreateOrUpdateHeaders class. /// /// Current entity state version. Should be treated /// as opaque and used to make conditional HTTP requests. - public ApiSchemaListByApiHeaders(string eTag = default(string)) + public UserCreateOrUpdateHeaders(string eTag = default(string)) { ETag = eTag; CustomInit(); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/UserTokenParameters.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/UserTokenParameters.cs index 93a2a31a1826..c817c47d855b 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/UserTokenParameters.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/UserTokenParameters.cs @@ -10,12 +10,15 @@ namespace Microsoft.Azure.Management.ApiManagement.Models { + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; /// - /// Parameters supplied to the Get User Token operation. + /// Get User Token parameters. /// + [Rest.Serialization.JsonTransformation] public partial class UserTokenParameters { /// @@ -52,7 +55,7 @@ public UserTokenParameters(KeyType keyType, System.DateTime expiry) /// Gets or sets the Key to be used to generate token for user. /// Possible values include: 'primary', 'secondary' /// - [JsonProperty(PropertyName = "keyType")] + [JsonProperty(PropertyName = "properties.keyType")] public KeyType KeyType { get; set; } /// @@ -61,13 +64,13 @@ public UserTokenParameters(KeyType keyType, System.DateTime expiry) /// `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard. /// /// - [JsonProperty(PropertyName = "expiry")] + [JsonProperty(PropertyName = "properties.expiry")] public System.DateTime Expiry { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/NotificationOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/NotificationOperations.cs index f6a207a7b6a9..78443260da12 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/NotificationOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/NotificationOperations.cs @@ -71,7 +71,7 @@ internal NotificationOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -220,14 +220,13 @@ internal NotificationOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -237,10 +236,6 @@ internal NotificationOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -506,7 +501,7 @@ internal NotificationOperations(ApiManagementClient client) } /// - /// Updates an Notification. + /// Create or Update API Management publisher notification. /// /// /// The name of the resource group. @@ -750,7 +745,7 @@ internal NotificationOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -846,14 +841,13 @@ internal NotificationOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -863,10 +857,6 @@ internal NotificationOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/NotificationOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/NotificationOperationsExtensions.cs index d9500f08fa5b..910b935c51c3 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/NotificationOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/NotificationOperationsExtensions.cs @@ -130,7 +130,7 @@ public static NotificationContract Get(this INotificationOperations operations, } /// - /// Updates an Notification. + /// Create or Update API Management publisher notification. /// /// /// The operations group for this extension method. @@ -159,7 +159,7 @@ public static NotificationContract Get(this INotificationOperations operations, } /// - /// Updates an Notification. + /// Create or Update API Management publisher notification. /// /// /// The operations group for this extension method. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/NotificationRecipientUserOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/NotificationRecipientUserOperations.cs index eb359c0b493e..beb11a153762 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/NotificationRecipientUserOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/NotificationRecipientUserOperations.cs @@ -289,7 +289,7 @@ internal NotificationRecipientUserOperations(ApiManagementClient client) /// 'NewIssuePublisherNotificationMessage', 'AccountClosedPublisher', /// 'QuotaLimitApproachingPublisherNotificationMessage' /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -311,7 +311,7 @@ internal NotificationRecipientUserOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string notificationName, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string notificationName, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -340,23 +340,23 @@ internal NotificationRecipientUserOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "notificationName"); } - if (uid == null) + if (userId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "uid"); + throw new ValidationException(ValidationRules.CannotBeNull, "userId"); } - if (uid != null) + if (userId != null) { - if (uid.Length > 80) + if (userId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "uid", 80); + throw new ValidationException(ValidationRules.MaxLength, "userId", 80); } - if (uid.Length < 1) + if (userId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "uid", 1); + throw new ValidationException(ValidationRules.MinLength, "userId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(uid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(userId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "uid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "userId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -377,17 +377,17 @@ internal NotificationRecipientUserOperations(ApiManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("notificationName", notificationName); - tracingParameters.Add("uid", uid); + tracingParameters.Add("userId", userId); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CheckEntityExists", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/notifications/{notificationName}/recipientUsers/{uid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/notifications/{notificationName}/recipientUsers/{userId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); _url = _url.Replace("{notificationName}", System.Uri.EscapeDataString(notificationName)); - _url = _url.Replace("{uid}", System.Uri.EscapeDataString(uid)); + _url = _url.Replace("{userId}", System.Uri.EscapeDataString(userId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -515,7 +515,7 @@ internal NotificationRecipientUserOperations(ApiManagementClient client) /// 'NewIssuePublisherNotificationMessage', 'AccountClosedPublisher', /// 'QuotaLimitApproachingPublisherNotificationMessage' /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -540,7 +540,7 @@ internal NotificationRecipientUserOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string notificationName, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string notificationName, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -569,23 +569,23 @@ internal NotificationRecipientUserOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "notificationName"); } - if (uid == null) + if (userId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "uid"); + throw new ValidationException(ValidationRules.CannotBeNull, "userId"); } - if (uid != null) + if (userId != null) { - if (uid.Length > 80) + if (userId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "uid", 80); + throw new ValidationException(ValidationRules.MaxLength, "userId", 80); } - if (uid.Length < 1) + if (userId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "uid", 1); + throw new ValidationException(ValidationRules.MinLength, "userId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(uid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(userId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "uid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "userId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -606,17 +606,17 @@ internal NotificationRecipientUserOperations(ApiManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("notificationName", notificationName); - tracingParameters.Add("uid", uid); + tracingParameters.Add("userId", userId); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/notifications/{notificationName}/recipientUsers/{uid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/notifications/{notificationName}/recipientUsers/{userId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); _url = _url.Replace("{notificationName}", System.Uri.EscapeDataString(notificationName)); - _url = _url.Replace("{uid}", System.Uri.EscapeDataString(uid)); + _url = _url.Replace("{userId}", System.Uri.EscapeDataString(userId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -778,7 +778,7 @@ internal NotificationRecipientUserOperations(ApiManagementClient client) /// 'NewIssuePublisherNotificationMessage', 'AccountClosedPublisher', /// 'QuotaLimitApproachingPublisherNotificationMessage' /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -800,7 +800,7 @@ internal NotificationRecipientUserOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string notificationName, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string notificationName, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -829,23 +829,23 @@ internal NotificationRecipientUserOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "notificationName"); } - if (uid == null) + if (userId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "uid"); + throw new ValidationException(ValidationRules.CannotBeNull, "userId"); } - if (uid != null) + if (userId != null) { - if (uid.Length > 80) + if (userId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "uid", 80); + throw new ValidationException(ValidationRules.MaxLength, "userId", 80); } - if (uid.Length < 1) + if (userId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "uid", 1); + throw new ValidationException(ValidationRules.MinLength, "userId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(uid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(userId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "uid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "userId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -866,17 +866,17 @@ internal NotificationRecipientUserOperations(ApiManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("notificationName", notificationName); - tracingParameters.Add("uid", uid); + tracingParameters.Add("userId", userId); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/notifications/{notificationName}/recipientUsers/{uid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/notifications/{notificationName}/recipientUsers/{userId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); _url = _url.Replace("{notificationName}", System.Uri.EscapeDataString(notificationName)); - _url = _url.Replace("{uid}", System.Uri.EscapeDataString(uid)); + _url = _url.Replace("{userId}", System.Uri.EscapeDataString(userId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/NotificationRecipientUserOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/NotificationRecipientUserOperationsExtensions.cs index 7e9fcb6bffe1..8c2571653c88 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/NotificationRecipientUserOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/NotificationRecipientUserOperationsExtensions.cs @@ -100,13 +100,13 @@ public static RecipientUserCollection ListByNotification(this INotificationRecip /// 'NewIssuePublisherNotificationMessage', 'AccountClosedPublisher', /// 'QuotaLimitApproachingPublisherNotificationMessage' /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// - public static bool CheckEntityExists(this INotificationRecipientUserOperations operations, string resourceGroupName, string serviceName, string notificationName, string uid) + public static bool CheckEntityExists(this INotificationRecipientUserOperations operations, string resourceGroupName, string serviceName, string notificationName, string userId) { - return operations.CheckEntityExistsAsync(resourceGroupName, serviceName, notificationName, uid).GetAwaiter().GetResult(); + return operations.CheckEntityExistsAsync(resourceGroupName, serviceName, notificationName, userId).GetAwaiter().GetResult(); } /// @@ -130,16 +130,16 @@ public static bool CheckEntityExists(this INotificationRecipientUserOperations o /// 'NewIssuePublisherNotificationMessage', 'AccountClosedPublisher', /// 'QuotaLimitApproachingPublisherNotificationMessage' /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// /// /// The cancellation token. /// - public static async Task CheckEntityExistsAsync(this INotificationRecipientUserOperations operations, string resourceGroupName, string serviceName, string notificationName, string uid, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CheckEntityExistsAsync(this INotificationRecipientUserOperations operations, string resourceGroupName, string serviceName, string notificationName, string userId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CheckEntityExistsWithHttpMessagesAsync(resourceGroupName, serviceName, notificationName, uid, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CheckEntityExistsWithHttpMessagesAsync(resourceGroupName, serviceName, notificationName, userId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -166,13 +166,13 @@ public static bool CheckEntityExists(this INotificationRecipientUserOperations o /// 'NewIssuePublisherNotificationMessage', 'AccountClosedPublisher', /// 'QuotaLimitApproachingPublisherNotificationMessage' /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// - public static RecipientUserContract CreateOrUpdate(this INotificationRecipientUserOperations operations, string resourceGroupName, string serviceName, string notificationName, string uid) + public static RecipientUserContract CreateOrUpdate(this INotificationRecipientUserOperations operations, string resourceGroupName, string serviceName, string notificationName, string userId) { - return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, notificationName, uid).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, notificationName, userId).GetAwaiter().GetResult(); } /// @@ -196,16 +196,16 @@ public static RecipientUserContract CreateOrUpdate(this INotificationRecipientUs /// 'NewIssuePublisherNotificationMessage', 'AccountClosedPublisher', /// 'QuotaLimitApproachingPublisherNotificationMessage' /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this INotificationRecipientUserOperations operations, string resourceGroupName, string serviceName, string notificationName, string uid, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this INotificationRecipientUserOperations operations, string resourceGroupName, string serviceName, string notificationName, string userId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, notificationName, uid, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, notificationName, userId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -231,13 +231,13 @@ public static RecipientUserContract CreateOrUpdate(this INotificationRecipientUs /// 'NewIssuePublisherNotificationMessage', 'AccountClosedPublisher', /// 'QuotaLimitApproachingPublisherNotificationMessage' /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// - public static void Delete(this INotificationRecipientUserOperations operations, string resourceGroupName, string serviceName, string notificationName, string uid) + public static void Delete(this INotificationRecipientUserOperations operations, string resourceGroupName, string serviceName, string notificationName, string userId) { - operations.DeleteAsync(resourceGroupName, serviceName, notificationName, uid).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, serviceName, notificationName, userId).GetAwaiter().GetResult(); } /// @@ -260,16 +260,16 @@ public static void Delete(this INotificationRecipientUserOperations operations, /// 'NewIssuePublisherNotificationMessage', 'AccountClosedPublisher', /// 'QuotaLimitApproachingPublisherNotificationMessage' /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this INotificationRecipientUserOperations operations, string resourceGroupName, string serviceName, string notificationName, string uid, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this INotificationRecipientUserOperations operations, string resourceGroupName, string serviceName, string notificationName, string userId, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, notificationName, uid, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, notificationName, userId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OpenIdConnectProviderOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OpenIdConnectProviderOperations.cs index 4edcbfeca178..00fa604e0e8d 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OpenIdConnectProviderOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OpenIdConnectProviderOperations.cs @@ -52,7 +52,7 @@ internal OpenIdConnectProviderOperations(ApiManagementClient client) public ApiManagementClient Client { get; private set; } /// - /// Lists all OpenID Connect Providers. + /// Lists of all the OpenId Connect Providers. /// /// /// The name of the resource group. @@ -69,7 +69,7 @@ internal OpenIdConnectProviderOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -209,14 +209,13 @@ internal OpenIdConnectProviderOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -226,10 +225,6 @@ internal OpenIdConnectProviderOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -772,7 +767,7 @@ internal OpenIdConnectProviderOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string opid, OpenidConnectProviderContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string opid, OpenidConnectProviderContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -957,7 +952,7 @@ internal OpenIdConnectProviderOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1000,6 +995,19 @@ internal OpenIdConnectProviderOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1469,7 +1477,7 @@ internal OpenIdConnectProviderOperations(ApiManagementClient client) } /// - /// Lists all OpenID Connect Providers. + /// Lists of all the OpenId Connect Providers. /// /// /// The NextLink from the previous successful call to List operation. @@ -1480,7 +1488,7 @@ internal OpenIdConnectProviderOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1576,14 +1584,13 @@ internal OpenIdConnectProviderOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1593,10 +1600,6 @@ internal OpenIdConnectProviderOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OpenIdConnectProviderOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OpenIdConnectProviderOperationsExtensions.cs index 92b699d1c468..56dea6d28810 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OpenIdConnectProviderOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OpenIdConnectProviderOperationsExtensions.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Management.ApiManagement public static partial class OpenIdConnectProviderOperationsExtensions { /// - /// Lists all OpenID Connect Providers. + /// Lists of all the OpenId Connect Providers. /// /// /// The operations group for this extension method. @@ -43,7 +43,7 @@ public static partial class OpenIdConnectProviderOperationsExtensions } /// - /// Lists all OpenID Connect Providers. + /// Lists of all the OpenId Connect Providers. /// /// /// The operations group for this extension method. @@ -337,7 +337,7 @@ public static void Delete(this IOpenIdConnectProviderOperations operations, stri } /// - /// Lists all OpenID Connect Providers. + /// Lists of all the OpenId Connect Providers. /// /// /// The operations group for this extension method. @@ -351,7 +351,7 @@ public static IPage ListByServiceNext(this IOpenI } /// - /// Lists all OpenID Connect Providers. + /// Lists of all the OpenId Connect Providers. /// /// /// The operations group for this extension method. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OperationOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OperationOperations.cs index d9d832973030..3ec3f97b9ec3 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OperationOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OperationOperations.cs @@ -68,6 +68,9 @@ internal OperationOperations(ApiManagementClient client) /// /// OData parameters to apply to the operation. /// + /// + /// Include not tagged Operations. + /// /// /// Headers that will be added to request. /// @@ -89,7 +92,7 @@ internal OperationOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByTagsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByTagsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), bool? includeNotTaggedOperations = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -152,6 +155,7 @@ internal OperationOperations(ApiManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("apiId", apiId); + tracingParameters.Add("includeNotTaggedOperations", includeNotTaggedOperations); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByTags", tracingParameters); } @@ -171,6 +175,10 @@ internal OperationOperations(ApiManagementClient client) _queryParameters.Add(_odataFilter); } } + if (includeNotTaggedOperations != null) + { + _queryParameters.Add(string.Format("includeNotTaggedOperations={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(includeNotTaggedOperations, Client.SerializationSettings).Trim('"')))); + } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OperationOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OperationOperationsExtensions.cs index 804cbb7a26e7..e507535363d9 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OperationOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OperationOperationsExtensions.cs @@ -42,9 +42,12 @@ public static partial class OperationOperationsExtensions /// /// OData parameters to apply to the operation. /// - public static IPage ListByTags(this IOperationOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery)) + /// + /// Include not tagged Operations. + /// + public static IPage ListByTags(this IOperationOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), bool? includeNotTaggedOperations = default(bool?)) { - return operations.ListByTagsAsync(resourceGroupName, serviceName, apiId, odataQuery).GetAwaiter().GetResult(); + return operations.ListByTagsAsync(resourceGroupName, serviceName, apiId, odataQuery, includeNotTaggedOperations).GetAwaiter().GetResult(); } /// @@ -67,12 +70,15 @@ public static partial class OperationOperationsExtensions /// /// OData parameters to apply to the operation. /// + /// + /// Include not tagged Operations. + /// /// /// The cancellation token. /// - public static async Task> ListByTagsAsync(this IOperationOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByTagsAsync(this IOperationOperations operations, string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), bool? includeNotTaggedOperations = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByTagsWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByTagsWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, odataQuery, includeNotTaggedOperations, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicyOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicyOperations.cs index d45110078235..b31e48913c30 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicyOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicyOperations.cs @@ -59,17 +59,13 @@ internal PolicyOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// Policy scope. Possible values include: 'Tenant', 'Product', 'Api', - /// 'Operation', 'All' - /// /// /// Headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -84,7 +80,7 @@ internal PolicyOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, PolicyScopeContract? scope = default(PolicyScopeContract?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -126,7 +122,6 @@ internal PolicyOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("scope", scope); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByService", tracingParameters); } @@ -137,10 +132,6 @@ internal PolicyOperations(ApiManagementClient client) _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (scope != null) - { - _queryParameters.Add(string.Format("scope={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(scope, Client.SerializationSettings).Trim('"')))); - } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -205,14 +196,13 @@ internal PolicyOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -222,10 +212,6 @@ internal PolicyOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -707,6 +693,10 @@ internal PolicyOperations(ApiManagementClient client) /// /// The policy contents to apply. /// + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// /// /// Headers that will be added to request. /// @@ -728,7 +718,7 @@ internal PolicyOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, PolicyContract parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, PolicyContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -781,6 +771,7 @@ internal PolicyOperations(ApiManagementClient client) tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("policyId", policyId); tracingParameters.Add("parameters", parameters); + tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } @@ -810,6 +801,14 @@ internal PolicyOperations(ApiManagementClient client) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } + if (ifMatch != null) + { + if (_httpRequest.Headers.Contains("If-Match")) + { + _httpRequest.Headers.Remove("If-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -890,7 +889,7 @@ internal PolicyOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -933,6 +932,19 @@ internal PolicyOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicyOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicyOperationsExtensions.cs index d5d73009ca18..1ce713333632 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicyOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicyOperationsExtensions.cs @@ -33,13 +33,9 @@ public static partial class PolicyOperationsExtensions /// /// The name of the API Management service. /// - /// - /// Policy scope. Possible values include: 'Tenant', 'Product', 'Api', - /// 'Operation', 'All' - /// - public static PolicyCollection ListByService(this IPolicyOperations operations, string resourceGroupName, string serviceName, PolicyScopeContract? scope = default(PolicyScopeContract?)) + public static PolicyCollection ListByService(this IPolicyOperations operations, string resourceGroupName, string serviceName) { - return operations.ListByServiceAsync(resourceGroupName, serviceName, scope).GetAwaiter().GetResult(); + return operations.ListByServiceAsync(resourceGroupName, serviceName).GetAwaiter().GetResult(); } /// @@ -54,16 +50,12 @@ public static partial class PolicyOperationsExtensions /// /// The name of the API Management service. /// - /// - /// Policy scope. Possible values include: 'Tenant', 'Product', 'Api', - /// 'Operation', 'All' - /// /// /// The cancellation token. /// - public static async Task ListByServiceAsync(this IPolicyOperations operations, string resourceGroupName, string serviceName, PolicyScopeContract? scope = default(PolicyScopeContract?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListByServiceAsync(this IPolicyOperations operations, string resourceGroupName, string serviceName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, scope, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -167,9 +159,13 @@ public static PolicyContract Get(this IPolicyOperations operations, string resou /// /// The policy contents to apply. /// - public static PolicyContract CreateOrUpdate(this IPolicyOperations operations, string resourceGroupName, string serviceName, PolicyContract parameters) + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// + public static PolicyContract CreateOrUpdate(this IPolicyOperations operations, string resourceGroupName, string serviceName, PolicyContract parameters, string ifMatch = default(string)) { - return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, parameters).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, parameters, ifMatch).GetAwaiter().GetResult(); } /// @@ -188,12 +184,16 @@ public static PolicyContract CreateOrUpdate(this IPolicyOperations operations, s /// /// The policy contents to apply. /// + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IPolicyOperations operations, string resourceGroupName, string serviceName, PolicyContract parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IPolicyOperations operations, string resourceGroupName, string serviceName, PolicyContract parameters, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicySnippetsOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicySnippetOperations.cs similarity index 92% rename from src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicySnippetsOperations.cs rename to src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicySnippetOperations.cs index 768542a43758..4444f81aa8ab 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicySnippetsOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicySnippetOperations.cs @@ -23,12 +23,12 @@ namespace Microsoft.Azure.Management.ApiManagement using System.Threading.Tasks; /// - /// PolicySnippetsOperations operations. + /// PolicySnippetOperations operations. /// - internal partial class PolicySnippetsOperations : IServiceOperations, IPolicySnippetsOperations + internal partial class PolicySnippetOperations : IServiceOperations, IPolicySnippetOperations { /// - /// Initializes a new instance of the PolicySnippetsOperations class. + /// Initializes a new instance of the PolicySnippetOperations class. /// /// /// Reference to the service client. @@ -36,7 +36,7 @@ internal partial class PolicySnippetsOperations : IServiceOperations /// Thrown when a required parameter is null /// - internal PolicySnippetsOperations(ApiManagementClient client) + internal PolicySnippetOperations(ApiManagementClient client) { if (client == null) { @@ -69,7 +69,7 @@ internal PolicySnippetsOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -205,14 +205,13 @@ internal PolicySnippetsOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -222,10 +221,6 @@ internal PolicySnippetsOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicySnippetsOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicySnippetOperationsExtensions.cs similarity index 83% rename from src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicySnippetsOperationsExtensions.cs rename to src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicySnippetOperationsExtensions.cs index 3eb36f32bace..e3e66f50024f 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicySnippetsOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PolicySnippetOperationsExtensions.cs @@ -17,9 +17,9 @@ namespace Microsoft.Azure.Management.ApiManagement using System.Threading.Tasks; /// - /// Extension methods for PolicySnippetsOperations. + /// Extension methods for PolicySnippetOperations. /// - public static partial class PolicySnippetsOperationsExtensions + public static partial class PolicySnippetOperationsExtensions { /// /// Lists all policy snippets. @@ -37,7 +37,7 @@ public static partial class PolicySnippetsOperationsExtensions /// Policy scope. Possible values include: 'Tenant', 'Product', 'Api', /// 'Operation', 'All' /// - public static PolicySnippetsCollection ListByService(this IPolicySnippetsOperations operations, string resourceGroupName, string serviceName, PolicyScopeContract? scope = default(PolicyScopeContract?)) + public static PolicySnippetsCollection ListByService(this IPolicySnippetOperations operations, string resourceGroupName, string serviceName, PolicyScopeContract? scope = default(PolicyScopeContract?)) { return operations.ListByServiceAsync(resourceGroupName, serviceName, scope).GetAwaiter().GetResult(); } @@ -61,7 +61,7 @@ public static partial class PolicySnippetsOperationsExtensions /// /// The cancellation token. /// - public static async Task ListByServiceAsync(this IPolicySnippetsOperations operations, string resourceGroupName, string serviceName, PolicyScopeContract? scope = default(PolicyScopeContract?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListByServiceAsync(this IPolicySnippetOperations operations, string resourceGroupName, string serviceName, PolicyScopeContract? scope = default(PolicyScopeContract?), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, scope, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductApiOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductApiOperations.cs index d4dba50e3ee7..f6788313979d 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductApiOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductApiOperations.cs @@ -119,17 +119,17 @@ internal ProductApiOperations(ApiManagementClient client) } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -331,7 +331,7 @@ internal ProductApiOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string apiId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string apiId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -362,17 +362,17 @@ internal ProductApiOperations(ApiManagementClient client) } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (apiId == null) @@ -487,7 +487,7 @@ internal ProductApiOperations(ApiManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204 && (int)_statusCode != 404) + if ((int)_statusCode != 204) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -517,10 +517,9 @@ internal ProductApiOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; - _result.Body = _statusCode == System.Net.HttpStatusCode.NoContent; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); @@ -602,17 +601,17 @@ internal ProductApiOperations(ApiManagementClient client) } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (apiId == null) @@ -874,17 +873,17 @@ internal ProductApiOperations(ApiManagementClient client) } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (apiId == null) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductApiOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductApiOperationsExtensions.cs index 341fb93b90ec..0d6e3179ae90 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductApiOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductApiOperationsExtensions.cs @@ -98,9 +98,9 @@ public static partial class ProductApiOperationsExtensions /// service instance. Non-current revision has ;rev=n as a suffix where n is /// the revision number. /// - public static bool CheckEntityExists(this IProductApiOperations operations, string resourceGroupName, string serviceName, string productId, string apiId) + public static void CheckEntityExists(this IProductApiOperations operations, string resourceGroupName, string serviceName, string productId, string apiId) { - return operations.CheckEntityExistsAsync(resourceGroupName, serviceName, productId, apiId).GetAwaiter().GetResult(); + operations.CheckEntityExistsAsync(resourceGroupName, serviceName, productId, apiId).GetAwaiter().GetResult(); } /// @@ -128,12 +128,9 @@ public static bool CheckEntityExists(this IProductApiOperations operations, stri /// /// The cancellation token. /// - public static async Task CheckEntityExistsAsync(this IProductApiOperations operations, string resourceGroupName, string serviceName, string productId, string apiId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CheckEntityExistsAsync(this IProductApiOperations operations, string resourceGroupName, string serviceName, string productId, string apiId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CheckEntityExistsWithHttpMessagesAsync(resourceGroupName, serviceName, productId, apiId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.CheckEntityExistsWithHttpMessagesAsync(resourceGroupName, serviceName, productId, apiId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductGroupOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductGroupOperations.cs index 580a6e752fe8..e4100173c381 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductGroupOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductGroupOperations.cs @@ -120,17 +120,17 @@ internal ProductGroupOperations(ApiManagementClient client) } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -331,7 +331,7 @@ internal ProductGroupOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string groupId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CheckEntityExistsWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string groupId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -362,17 +362,17 @@ internal ProductGroupOperations(ApiManagementClient client) } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (groupId == null) @@ -381,17 +381,17 @@ internal ProductGroupOperations(ApiManagementClient client) } if (groupId != null) { - if (groupId.Length > 80) + if (groupId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 80); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 256); } if (groupId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "groupId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "groupId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -487,7 +487,7 @@ internal ProductGroupOperations(ApiManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204 && (int)_statusCode != 404) + if ((int)_statusCode != 204) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -517,10 +517,9 @@ internal ProductGroupOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; - _result.Body = _statusCode == System.Net.HttpStatusCode.NoContent; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); @@ -602,17 +601,17 @@ internal ProductGroupOperations(ApiManagementClient client) } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (groupId == null) @@ -621,17 +620,17 @@ internal ProductGroupOperations(ApiManagementClient client) } if (groupId != null) { - if (groupId.Length > 80) + if (groupId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 80); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 256); } if (groupId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "groupId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "groupId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -873,17 +872,17 @@ internal ProductGroupOperations(ApiManagementClient client) } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (groupId == null) @@ -892,17 +891,17 @@ internal ProductGroupOperations(ApiManagementClient client) } if (groupId != null) { - if (groupId.Length > 80) + if (groupId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 80); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 256); } if (groupId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(groupId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "groupId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "groupId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductGroupOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductGroupOperationsExtensions.cs index c2d3e8d646c2..25adfc32f81b 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductGroupOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductGroupOperationsExtensions.cs @@ -99,9 +99,9 @@ public static partial class ProductGroupOperationsExtensions /// Group identifier. Must be unique in the current API Management service /// instance. /// - public static bool CheckEntityExists(this IProductGroupOperations operations, string resourceGroupName, string serviceName, string productId, string groupId) + public static void CheckEntityExists(this IProductGroupOperations operations, string resourceGroupName, string serviceName, string productId, string groupId) { - return operations.CheckEntityExistsAsync(resourceGroupName, serviceName, productId, groupId).GetAwaiter().GetResult(); + operations.CheckEntityExistsAsync(resourceGroupName, serviceName, productId, groupId).GetAwaiter().GetResult(); } /// @@ -128,12 +128,9 @@ public static bool CheckEntityExists(this IProductGroupOperations operations, st /// /// The cancellation token. /// - public static async Task CheckEntityExistsAsync(this IProductGroupOperations operations, string resourceGroupName, string serviceName, string productId, string groupId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CheckEntityExistsAsync(this IProductGroupOperations operations, string resourceGroupName, string serviceName, string productId, string groupId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CheckEntityExistsWithHttpMessagesAsync(resourceGroupName, serviceName, productId, groupId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.CheckEntityExistsWithHttpMessagesAsync(resourceGroupName, serviceName, productId, groupId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductOperations.cs index 61c6a329f116..59102603cd37 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductOperations.cs @@ -67,6 +67,9 @@ internal ProductOperations(ApiManagementClient client) /// When set to true, the response contains an array of groups that have /// visibility to the product. The default is false. /// + /// + /// Products which are part of a specific tag. + /// /// /// Headers that will be added to request. /// @@ -88,7 +91,7 @@ internal ProductOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? expandGroups = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? expandGroups = default(bool?), string tags = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -132,6 +135,7 @@ internal ProductOperations(ApiManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("expandGroups", expandGroups); + tracingParameters.Add("tags", tags); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByService", tracingParameters); } @@ -154,6 +158,10 @@ internal ProductOperations(ApiManagementClient client) { _queryParameters.Add(string.Format("expandGroups={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expandGroups, Client.SerializationSettings).Trim('"')))); } + if (tags != null) + { + _queryParameters.Add(string.Format("tags={0}", System.Uri.EscapeDataString(tags))); + } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -341,17 +349,17 @@ internal ProductOperations(ApiManagementClient client) } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -567,17 +575,17 @@ internal ProductOperations(ApiManagementClient client) } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -787,7 +795,7 @@ internal ProductOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, ProductContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, ProductContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -818,17 +826,17 @@ internal ProductOperations(ApiManagementClient client) } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -976,7 +984,7 @@ internal ProductOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1019,6 +1027,19 @@ internal ProductOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1027,7 +1048,7 @@ internal ProductOperations(ApiManagementClient client) } /// - /// Update product. + /// Update existing product details. /// /// /// The name of the resource group. @@ -1096,17 +1117,17 @@ internal ProductOperations(ApiManagementClient client) } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1338,17 +1359,17 @@ internal ProductOperations(ApiManagementClient client) } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) @@ -1373,8 +1394,8 @@ internal ProductOperations(ApiManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("productId", productId); - tracingParameters.Add("deleteSubscriptions", deleteSubscriptions); tracingParameters.Add("ifMatch", ifMatch); + tracingParameters.Add("deleteSubscriptions", deleteSubscriptions); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } @@ -1504,6 +1525,232 @@ internal ProductOperations(ApiManagementClient client) return _result; } + /// + /// Lists a collection of products associated with tags. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Include not tagged Products. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByTagsWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? includeNotTaggedProducts = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serviceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serviceName"); + } + if (serviceName != null) + { + if (serviceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "serviceName", 50); + } + if (serviceName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "serviceName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(serviceName, "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$")) + { + throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("odataQuery", odataQuery); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serviceName", serviceName); + tracingParameters.Add("includeNotTaggedProducts", includeNotTaggedProducts); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByTags", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/productsByTags").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } + if (includeNotTaggedProducts != null) + { + _queryParameters.Add(string.Format("includeNotTaggedProducts={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(includeNotTaggedProducts, Client.SerializationSettings).Trim('"')))); + } + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + /// /// Lists a collection of products in the specified service instance. /// @@ -1672,5 +1919,173 @@ internal ProductOperations(ApiManagementClient client) return _result; } + /// + /// Lists a collection of products associated with tags. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByTagsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByTagsNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductOperationsExtensions.cs index 7e76c51b689b..03af19e94001 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductOperationsExtensions.cs @@ -41,9 +41,12 @@ public static partial class ProductOperationsExtensions /// When set to true, the response contains an array of groups that have /// visibility to the product. The default is false. /// - public static IPage ListByService(this IProductOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? expandGroups = default(bool?)) + /// + /// Products which are part of a specific tag. + /// + public static IPage ListByService(this IProductOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? expandGroups = default(bool?), string tags = default(string)) { - return operations.ListByServiceAsync(resourceGroupName, serviceName, odataQuery, expandGroups).GetAwaiter().GetResult(); + return operations.ListByServiceAsync(resourceGroupName, serviceName, odataQuery, expandGroups, tags).GetAwaiter().GetResult(); } /// @@ -65,12 +68,15 @@ public static partial class ProductOperationsExtensions /// When set to true, the response contains an array of groups that have /// visibility to the product. The default is false. /// + /// + /// Products which are part of a specific tag. + /// /// /// The cancellation token. /// - public static async Task> ListByServiceAsync(this IProductOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? expandGroups = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServiceAsync(this IProductOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? expandGroups = default(bool?), string tags = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, odataQuery, expandGroups, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, odataQuery, expandGroups, tags, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -237,7 +243,7 @@ public static ProductContract Get(this IProductOperations operations, string res } /// - /// Update product. + /// Update existing product details. /// /// /// The operations group for this extension method. @@ -266,7 +272,7 @@ public static void Update(this IProductOperations operations, string resourceGro } /// - /// Update product. + /// Update existing product details. /// /// /// The operations group for this extension method. @@ -358,6 +364,58 @@ public static void Update(this IProductOperations operations, string resourceGro (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, productId, ifMatch, deleteSubscriptions, null, cancellationToken).ConfigureAwait(false)).Dispose(); } + /// + /// Lists a collection of products associated with tags. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Include not tagged Products. + /// + public static IPage ListByTags(this IProductOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? includeNotTaggedProducts = default(bool?)) + { + return operations.ListByTagsAsync(resourceGroupName, serviceName, odataQuery, includeNotTaggedProducts).GetAwaiter().GetResult(); + } + + /// + /// Lists a collection of products associated with tags. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Include not tagged Products. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByTagsAsync(this IProductOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? includeNotTaggedProducts = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByTagsWithHttpMessagesAsync(resourceGroupName, serviceName, odataQuery, includeNotTaggedProducts, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Lists a collection of products in the specified service instance. /// @@ -392,5 +450,39 @@ public static IPage ListByServiceNext(this IProductOperations o } } + /// + /// Lists a collection of products associated with tags. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByTagsNext(this IProductOperations operations, string nextPageLink) + { + return operations.ListByTagsNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists a collection of products associated with tags. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByTagsNextAsync(this IProductOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByTagsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductPolicyOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductPolicyOperations.cs index ebbd71516e52..6b07b7f0ebea 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductPolicyOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductPolicyOperations.cs @@ -84,7 +84,7 @@ internal ProductPolicyOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ListByProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListByProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -109,33 +109,33 @@ internal ProductPolicyOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (productId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "productId"); } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -154,8 +154,8 @@ internal ProductPolicyOperations(ApiManagementClient client) var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/products/{productId}/policies").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{productId}", System.Uri.EscapeDataString(productId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -249,7 +249,7 @@ internal ProductPolicyOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -274,19 +274,6 @@ internal ProductPolicyOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - try - { - _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -350,33 +337,33 @@ internal ProductPolicyOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (productId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "productId"); } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } string policyId = "policy"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -397,9 +384,9 @@ internal ProductPolicyOperations(ApiManagementClient client) var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/products/{productId}/policies/{policyId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{productId}", System.Uri.EscapeDataString(productId)); _url = _url.Replace("{policyId}", System.Uri.EscapeDataString(policyId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -579,33 +566,33 @@ internal ProductPolicyOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (productId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "productId"); } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } string policyId = "policy"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -626,9 +613,9 @@ internal ProductPolicyOperations(ApiManagementClient client) var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/products/{productId}/policies/{policyId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{productId}", System.Uri.EscapeDataString(productId)); _url = _url.Replace("{policyId}", System.Uri.EscapeDataString(policyId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -808,7 +795,7 @@ internal ProductPolicyOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, PolicyContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, PolicyContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -839,17 +826,17 @@ internal ProductPolicyOperations(ApiManagementClient client) } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1000,7 +987,7 @@ internal ProductPolicyOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1043,6 +1030,19 @@ internal ProductPolicyOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1117,17 +1117,17 @@ internal ProductPolicyOperations(ApiManagementClient client) } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductSubscriptionsOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductSubscriptionsOperations.cs index 932606034240..336253e8f9c1 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductSubscriptionsOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ProductSubscriptionsOperations.cs @@ -119,17 +119,17 @@ internal ProductSubscriptionsOperations(ApiManagementClient client) } if (productId != null) { - if (productId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } if (productId.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PropertyOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PropertyOperations.cs index 21c6a0e54bbe..ab0302f10e0f 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PropertyOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/PropertyOperations.cs @@ -70,7 +70,7 @@ internal PropertyOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -210,14 +210,13 @@ internal PropertyOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -227,10 +226,6 @@ internal PropertyOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -337,13 +332,13 @@ internal PropertyOperations(ApiManagementClient client) } if (propId != null) { - if (propId.Length > 80) + if (propId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "propId", 80); + throw new ValidationException(ValidationRules.MaxLength, "propId", 256); } - if (!System.Text.RegularExpressions.Regex.IsMatch(propId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(propId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "propId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "propId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -558,13 +553,13 @@ internal PropertyOperations(ApiManagementClient client) } if (propId != null) { - if (propId.Length > 80) + if (propId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "propId", 80); + throw new ValidationException(ValidationRules.MaxLength, "propId", 256); } - if (!System.Text.RegularExpressions.Regex.IsMatch(propId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(propId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "propId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "propId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -773,7 +768,7 @@ internal PropertyOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string propId, PropertyContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string propId, PropertyContract parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -804,13 +799,13 @@ internal PropertyOperations(ApiManagementClient client) } if (propId != null) { - if (propId.Length > 80) + if (propId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "propId", 80); + throw new ValidationException(ValidationRules.MaxLength, "propId", 256); } - if (!System.Text.RegularExpressions.Regex.IsMatch(propId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(propId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "propId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "propId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -958,7 +953,7 @@ internal PropertyOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1001,6 +996,19 @@ internal PropertyOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1077,13 +1085,13 @@ internal PropertyOperations(ApiManagementClient client) } if (propId != null) { - if (propId.Length > 80) + if (propId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "propId", 80); + throw new ValidationException(ValidationRules.MaxLength, "propId", 256); } - if (!System.Text.RegularExpressions.Regex.IsMatch(propId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(propId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "propId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "propId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1311,13 +1319,13 @@ internal PropertyOperations(ApiManagementClient client) } if (propId != null) { - if (propId.Length > 80) + if (propId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "propId", 80); + throw new ValidationException(ValidationRules.MaxLength, "propId", 256); } - if (!System.Text.RegularExpressions.Regex.IsMatch(propId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(propId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "propId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "propId", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) @@ -1481,7 +1489,7 @@ internal PropertyOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -1577,14 +1585,13 @@ internal PropertyOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -1594,10 +1601,6 @@ internal PropertyOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/QuotaByCounterKeysOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/QuotaByCounterKeysOperations.cs index cb5e6ada246f..b943982084a9 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/QuotaByCounterKeysOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/QuotaByCounterKeysOperations.cs @@ -92,10 +92,6 @@ internal QuotaByCounterKeysOperations(ApiManagementClient client) /// public async Task> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, string quotaCounterKey, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); @@ -127,6 +123,10 @@ internal QuotaByCounterKeysOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -143,10 +143,10 @@ internal QuotaByCounterKeysOperations(ApiManagementClient client) // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/quotas/{quotaCounterKey}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); _url = _url.Replace("{quotaCounterKey}", System.Uri.EscapeDataString(quotaCounterKey)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/QuotaByPeriodKeysOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/QuotaByPeriodKeysOperations.cs index 9a81cc4b24f7..e972b60bfb8b 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/QuotaByPeriodKeysOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/QuotaByPeriodKeysOperations.cs @@ -94,10 +94,6 @@ internal QuotaByPeriodKeysOperations(ApiManagementClient client) /// public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string quotaCounterKey, string quotaPeriodKey, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); @@ -133,6 +129,10 @@ internal QuotaByPeriodKeysOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -150,11 +150,11 @@ internal QuotaByPeriodKeysOperations(ApiManagementClient client) // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/quotas/{quotaCounterKey}/periods/{quotaPeriodKey}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); _url = _url.Replace("{quotaCounterKey}", System.Uri.EscapeDataString(quotaCounterKey)); _url = _url.Replace("{quotaPeriodKey}", System.Uri.EscapeDataString(quotaPeriodKey)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/RegionsOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/RegionOperations.cs similarity index 92% rename from src/SDKs/ApiManagement/Management.ApiManagement/Generated/RegionsOperations.cs rename to src/SDKs/ApiManagement/Management.ApiManagement/Generated/RegionOperations.cs index 53d090d5dec1..65dade7c8a7e 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/RegionsOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/RegionOperations.cs @@ -23,12 +23,12 @@ namespace Microsoft.Azure.Management.ApiManagement using System.Threading.Tasks; /// - /// RegionsOperations operations. + /// RegionOperations operations. /// - internal partial class RegionsOperations : IServiceOperations, IRegionsOperations + internal partial class RegionOperations : IServiceOperations, IRegionOperations { /// - /// Initializes a new instance of the RegionsOperations class. + /// Initializes a new instance of the RegionOperations class. /// /// /// Reference to the service client. @@ -36,7 +36,7 @@ internal partial class RegionsOperations : IServiceOperations /// Thrown when a required parameter is null /// - internal RegionsOperations(ApiManagementClient client) + internal RegionOperations(ApiManagementClient client) { if (client == null) { @@ -65,7 +65,7 @@ internal RegionsOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -196,14 +196,13 @@ internal RegionsOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -213,10 +212,6 @@ internal RegionsOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -273,7 +268,7 @@ internal RegionsOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -369,14 +364,13 @@ internal RegionsOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -386,10 +380,6 @@ internal RegionsOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/RegionsOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/RegionOperationsExtensions.cs similarity index 86% rename from src/SDKs/ApiManagement/Management.ApiManagement/Generated/RegionsOperationsExtensions.cs rename to src/SDKs/ApiManagement/Management.ApiManagement/Generated/RegionOperationsExtensions.cs index 8aa5705a35d7..4982f2d06ecf 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/RegionsOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/RegionOperationsExtensions.cs @@ -17,9 +17,9 @@ namespace Microsoft.Azure.Management.ApiManagement using System.Threading.Tasks; /// - /// Extension methods for RegionsOperations. + /// Extension methods for RegionOperations. /// - public static partial class RegionsOperationsExtensions + public static partial class RegionOperationsExtensions { /// /// Lists all azure regions in which the service exists. @@ -33,7 +33,7 @@ public static partial class RegionsOperationsExtensions /// /// The name of the API Management service. /// - public static IPage ListByService(this IRegionsOperations operations, string resourceGroupName, string serviceName) + public static IPage ListByService(this IRegionOperations operations, string resourceGroupName, string serviceName) { return operations.ListByServiceAsync(resourceGroupName, serviceName).GetAwaiter().GetResult(); } @@ -53,7 +53,7 @@ public static IPage ListByService(this IRegionsOperations operat /// /// The cancellation token. /// - public static async Task> ListByServiceAsync(this IRegionsOperations operations, string resourceGroupName, string serviceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServiceAsync(this IRegionOperations operations, string resourceGroupName, string serviceName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, null, cancellationToken).ConfigureAwait(false)) { @@ -70,7 +70,7 @@ public static IPage ListByService(this IRegionsOperations operat /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListByServiceNext(this IRegionsOperations operations, string nextPageLink) + public static IPage ListByServiceNext(this IRegionOperations operations, string nextPageLink) { return operations.ListByServiceNextAsync(nextPageLink).GetAwaiter().GetResult(); } @@ -87,7 +87,7 @@ public static IPage ListByServiceNext(this IRegionsOperations op /// /// The cancellation token. /// - public static async Task> ListByServiceNextAsync(this IRegionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServiceNextAsync(this IRegionOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByServiceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ReportsOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ReportsOperations.cs index 52d54cea04bf..88b29a5f89f1 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ReportsOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ReportsOperations.cs @@ -962,15 +962,15 @@ internal ReportsOperations(ApiManagementClient client) /// /// Lists report records by geography. /// + /// + /// OData parameters to apply to the operation. + /// /// /// The name of the resource group. /// /// /// The name of the API Management service. /// - /// - /// OData parameters to apply to the operation. - /// /// /// Headers that will be added to request. /// @@ -992,8 +992,12 @@ internal ReportsOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByGeoWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByGeoWithHttpMessagesAsync(ODataQuery odataQuery, string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (odataQuery == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "odataQuery"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); @@ -1185,15 +1189,15 @@ internal ReportsOperations(ApiManagementClient client) /// /// Lists report records by subscription. /// + /// + /// OData parameters to apply to the operation. + /// /// /// The name of the resource group. /// /// /// The name of the API Management service. /// - /// - /// OData parameters to apply to the operation. - /// /// /// Headers that will be added to request. /// @@ -1215,8 +1219,12 @@ internal ReportsOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListBySubscriptionWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListBySubscriptionWithHttpMessagesAsync(ODataQuery odataQuery, string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (odataQuery == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "odataQuery"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); @@ -1408,6 +1416,9 @@ internal ReportsOperations(ApiManagementClient client) /// /// Lists report records by Time. /// + /// + /// OData parameters to apply to the operation. + /// /// /// The name of the resource group. /// @@ -1419,10 +1430,7 @@ internal ReportsOperations(ApiManagementClient client) /// zero. The value should be in ISO 8601 format /// (http://en.wikipedia.org/wiki/ISO_8601#Durations).This code can be used to /// convert TimeSpan to a valid interval string: XmlConvert.ToString(new - /// TimeSpan(hours, minutes, seconds)) - /// - /// - /// OData parameters to apply to the operation. + /// TimeSpan(hours, minutes, seconds)). /// /// /// Headers that will be added to request. @@ -1445,8 +1453,12 @@ internal ReportsOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByTimeWithHttpMessagesAsync(string resourceGroupName, string serviceName, System.TimeSpan interval, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByTimeWithHttpMessagesAsync(ODataQuery odataQuery, string resourceGroupName, string serviceName, System.TimeSpan interval, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (odataQuery == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "odataQuery"); + } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ReportsOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ReportsOperationsExtensions.cs index 6ece64300168..618258da8cad 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ReportsOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ReportsOperationsExtensions.cs @@ -214,18 +214,18 @@ public static IPage ListByProduct(this IReportsOperations /// /// The operations group for this extension method. /// + /// + /// OData parameters to apply to the operation. + /// /// /// The name of the resource group. /// /// /// The name of the API Management service. /// - /// - /// OData parameters to apply to the operation. - /// - public static IPage ListByGeo(this IReportsOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery)) + public static IPage ListByGeo(this IReportsOperations operations, ODataQuery odataQuery, string resourceGroupName, string serviceName) { - return operations.ListByGeoAsync(resourceGroupName, serviceName, odataQuery).GetAwaiter().GetResult(); + return operations.ListByGeoAsync(odataQuery, resourceGroupName, serviceName).GetAwaiter().GetResult(); } /// @@ -234,21 +234,21 @@ public static IPage ListByProduct(this IReportsOperations /// /// The operations group for this extension method. /// + /// + /// OData parameters to apply to the operation. + /// /// /// The name of the resource group. /// /// /// The name of the API Management service. /// - /// - /// OData parameters to apply to the operation. - /// /// /// The cancellation token. /// - public static async Task> ListByGeoAsync(this IReportsOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByGeoAsync(this IReportsOperations operations, ODataQuery odataQuery, string resourceGroupName, string serviceName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByGeoWithHttpMessagesAsync(resourceGroupName, serviceName, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByGeoWithHttpMessagesAsync(odataQuery, resourceGroupName, serviceName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -260,18 +260,18 @@ public static IPage ListByProduct(this IReportsOperations /// /// The operations group for this extension method. /// + /// + /// OData parameters to apply to the operation. + /// /// /// The name of the resource group. /// /// /// The name of the API Management service. /// - /// - /// OData parameters to apply to the operation. - /// - public static IPage ListBySubscription(this IReportsOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery)) + public static IPage ListBySubscription(this IReportsOperations operations, ODataQuery odataQuery, string resourceGroupName, string serviceName) { - return operations.ListBySubscriptionAsync(resourceGroupName, serviceName, odataQuery).GetAwaiter().GetResult(); + return operations.ListBySubscriptionAsync(odataQuery, resourceGroupName, serviceName).GetAwaiter().GetResult(); } /// @@ -280,21 +280,21 @@ public static IPage ListByProduct(this IReportsOperations /// /// The operations group for this extension method. /// + /// + /// OData parameters to apply to the operation. + /// /// /// The name of the resource group. /// /// /// The name of the API Management service. /// - /// - /// OData parameters to apply to the operation. - /// /// /// The cancellation token. /// - public static async Task> ListBySubscriptionAsync(this IReportsOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListBySubscriptionAsync(this IReportsOperations operations, ODataQuery odataQuery, string resourceGroupName, string serviceName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListBySubscriptionWithHttpMessagesAsync(resourceGroupName, serviceName, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListBySubscriptionWithHttpMessagesAsync(odataQuery, resourceGroupName, serviceName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -306,6 +306,9 @@ public static IPage ListByProduct(this IReportsOperations /// /// The operations group for this extension method. /// + /// + /// OData parameters to apply to the operation. + /// /// /// The name of the resource group. /// @@ -317,14 +320,11 @@ public static IPage ListByProduct(this IReportsOperations /// zero. The value should be in ISO 8601 format /// (http://en.wikipedia.org/wiki/ISO_8601#Durations).This code can be used to /// convert TimeSpan to a valid interval string: XmlConvert.ToString(new - /// TimeSpan(hours, minutes, seconds)) + /// TimeSpan(hours, minutes, seconds)). /// - /// - /// OData parameters to apply to the operation. - /// - public static IPage ListByTime(this IReportsOperations operations, string resourceGroupName, string serviceName, System.TimeSpan interval, ODataQuery odataQuery = default(ODataQuery)) + public static IPage ListByTime(this IReportsOperations operations, ODataQuery odataQuery, string resourceGroupName, string serviceName, System.TimeSpan interval) { - return operations.ListByTimeAsync(resourceGroupName, serviceName, interval, odataQuery).GetAwaiter().GetResult(); + return operations.ListByTimeAsync(odataQuery, resourceGroupName, serviceName, interval).GetAwaiter().GetResult(); } /// @@ -333,6 +333,9 @@ public static IPage ListByProduct(this IReportsOperations /// /// The operations group for this extension method. /// + /// + /// OData parameters to apply to the operation. + /// /// /// The name of the resource group. /// @@ -344,17 +347,14 @@ public static IPage ListByProduct(this IReportsOperations /// zero. The value should be in ISO 8601 format /// (http://en.wikipedia.org/wiki/ISO_8601#Durations).This code can be used to /// convert TimeSpan to a valid interval string: XmlConvert.ToString(new - /// TimeSpan(hours, minutes, seconds)) - /// - /// - /// OData parameters to apply to the operation. + /// TimeSpan(hours, minutes, seconds)). /// /// /// The cancellation token. /// - public static async Task> ListByTimeAsync(this IReportsOperations operations, string resourceGroupName, string serviceName, System.TimeSpan interval, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByTimeAsync(this IReportsOperations operations, ODataQuery odataQuery, string resourceGroupName, string serviceName, System.TimeSpan interval, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByTimeWithHttpMessagesAsync(resourceGroupName, serviceName, interval, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByTimeWithHttpMessagesAsync(odataQuery, resourceGroupName, serviceName, interval, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SdkInfo_ApiManagementClient.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SdkInfo_ApiManagementClient.cs index abf3ef2444cc..b7ffcbc2c5ec 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SdkInfo_ApiManagementClient.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SdkInfo_ApiManagementClient.cs @@ -19,66 +19,67 @@ public static IEnumerable> ApiInfo_ApiManagementCl { return new Tuple[] { - new Tuple("ApiManagement", "Api", "2018-01-01"), - new Tuple("ApiManagement", "ApiDiagnostic", "2018-01-01"), - new Tuple("ApiManagement", "ApiDiagnosticLogger", "2018-01-01"), - new Tuple("ApiManagement", "ApiExport", "2018-01-01"), - new Tuple("ApiManagement", "ApiIssue", "2018-01-01"), - new Tuple("ApiManagement", "ApiIssueAttachment", "2018-01-01"), - new Tuple("ApiManagement", "ApiIssueComment", "2018-01-01"), - new Tuple("ApiManagement", "ApiManagementOperations", "2018-01-01"), - new Tuple("ApiManagement", "ApiManagementService", "2018-01-01"), - new Tuple("ApiManagement", "ApiManagementServiceSkus", "2018-01-01"), - new Tuple("ApiManagement", "ApiOperation", "2018-01-01"), - new Tuple("ApiManagement", "ApiOperationPolicy", "2018-01-01"), - new Tuple("ApiManagement", "ApiPolicy", "2018-01-01"), - new Tuple("ApiManagement", "ApiProduct", "2018-01-01"), - new Tuple("ApiManagement", "ApiRelease", "2018-01-01"), - new Tuple("ApiManagement", "ApiRevisions", "2018-01-01"), - new Tuple("ApiManagement", "ApiSchema", "2018-01-01"), - new Tuple("ApiManagement", "ApiVersionSet", "2018-01-01"), - new Tuple("ApiManagement", "AuthorizationServer", "2018-01-01"), - new Tuple("ApiManagement", "Backend", "2018-01-01"), - new Tuple("ApiManagement", "Certificate", "2018-01-01"), - new Tuple("ApiManagement", "DelegationSettings", "2018-01-01"), - new Tuple("ApiManagement", "Diagnostic", "2018-01-01"), - new Tuple("ApiManagement", "DiagnosticLogger", "2018-01-01"), - new Tuple("ApiManagement", "EmailTemplate", "2018-01-01"), - new Tuple("ApiManagement", "Group", "2018-01-01"), - new Tuple("ApiManagement", "GroupUser", "2018-01-01"), - new Tuple("ApiManagement", "IdentityProvider", "2018-01-01"), - new Tuple("ApiManagement", "Logger", "2018-01-01"), - new Tuple("ApiManagement", "NetworkStatus", "2018-01-01"), - new Tuple("ApiManagement", "Notification", "2018-01-01"), - new Tuple("ApiManagement", "NotificationRecipientEmail", "2018-01-01"), - new Tuple("ApiManagement", "NotificationRecipientUser", "2018-01-01"), - new Tuple("ApiManagement", "OpenIdConnectProvider", "2018-01-01"), - new Tuple("ApiManagement", "Operation", "2018-01-01"), - new Tuple("ApiManagement", "Policy", "2018-01-01"), - new Tuple("ApiManagement", "PolicySnippets", "2018-01-01"), - new Tuple("ApiManagement", "Product", "2018-01-01"), - new Tuple("ApiManagement", "ProductApi", "2018-01-01"), - new Tuple("ApiManagement", "ProductGroup", "2018-01-01"), - new Tuple("ApiManagement", "ProductPolicy", "2018-01-01"), - new Tuple("ApiManagement", "ProductSubscriptions", "2018-01-01"), - new Tuple("ApiManagement", "Property", "2018-01-01"), - new Tuple("ApiManagement", "QuotaByCounterKeys", "2018-01-01"), - new Tuple("ApiManagement", "QuotaByPeriodKeys", "2018-01-01"), - new Tuple("ApiManagement", "Regions", "2018-01-01"), - new Tuple("ApiManagement", "Reports", "2018-01-01"), - new Tuple("ApiManagement", "SignInSettings", "2018-01-01"), - new Tuple("ApiManagement", "SignUpSettings", "2018-01-01"), - new Tuple("ApiManagement", "Subscription", "2018-01-01"), - new Tuple("ApiManagement", "Tag", "2018-01-01"), - new Tuple("ApiManagement", "TagDescription", "2018-01-01"), - new Tuple("ApiManagement", "TagResource", "2018-01-01"), - new Tuple("ApiManagement", "TenantAccess", "2018-01-01"), - new Tuple("ApiManagement", "TenantAccessGit", "2018-01-01"), - new Tuple("ApiManagement", "TenantConfiguration", "2018-01-01"), - new Tuple("ApiManagement", "User", "2018-01-01"), - new Tuple("ApiManagement", "UserGroup", "2018-01-01"), - new Tuple("ApiManagement", "UserIdentities", "2018-01-01"), - new Tuple("ApiManagement", "UserSubscription", "2018-01-01"), + new Tuple("ApiManagement", "Api", "2019-01-01"), + new Tuple("ApiManagement", "ApiDiagnostic", "2019-01-01"), + new Tuple("ApiManagement", "ApiExport", "2019-01-01"), + new Tuple("ApiManagement", "ApiIssue", "2019-01-01"), + new Tuple("ApiManagement", "ApiIssueAttachment", "2019-01-01"), + new Tuple("ApiManagement", "ApiIssueComment", "2019-01-01"), + new Tuple("ApiManagement", "ApiManagementOperations", "2019-01-01"), + new Tuple("ApiManagement", "ApiManagementService", "2019-01-01"), + new Tuple("ApiManagement", "ApiManagementServiceSkus", "2019-01-01"), + new Tuple("ApiManagement", "ApiOperation", "2019-01-01"), + new Tuple("ApiManagement", "ApiOperationPolicy", "2019-01-01"), + new Tuple("ApiManagement", "ApiPolicy", "2019-01-01"), + new Tuple("ApiManagement", "ApiProduct", "2019-01-01"), + new Tuple("ApiManagement", "ApiRelease", "2019-01-01"), + new Tuple("ApiManagement", "ApiRevision", "2019-01-01"), + new Tuple("ApiManagement", "ApiSchema", "2019-01-01"), + new Tuple("ApiManagement", "ApiTagDescription", "2019-01-01"), + new Tuple("ApiManagement", "ApiVersionSet", "2019-01-01"), + new Tuple("ApiManagement", "AuthorizationServer", "2019-01-01"), + new Tuple("ApiManagement", "Backend", "2019-01-01"), + new Tuple("ApiManagement", "Cache", "2019-01-01"), + new Tuple("ApiManagement", "Certificate", "2019-01-01"), + new Tuple("ApiManagement", "DelegationSettings", "2019-01-01"), + new Tuple("ApiManagement", "Diagnostic", "2019-01-01"), + new Tuple("ApiManagement", "EmailTemplate", "2019-01-01"), + new Tuple("ApiManagement", "Group", "2019-01-01"), + new Tuple("ApiManagement", "GroupUser", "2019-01-01"), + new Tuple("ApiManagement", "IdentityProvider", "2019-01-01"), + new Tuple("ApiManagement", "Issue", "2019-01-01"), + new Tuple("ApiManagement", "Logger", "2019-01-01"), + new Tuple("ApiManagement", "NetworkStatus", "2019-01-01"), + new Tuple("ApiManagement", "Notification", "2019-01-01"), + new Tuple("ApiManagement", "NotificationRecipientEmail", "2019-01-01"), + new Tuple("ApiManagement", "NotificationRecipientUser", "2019-01-01"), + new Tuple("ApiManagement", "OpenIdConnectProvider", "2019-01-01"), + new Tuple("ApiManagement", "Operation", "2019-01-01"), + new Tuple("ApiManagement", "Policy", "2019-01-01"), + new Tuple("ApiManagement", "PolicySnippet", "2019-01-01"), + new Tuple("ApiManagement", "Product", "2019-01-01"), + new Tuple("ApiManagement", "ProductApi", "2019-01-01"), + new Tuple("ApiManagement", "ProductGroup", "2019-01-01"), + new Tuple("ApiManagement", "ProductPolicy", "2019-01-01"), + new Tuple("ApiManagement", "ProductSubscriptions", "2019-01-01"), + new Tuple("ApiManagement", "Property", "2019-01-01"), + new Tuple("ApiManagement", "QuotaByCounterKeys", "2019-01-01"), + new Tuple("ApiManagement", "QuotaByPeriodKeys", "2019-01-01"), + new Tuple("ApiManagement", "Region", "2019-01-01"), + new Tuple("ApiManagement", "Reports", "2019-01-01"), + new Tuple("ApiManagement", "SignInSettings", "2019-01-01"), + new Tuple("ApiManagement", "SignUpSettings", "2019-01-01"), + new Tuple("ApiManagement", "Subscription", "2019-01-01"), + new Tuple("ApiManagement", "Tag", "2019-01-01"), + new Tuple("ApiManagement", "TagResource", "2019-01-01"), + new Tuple("ApiManagement", "TenantAccess", "2019-01-01"), + new Tuple("ApiManagement", "TenantAccessGit", "2019-01-01"), + new Tuple("ApiManagement", "TenantConfiguration", "2019-01-01"), + new Tuple("ApiManagement", "User", "2019-01-01"), + new Tuple("ApiManagement", "UserConfirmationPassword", "2019-01-01"), + new Tuple("ApiManagement", "UserGroup", "2019-01-01"), + new Tuple("ApiManagement", "UserIdentities", "2019-01-01"), + new Tuple("ApiManagement", "UserSubscription", "2019-01-01"), }.AsEnumerable(); } } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SignInSettingsOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SignInSettingsOperations.cs index d97ebb264962..0c99f6ccfe29 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SignInSettingsOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SignInSettingsOperations.cs @@ -249,7 +249,7 @@ internal SignInSettingsOperations(ApiManagementClient client) } /// - /// Get Sign-In settings. + /// Get Sign In Settings for the Portal /// /// /// The name of the resource group. @@ -263,7 +263,7 @@ internal SignInSettingsOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -394,14 +394,13 @@ internal SignInSettingsOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -411,10 +410,6 @@ internal SignInSettingsOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -701,6 +696,10 @@ internal SignInSettingsOperations(ApiManagementClient client) /// /// Create or update parameters. /// + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// /// /// Headers that will be added to request. /// @@ -722,7 +721,7 @@ internal SignInSettingsOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, PortalSigninSettings parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, PortalSigninSettings parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -769,6 +768,7 @@ internal SignInSettingsOperations(ApiManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("parameters", parameters); + tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } @@ -797,6 +797,14 @@ internal SignInSettingsOperations(ApiManagementClient client) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } + if (ifMatch != null) + { + if (_httpRequest.Headers.Contains("If-Match")) + { + _httpRequest.Headers.Remove("If-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SignInSettingsOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SignInSettingsOperationsExtensions.cs index b6d595b975c8..fd9377274afb 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SignInSettingsOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SignInSettingsOperationsExtensions.cs @@ -62,7 +62,7 @@ public static SignInSettingsGetEntityTagHeaders GetEntityTag(this ISignInSetting } /// - /// Get Sign-In settings. + /// Get Sign In Settings for the Portal /// /// /// The operations group for this extension method. @@ -79,7 +79,7 @@ public static PortalSigninSettings Get(this ISignInSettingsOperations operations } /// - /// Get Sign-In settings. + /// Get Sign In Settings for the Portal /// /// /// The operations group for this extension method. @@ -169,9 +169,13 @@ public static void Update(this ISignInSettingsOperations operations, string reso /// /// Create or update parameters. /// - public static PortalSigninSettings CreateOrUpdate(this ISignInSettingsOperations operations, string resourceGroupName, string serviceName, PortalSigninSettings parameters) + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// + public static PortalSigninSettings CreateOrUpdate(this ISignInSettingsOperations operations, string resourceGroupName, string serviceName, PortalSigninSettings parameters, string ifMatch = default(string)) { - return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, parameters).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, parameters, ifMatch).GetAwaiter().GetResult(); } /// @@ -189,12 +193,16 @@ public static PortalSigninSettings CreateOrUpdate(this ISignInSettingsOperations /// /// Create or update parameters. /// + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this ISignInSettingsOperations operations, string resourceGroupName, string serviceName, PortalSigninSettings parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this ISignInSettingsOperations operations, string resourceGroupName, string serviceName, PortalSigninSettings parameters, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SignUpSettingsOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SignUpSettingsOperations.cs index 5ca437c3ae16..e62d0e18b452 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SignUpSettingsOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SignUpSettingsOperations.cs @@ -249,7 +249,7 @@ internal SignUpSettingsOperations(ApiManagementClient client) } /// - /// Get Sign-Up settings. + /// Get Sign Up Settings for the Portal /// /// /// The name of the resource group. @@ -263,7 +263,7 @@ internal SignUpSettingsOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -394,14 +394,13 @@ internal SignUpSettingsOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -411,10 +410,6 @@ internal SignUpSettingsOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -701,6 +696,10 @@ internal SignUpSettingsOperations(ApiManagementClient client) /// /// Create or update parameters. /// + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// /// /// Headers that will be added to request. /// @@ -722,7 +721,7 @@ internal SignUpSettingsOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, PortalSignupSettings parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, PortalSignupSettings parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -769,6 +768,7 @@ internal SignUpSettingsOperations(ApiManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("parameters", parameters); + tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } @@ -797,6 +797,14 @@ internal SignUpSettingsOperations(ApiManagementClient client) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } + if (ifMatch != null) + { + if (_httpRequest.Headers.Contains("If-Match")) + { + _httpRequest.Headers.Remove("If-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SignUpSettingsOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SignUpSettingsOperationsExtensions.cs index 754d7391c6b9..a2c3d707ad97 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SignUpSettingsOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SignUpSettingsOperationsExtensions.cs @@ -62,7 +62,7 @@ public static SignUpSettingsGetEntityTagHeaders GetEntityTag(this ISignUpSetting } /// - /// Get Sign-Up settings. + /// Get Sign Up Settings for the Portal /// /// /// The operations group for this extension method. @@ -79,7 +79,7 @@ public static PortalSignupSettings Get(this ISignUpSettingsOperations operations } /// - /// Get Sign-Up settings. + /// Get Sign Up Settings for the Portal /// /// /// The operations group for this extension method. @@ -169,9 +169,13 @@ public static void Update(this ISignUpSettingsOperations operations, string reso /// /// Create or update parameters. /// - public static PortalSignupSettings CreateOrUpdate(this ISignUpSettingsOperations operations, string resourceGroupName, string serviceName, PortalSignupSettings parameters) + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// + public static PortalSignupSettings CreateOrUpdate(this ISignUpSettingsOperations operations, string resourceGroupName, string serviceName, PortalSignupSettings parameters, string ifMatch = default(string)) { - return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, parameters).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, parameters, ifMatch).GetAwaiter().GetResult(); } /// @@ -189,12 +193,16 @@ public static PortalSignupSettings CreateOrUpdate(this ISignUpSettingsOperations /// /// Create or update parameters. /// + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this ISignUpSettingsOperations operations, string resourceGroupName, string serviceName, PortalSignupSettings parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this ISignUpSettingsOperations operations, string resourceGroupName, string serviceName, PortalSignupSettings parameters, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SubscriptionOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SubscriptionOperations.cs index 91e8244e81a3..d238054cd84b 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SubscriptionOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/SubscriptionOperations.cs @@ -332,13 +332,13 @@ internal SubscriptionOperations(ApiManagementClient client) } if (sid != null) { - if (sid.Length > 80) + if (sid.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "sid", 80); + throw new ValidationException(ValidationRules.MaxLength, "sid", 256); } - if (!System.Text.RegularExpressions.Regex.IsMatch(sid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(sid, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "sid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "sid", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -554,13 +554,13 @@ internal SubscriptionOperations(ApiManagementClient client) } if (sid != null) { - if (sid.Length > 80) + if (sid.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "sid", 80); + throw new ValidationException(ValidationRules.MaxLength, "sid", 256); } - if (!System.Text.RegularExpressions.Regex.IsMatch(sid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(sid, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "sid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "sid", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -777,7 +777,7 @@ internal SubscriptionOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string sid, SubscriptionCreateParameters parameters, bool? notify = default(bool?), string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string sid, SubscriptionCreateParameters parameters, bool? notify = default(bool?), string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -808,13 +808,13 @@ internal SubscriptionOperations(ApiManagementClient client) } if (sid != null) { - if (sid.Length > 80) + if (sid.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "sid", 80); + throw new ValidationException(ValidationRules.MaxLength, "sid", 256); } - if (!System.Text.RegularExpressions.Regex.IsMatch(sid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(sid, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "sid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "sid", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -967,7 +967,7 @@ internal SubscriptionOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1010,6 +1010,19 @@ internal SubscriptionOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1093,13 +1106,13 @@ internal SubscriptionOperations(ApiManagementClient client) } if (sid != null) { - if (sid.Length > 80) + if (sid.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "sid", 80); + throw new ValidationException(ValidationRules.MaxLength, "sid", 256); } - if (!System.Text.RegularExpressions.Regex.IsMatch(sid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(sid, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "sid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "sid", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1333,13 +1346,13 @@ internal SubscriptionOperations(ApiManagementClient client) } if (sid != null) { - if (sid.Length > 80) + if (sid.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "sid", 80); + throw new ValidationException(ValidationRules.MaxLength, "sid", 256); } - if (!System.Text.RegularExpressions.Regex.IsMatch(sid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(sid, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "sid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "sid", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) @@ -1553,13 +1566,13 @@ internal SubscriptionOperations(ApiManagementClient client) } if (sid != null) { - if (sid.Length > 80) + if (sid.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "sid", 80); + throw new ValidationException(ValidationRules.MaxLength, "sid", 256); } - if (!System.Text.RegularExpressions.Regex.IsMatch(sid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(sid, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "sid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "sid", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -1760,13 +1773,13 @@ internal SubscriptionOperations(ApiManagementClient client) } if (sid != null) { - if (sid.Length > 80) + if (sid.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "sid", 80); + throw new ValidationException(ValidationRules.MaxLength, "sid", 256); } - if (!System.Text.RegularExpressions.Regex.IsMatch(sid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(sid, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "sid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "sid", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagOperations.cs index 4ec97ebc45e6..efedd42c5fc0 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagOperations.cs @@ -52,7 +52,7 @@ internal TagOperations(ApiManagementClient client) public ApiManagementClient Client { get; private set; } /// - /// Lists a collection of tags defined within a service instance. + /// Lists all Tags associated with the Operation. /// /// /// The name of the resource group. @@ -60,6 +60,15 @@ internal TagOperations(ApiManagementClient client) /// /// The name of the API Management service. /// + /// + /// 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 + /// Management service instance. + /// /// /// OData parameters to apply to the operation. /// @@ -69,7 +78,7 @@ internal TagOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -84,7 +93,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -109,6 +118,44 @@ internal TagOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } + if (apiId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); + } + if (apiId != null) + { + if (apiId.Length > 256) + { + 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, "^[^*#&+:<>?]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$"); + } + } + if (operationId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "operationId"); + } + if (operationId != null) + { + if (operationId.Length > 80) + { + throw new ValidationException(ValidationRules.MaxLength, "operationId", 80); + } + if (operationId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "operationId", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "^[^*#&+:<>?]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "operationId", "^[^*#&+:<>?]+$"); + } + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -127,14 +174,18 @@ internal TagOperations(ApiManagementClient client) tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); + tracingParameters.Add("apiId", apiId); + tracingParameters.Add("operationId", operationId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByService", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByOperation", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/tags").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/operations/{operationId}/tags").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); + _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); + _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (odataQuery != null) @@ -209,14 +260,13 @@ internal TagOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -226,10 +276,6 @@ internal TagOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -283,6 +329,15 @@ internal TagOperations(ApiManagementClient client) /// /// The name of the API Management service. /// + /// + /// 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 + /// Management service instance. + /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. @@ -305,7 +360,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetEntityStateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetEntityStateByOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -330,6 +385,44 @@ internal TagOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } + if (apiId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); + } + if (apiId != null) + { + if (apiId.Length > 256) + { + 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, "^[^*#&+:<>?]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$"); + } + } + if (operationId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "operationId"); + } + if (operationId != null) + { + if (operationId.Length > 80) + { + throw new ValidationException(ValidationRules.MaxLength, "operationId", 80); + } + if (operationId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "operationId", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "^[^*#&+:<>?]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "operationId", "^[^*#&+:<>?]+$"); + } + } if (tagId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "tagId"); @@ -344,9 +437,9 @@ internal TagOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -366,15 +459,19 @@ internal TagOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); + tracingParameters.Add("apiId", apiId); + tracingParameters.Add("operationId", operationId); tracingParameters.Add("tagId", tagId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetEntityState", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetEntityStateByOperation", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/tags/{tagId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/operations/{operationId}/tags/{tagId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); + _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); + _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); _url = _url.Replace("{tagId}", System.Uri.EscapeDataString(tagId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -470,7 +567,7 @@ internal TagOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationHeaderResponse(); + var _result = new AzureOperationHeaderResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -479,7 +576,7 @@ internal TagOperations(ApiManagementClient client) } try { - _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); } catch (JsonException ex) { @@ -498,7 +595,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Gets the details of the tag specified by its identifier. + /// Get tag associated with the Operation. /// /// /// The name of the resource group. @@ -506,6 +603,15 @@ internal TagOperations(ApiManagementClient client) /// /// The name of the API Management service. /// + /// + /// 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 + /// Management service instance. + /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. @@ -531,7 +637,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetByOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -556,6 +662,44 @@ internal TagOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } + if (apiId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); + } + if (apiId != null) + { + if (apiId.Length > 256) + { + 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, "^[^*#&+:<>?]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$"); + } + } + if (operationId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "operationId"); + } + if (operationId != null) + { + if (operationId.Length > 80) + { + throw new ValidationException(ValidationRules.MaxLength, "operationId", 80); + } + if (operationId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "operationId", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "^[^*#&+:<>?]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "operationId", "^[^*#&+:<>?]+$"); + } + } if (tagId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "tagId"); @@ -570,9 +714,9 @@ internal TagOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -592,15 +736,19 @@ internal TagOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); + tracingParameters.Add("apiId", apiId); + tracingParameters.Add("operationId", operationId); tracingParameters.Add("tagId", tagId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetByOperation", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/tags/{tagId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/operations/{operationId}/tags/{tagId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); + _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); + _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); _url = _url.Replace("{tagId}", System.Uri.EscapeDataString(tagId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -696,7 +844,7 @@ internal TagOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -723,7 +871,7 @@ internal TagOperations(ApiManagementClient client) } try { - _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); } catch (JsonException ex) { @@ -742,7 +890,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Creates a tag. + /// Assign tag to the Operation. /// /// /// The name of the resource group. @@ -750,13 +898,19 @@ internal TagOperations(ApiManagementClient client) /// /// The name of the API Management service. /// + /// + /// 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 + /// Management service instance. + /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// - /// - /// Create parameters. - /// /// /// Headers that will be added to request. /// @@ -778,7 +932,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, TagCreateUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> AssignToOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -803,6 +957,44 @@ internal TagOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } + if (apiId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); + } + if (apiId != null) + { + if (apiId.Length > 256) + { + 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, "^[^*#&+:<>?]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$"); + } + } + if (operationId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "operationId"); + } + if (operationId != null) + { + if (operationId.Length > 80) + { + throw new ValidationException(ValidationRules.MaxLength, "operationId", 80); + } + if (operationId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "operationId", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "^[^*#&+:<>?]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "operationId", "^[^*#&+:<>?]+$"); + } + } if (tagId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "tagId"); @@ -817,19 +1009,11 @@ internal TagOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -847,16 +1031,19 @@ internal TagOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); + tracingParameters.Add("apiId", apiId); + tracingParameters.Add("operationId", operationId); tracingParameters.Add("tagId", tagId); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "AssignToOperation", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/tags/{tagId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/operations/{operationId}/tags/{tagId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); + _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); + _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); _url = _url.Replace("{tagId}", System.Uri.EscapeDataString(tagId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -902,12 +1089,6 @@ internal TagOperations(ApiManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -1009,7 +1190,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Updates the details of the tag specified by its identifier. + /// Detach the tag from the Operation. /// /// /// The name of the resource group. @@ -1017,18 +1198,19 @@ internal TagOperations(ApiManagementClient client) /// /// The name of the API Management service. /// + /// + /// 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 + /// Management service instance. + /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// - /// - /// Update parameters. - /// - /// - /// ETag of the Entity. ETag should match the current entity state from the - /// header response of the GET request or it should be * for unconditional - /// update. - /// /// /// Headers that will be added to request. /// @@ -1047,7 +1229,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, TagCreateUpdateParameters parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DetachFromOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1072,6 +1254,44 @@ internal TagOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } + if (apiId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); + } + if (apiId != null) + { + if (apiId.Length > 256) + { + 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, "^[^*#&+:<>?]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$"); + } + } + if (operationId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "operationId"); + } + if (operationId != null) + { + if (operationId.Length > 80) + { + throw new ValidationException(ValidationRules.MaxLength, "operationId", 80); + } + if (operationId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "operationId", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "^[^*#&+:<>?]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "operationId", "^[^*#&+:<>?]+$"); + } + } if (tagId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "tagId"); @@ -1086,19 +1306,11 @@ internal TagOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (ifMatch == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "ifMatch"); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -1116,17 +1328,19 @@ internal TagOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); + tracingParameters.Add("apiId", apiId); + tracingParameters.Add("operationId", operationId); tracingParameters.Add("tagId", tagId); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DetachFromOperation", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/tags/{tagId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/operations/{operationId}/tags/{tagId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); + _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); + _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); _url = _url.Replace("{tagId}", System.Uri.EscapeDataString(tagId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -1141,21 +1355,13 @@ internal TagOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (ifMatch != null) - { - if (_httpRequest.Headers.Contains("If-Match")) - { - _httpRequest.Headers.Remove("If-Match"); - } - _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); - } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -1180,12 +1386,6 @@ internal TagOperations(ApiManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -1206,7 +1406,7 @@ internal TagOperations(ApiManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204) + if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1251,7 +1451,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Deletes specific tag of the API Management service instance. + /// Lists all Tags associated with the API. /// /// /// The name of the resource group. @@ -1259,14 +1459,13 @@ internal TagOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// Tag 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. /// - /// - /// ETag of the Entity. ETag should match the current entity state from the - /// header response of the GET request or it should be * for unconditional - /// update. + /// + /// OData parameters to apply to the operation. /// /// /// Headers that will be added to request. @@ -1277,6 +1476,9 @@ internal TagOperations(ApiManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -1286,7 +1488,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1311,29 +1513,25 @@ internal TagOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (tagId == null) + if (apiId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "tagId"); + throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); } - if (tagId != null) + if (apiId != null) { - if (tagId.Length > 80) + if (apiId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "tagId", 80); + throw new ValidationException(ValidationRules.MaxLength, "apiId", 256); } - if (tagId.Length < 1) + if (apiId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "tagId", 1); + throw new ValidationException(ValidationRules.MinLength, "apiId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$"); } } - if (ifMatch == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "ifMatch"); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -1349,21 +1547,29 @@ internal TagOperations(ApiManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("tagId", tagId); - tracingParameters.Add("ifMatch", ifMatch); + tracingParameters.Add("apiId", apiId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByApi", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/tags/{tagId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/tags").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{tagId}", System.Uri.EscapeDataString(tagId)); + _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -1375,21 +1581,13 @@ internal TagOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (ifMatch != null) - { - if (_httpRequest.Headers.Contains("If-Match")) - { - _httpRequest.Headers.Remove("If-Match"); - } - _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); - } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -1434,7 +1632,7 @@ internal TagOperations(ApiManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1464,13 +1662,31 @@ internal TagOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1479,7 +1695,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Lists all Tags associated with the API. + /// Gets the entity state version of the tag specified by its identifier. /// /// /// The name of the resource group. @@ -1492,8 +1708,9 @@ internal TagOperations(ApiManagementClient client) /// service instance. Non-current revision has ;rev=n as a suffix where n is /// the revision number. /// - /// - /// OData parameters to apply to the operation. + /// + /// Tag identifier. Must be unique in the current API Management service + /// instance. /// /// /// Headers that will be added to request. @@ -1504,9 +1721,6 @@ internal TagOperations(ApiManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -1516,7 +1730,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetEntityStateByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1560,6 +1774,25 @@ internal TagOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$"); } } + if (tagId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "tagId"); + } + if (tagId != null) + { + if (tagId.Length > 80) + { + throw new ValidationException(ValidationRules.MaxLength, "tagId", 80); + } + if (tagId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "tagId", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); + } + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -1575,29 +1808,22 @@ internal TagOperations(ApiManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("apiId", apiId); + tracingParameters.Add("tagId", tagId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByApi", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetEntityStateByApi", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/tags").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/tags/{tagId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); + _url = _url.Replace("{tagId}", System.Uri.EscapeDataString(tagId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (odataQuery != null) - { - var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) - { - _queryParameters.Add(_odataFilter); - } - } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -1609,7 +1835,7 @@ internal TagOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("HEAD"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1652,7 +1878,7 @@ internal TagOperations(ApiManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -1690,30 +1916,25 @@ internal TagOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationHeaderResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) + try { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + _httpResponse.Dispose(); } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); } if (_shouldTrace) { @@ -1723,7 +1944,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Gets the entity state version of the tag specified by its identifier. + /// Get tag associated with the API. /// /// /// The name of the resource group. @@ -1749,7 +1970,10 @@ internal TagOperations(ApiManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// + /// + /// Thrown when unable to deserialize the response + /// + /// /// Thrown when a required parameter is null /// /// @@ -1758,7 +1982,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetEntityStateByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1816,9 +2040,9 @@ internal TagOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -1841,7 +2065,7 @@ internal TagOperations(ApiManagementClient client) tracingParameters.Add("apiId", apiId); tracingParameters.Add("tagId", tagId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetEntityStateByApi", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetByApi", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -1863,7 +2087,7 @@ internal TagOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("HEAD"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1906,7 +2130,7 @@ internal TagOperations(ApiManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -1944,16 +2168,34 @@ internal TagOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationHeaderResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } try { - _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); } catch (JsonException ex) { @@ -1972,7 +2214,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Get tag associated with the API. + /// Assign tag to the Api. /// /// /// The name of the resource group. @@ -2010,7 +2252,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetByApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> AssignToApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2068,9 +2310,9 @@ internal TagOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -2093,7 +2335,7 @@ internal TagOperations(ApiManagementClient client) tracingParameters.Add("apiId", apiId); tracingParameters.Add("tagId", tagId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetByApi", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "AssignToApi", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -2115,7 +2357,7 @@ internal TagOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2166,7 +2408,7 @@ internal TagOperations(ApiManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2196,7 +2438,7 @@ internal TagOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2221,9 +2463,27 @@ internal TagOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } try { - _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); } catch (JsonException ex) { @@ -2242,7 +2502,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Assign tag to the Api. + /// Detach the tag from the Api. /// /// /// The name of the resource group. @@ -2259,10 +2519,6 @@ internal TagOperations(ApiManagementClient client) /// Tag identifier. Must be unique in the current API Management service /// instance. /// - /// - /// ETag of the Entity. Not required when creating an entity, but required when - /// updating an entity. - /// /// /// Headers that will be added to request. /// @@ -2272,9 +2528,6 @@ internal TagOperations(ApiManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -2284,7 +2537,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> AssignToApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DetachFromApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2342,9 +2595,9 @@ internal TagOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -2366,9 +2619,8 @@ internal TagOperations(ApiManagementClient client) tracingParameters.Add("serviceName", serviceName); tracingParameters.Add("apiId", apiId); tracingParameters.Add("tagId", tagId); - tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "AssignToApi", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DetachFromApi", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -2390,21 +2642,13 @@ internal TagOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (ifMatch != null) - { - if (_httpRequest.Headers.Contains("If-Match")) - { - _httpRequest.Headers.Remove("If-Match"); - } - _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); - } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -2449,7 +2693,7 @@ internal TagOperations(ApiManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2479,49 +2723,13 @@ internal TagOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -2530,7 +2738,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Detach the tag from the Api. + /// Lists all Tags associated with the Product. /// /// /// The name of the resource group. @@ -2538,19 +2746,12 @@ internal TagOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// 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 + /// + /// Product identifier. Must be unique in the current API Management service /// instance. /// - /// - /// ETag of the Entity. ETag should match the current entity state from the - /// header response of the GET request or it should be * for unconditional - /// update. + /// + /// OData parameters to apply to the operation. /// /// /// Headers that will be added to request. @@ -2561,6 +2762,9 @@ internal TagOperations(ApiManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -2570,7 +2774,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DetachFromApiWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string tagId, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2595,48 +2799,25 @@ internal TagOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (apiId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); - } - if (apiId != null) - { - if (apiId.Length > 256) - { - 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, "^[^*#&+:<>?]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$"); - } - } - if (tagId == null) + if (productId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "tagId"); + throw new ValidationException(ValidationRules.CannotBeNull, "productId"); } - if (tagId != null) + if (productId != null) { - if (tagId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "tagId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } - if (tagId.Length < 1) + if (productId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "tagId", 1); + throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } - if (ifMatch == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "ifMatch"); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -2652,23 +2833,29 @@ internal TagOperations(ApiManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("apiId", apiId); - tracingParameters.Add("tagId", tagId); - tracingParameters.Add("ifMatch", ifMatch); + tracingParameters.Add("productId", productId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DetachFromApi", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByProduct", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/tags/{tagId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/products/{productId}/tags").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); - _url = _url.Replace("{tagId}", System.Uri.EscapeDataString(tagId)); + _url = _url.Replace("{productId}", System.Uri.EscapeDataString(productId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -2680,21 +2867,13 @@ internal TagOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (ifMatch != null) - { - if (_httpRequest.Headers.Contains("If-Match")) - { - _httpRequest.Headers.Remove("If-Match"); - } - _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); - } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -2739,7 +2918,7 @@ internal TagOperations(ApiManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2769,13 +2948,31 @@ internal TagOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -2784,7 +2981,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Lists all Tags associated with the Operation. + /// Gets the entity state version of the tag specified by its identifier. /// /// /// The name of the resource group. @@ -2792,17 +2989,13 @@ internal TagOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// 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 - /// Management service instance. + /// + /// Product identifier. Must be unique in the current API Management service + /// instance. /// - /// - /// OData parameters to apply to the operation. + /// + /// Tag identifier. Must be unique in the current API Management service + /// instance. /// /// /// Headers that will be added to request. @@ -2813,9 +3006,6 @@ internal TagOperations(ApiManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -2825,7 +3015,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetEntityStateByProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2850,42 +3040,42 @@ internal TagOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (apiId == null) + if (productId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); + throw new ValidationException(ValidationRules.CannotBeNull, "productId"); } - if (apiId != null) + if (productId != null) { - if (apiId.Length > 256) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "apiId", 256); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } - if (apiId.Length < 1) + if (productId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "apiId", 1); + throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } - if (operationId == null) + if (tagId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "operationId"); + throw new ValidationException(ValidationRules.CannotBeNull, "tagId"); } - if (operationId != null) + if (tagId != null) { - if (operationId.Length > 80) + if (tagId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "operationId", 80); + throw new ValidationException(ValidationRules.MaxLength, "tagId", 80); } - if (operationId.Length < 1) + if (tagId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "operationId", 1); + throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "operationId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -2903,31 +3093,22 @@ internal TagOperations(ApiManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("apiId", apiId); - tracingParameters.Add("operationId", operationId); + tracingParameters.Add("productId", productId); + tracingParameters.Add("tagId", tagId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByOperation", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetEntityStateByProduct", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/operations/{operationId}/tags").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/products/{productId}/tags/{tagId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); - _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); + _url = _url.Replace("{productId}", System.Uri.EscapeDataString(productId)); + _url = _url.Replace("{tagId}", System.Uri.EscapeDataString(tagId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (odataQuery != null) - { - var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) - { - _queryParameters.Add(_odataFilter); - } - } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -2939,7 +3120,7 @@ internal TagOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("HEAD"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2982,7 +3163,7 @@ internal TagOperations(ApiManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -3020,30 +3201,25 @@ internal TagOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationHeaderResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) + try { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + _httpResponse.Dispose(); } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); } if (_shouldTrace) { @@ -3053,7 +3229,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Gets the entity state version of the tag specified by its identifier. + /// Get tag associated with the Product. /// /// /// The name of the resource group. @@ -3061,14 +3237,9 @@ internal TagOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// 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 - /// Management service instance. + /// + /// Product identifier. Must be unique in the current API Management service + /// instance. /// /// /// Tag identifier. Must be unique in the current API Management service @@ -3083,6 +3254,9 @@ internal TagOperations(ApiManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -3092,7 +3266,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetEntityStateByOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetByProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -3117,42 +3291,23 @@ internal TagOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (apiId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); - } - if (apiId != null) - { - if (apiId.Length > 256) - { - 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, "^[^*#&+:<>?]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$"); - } - } - if (operationId == null) + if (productId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "operationId"); + throw new ValidationException(ValidationRules.CannotBeNull, "productId"); } - if (operationId != null) + if (productId != null) { - if (operationId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "operationId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } - if (operationId.Length < 1) + if (productId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "operationId", 1); + throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "operationId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (tagId == null) @@ -3169,9 +3324,9 @@ internal TagOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -3191,19 +3346,17 @@ internal TagOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("apiId", apiId); - tracingParameters.Add("operationId", operationId); + tracingParameters.Add("productId", productId); tracingParameters.Add("tagId", tagId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetEntityStateByOperation", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetByProduct", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/operations/{operationId}/tags/{tagId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/products/{productId}/tags/{tagId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); - _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); + _url = _url.Replace("{productId}", System.Uri.EscapeDataString(productId)); _url = _url.Replace("{tagId}", System.Uri.EscapeDataString(tagId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -3218,7 +3371,7 @@ internal TagOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("HEAD"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3261,7 +3414,7 @@ internal TagOperations(ApiManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -3299,16 +3452,34 @@ internal TagOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationHeaderResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } try { - _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); } catch (JsonException ex) { @@ -3327,7 +3498,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Get tag associated with the Operation. + /// Assign tag to the Product. /// /// /// The name of the resource group. @@ -3335,14 +3506,9 @@ internal TagOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// 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 - /// Management service instance. + /// + /// Product identifier. Must be unique in the current API Management service + /// instance. /// /// /// Tag identifier. Must be unique in the current API Management service @@ -3369,7 +3535,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetByOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> AssignToProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -3394,42 +3560,23 @@ internal TagOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (apiId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); - } - if (apiId != null) - { - if (apiId.Length > 256) - { - 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, "^[^*#&+:<>?]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$"); - } - } - if (operationId == null) + if (productId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "operationId"); + throw new ValidationException(ValidationRules.CannotBeNull, "productId"); } - if (operationId != null) + if (productId != null) { - if (operationId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "operationId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } - if (operationId.Length < 1) + if (productId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "operationId", 1); + throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "operationId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (tagId == null) @@ -3446,9 +3593,9 @@ internal TagOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -3468,19 +3615,17 @@ internal TagOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("apiId", apiId); - tracingParameters.Add("operationId", operationId); + tracingParameters.Add("productId", productId); tracingParameters.Add("tagId", tagId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetByOperation", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "AssignToProduct", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/operations/{operationId}/tags/{tagId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/products/{productId}/tags/{tagId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); - _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); + _url = _url.Replace("{productId}", System.Uri.EscapeDataString(productId)); _url = _url.Replace("{tagId}", System.Uri.EscapeDataString(tagId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -3495,7 +3640,7 @@ internal TagOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3546,7 +3691,7 @@ internal TagOperations(ApiManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -3576,7 +3721,7 @@ internal TagOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -3601,18 +3746,23 @@ internal TagOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - try - { - _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); - } - catch (JsonException ex) + // Deserialize Response + if ((int)_statusCode == 201) { - _httpRequest.Dispose(); - if (_httpResponse != null) + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try { - _httpResponse.Dispose(); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } - throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); } if (_shouldTrace) { @@ -3622,7 +3772,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Assign tag to the Operation. + /// Detach the tag from the Product. /// /// /// The name of the resource group. @@ -3630,23 +3780,14 @@ internal TagOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// 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 - /// Management service instance. + /// + /// Product identifier. Must be unique in the current API Management service + /// instance. /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// - /// - /// ETag of the Entity. Not required when creating an entity, but required when - /// updating an entity. - /// /// /// Headers that will be added to request. /// @@ -3656,9 +3797,6 @@ internal TagOperations(ApiManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -3668,7 +3806,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> AssignToOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DetachFromProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -3693,42 +3831,23 @@ internal TagOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (apiId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); - } - if (apiId != null) - { - if (apiId.Length > 256) - { - 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, "^[^*#&+:<>?]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$"); - } - } - if (operationId == null) + if (productId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "operationId"); + throw new ValidationException(ValidationRules.CannotBeNull, "productId"); } - if (operationId != null) + if (productId != null) { - if (operationId.Length > 80) + if (productId.Length > 256) { - throw new ValidationException(ValidationRules.MaxLength, "operationId", 80); + throw new ValidationException(ValidationRules.MaxLength, "productId", 256); } - if (operationId.Length < 1) + if (productId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "operationId", 1); + throw new ValidationException(ValidationRules.MinLength, "productId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "operationId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "productId", "^[^*#&+:<>?]+$"); } } if (tagId == null) @@ -3745,9 +3864,9 @@ internal TagOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -3767,20 +3886,17 @@ internal TagOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("apiId", apiId); - tracingParameters.Add("operationId", operationId); + tracingParameters.Add("productId", productId); tracingParameters.Add("tagId", tagId); - tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "AssignToOperation", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DetachFromProduct", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/operations/{operationId}/tags/{tagId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/products/{productId}/tags/{tagId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); - _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); + _url = _url.Replace("{productId}", System.Uri.EscapeDataString(productId)); _url = _url.Replace("{tagId}", System.Uri.EscapeDataString(tagId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -3795,21 +3911,13 @@ internal TagOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (ifMatch != null) - { - if (_httpRequest.Headers.Contains("If-Match")) - { - _httpRequest.Headers.Remove("If-Match"); - } - _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); - } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -3854,7 +3962,7 @@ internal TagOperations(ApiManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -3884,49 +3992,13 @@ internal TagOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -3935,7 +4007,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Detach the tag from the Operation. + /// Lists a collection of tags defined within a service instance. /// /// /// The name of the resource group. @@ -3943,23 +4015,11 @@ internal TagOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// 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 - /// Management service instance. + /// + /// OData parameters to apply to the operation. /// - /// - /// Tag identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// ETag of the Entity. ETag should match the current entity state from the - /// header response of the GET request or it should be * for unconditional - /// update. + /// + /// Scope like 'apis', 'products' or 'apis/{apiId} /// /// /// Headers that will be added to request. @@ -3970,6 +4030,9 @@ internal TagOperations(ApiManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -3979,7 +4042,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DetachFromOperationWithHttpMessagesAsync(string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), string scope = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -4004,67 +4067,6 @@ internal TagOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (apiId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "apiId"); - } - if (apiId != null) - { - if (apiId.Length > 256) - { - 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, "^[^*#&+:<>?]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$"); - } - } - if (operationId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "operationId"); - } - if (operationId != null) - { - if (operationId.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "operationId", 80); - } - if (operationId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "operationId", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(operationId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) - { - throw new ValidationException(ValidationRules.Pattern, "operationId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); - } - } - if (tagId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "tagId"); - } - if (tagId != null) - { - if (tagId.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "tagId", 80); - } - if (tagId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "tagId", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) - { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); - } - } - if (ifMatch == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "ifMatch"); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -4080,25 +4082,32 @@ internal TagOperations(ApiManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("apiId", apiId); - tracingParameters.Add("operationId", operationId); - tracingParameters.Add("tagId", tagId); - tracingParameters.Add("ifMatch", ifMatch); + tracingParameters.Add("scope", scope); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DetachFromOperation", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByService", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/apis/{apiId}/operations/{operationId}/tags/{tagId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/tags").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{apiId}", System.Uri.EscapeDataString(apiId)); - _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); - _url = _url.Replace("{tagId}", System.Uri.EscapeDataString(tagId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } + if (scope != null) + { + _queryParameters.Add(string.Format("scope={0}", System.Uri.EscapeDataString(scope))); + } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -4110,21 +4119,13 @@ internal TagOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (ifMatch != null) - { - if (_httpRequest.Headers.Contains("If-Match")) - { - _httpRequest.Headers.Remove("If-Match"); - } - _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); - } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -4169,7 +4170,7 @@ internal TagOperations(ApiManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -4199,13 +4200,31 @@ internal TagOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -4214,7 +4233,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Lists all Tags associated with the Product. + /// Gets the entity state version of the tag specified by its identifier. /// /// /// The name of the resource group. @@ -4222,13 +4241,10 @@ internal TagOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management service + /// + /// Tag identifier. Must be unique in the current API Management service /// instance. /// - /// - /// OData parameters to apply to the operation. - /// /// /// Headers that will be added to request. /// @@ -4238,9 +4254,6 @@ internal TagOperations(ApiManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -4250,7 +4263,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetEntityStateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -4275,23 +4288,23 @@ internal TagOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (productId == null) + if (tagId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "productId"); + throw new ValidationException(ValidationRules.CannotBeNull, "tagId"); } - if (productId != null) + if (tagId != null) { - if (productId.Length > 80) + if (tagId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); + throw new ValidationException(ValidationRules.MaxLength, "tagId", 80); } - if (productId.Length < 1) + if (tagId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "productId", 1); + throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -4309,29 +4322,20 @@ internal TagOperations(ApiManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("productId", productId); + tracingParameters.Add("tagId", tagId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByProduct", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetEntityState", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/products/{productId}/tags").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/tags/{tagId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{productId}", System.Uri.EscapeDataString(productId)); + _url = _url.Replace("{tagId}", System.Uri.EscapeDataString(tagId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (odataQuery != null) - { - var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) - { - _queryParameters.Add(_odataFilter); - } - } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -4343,7 +4347,7 @@ internal TagOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("HEAD"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -4386,7 +4390,7 @@ internal TagOperations(ApiManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -4424,30 +4428,25 @@ internal TagOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationHeaderResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) + try { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + _httpResponse.Dispose(); } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); } if (_shouldTrace) { @@ -4457,7 +4456,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Gets the entity state version of the tag specified by its identifier. + /// Gets the details of the tag specified by its identifier. /// /// /// The name of the resource group. @@ -4465,10 +4464,6 @@ internal TagOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management service - /// instance. - /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. @@ -4482,6 +4477,9 @@ internal TagOperations(ApiManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -4491,7 +4489,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetEntityStateByProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -4516,25 +4514,6 @@ internal TagOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (productId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "productId"); - } - if (productId != null) - { - if (productId.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); - } - if (productId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "productId", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) - { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); - } - } if (tagId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "tagId"); @@ -4549,9 +4528,9 @@ internal TagOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -4571,17 +4550,15 @@ internal TagOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("productId", productId); tracingParameters.Add("tagId", tagId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetEntityStateByProduct", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/products/{productId}/tags/{tagId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/tags/{tagId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{productId}", System.Uri.EscapeDataString(productId)); _url = _url.Replace("{tagId}", System.Uri.EscapeDataString(tagId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -4596,7 +4573,7 @@ internal TagOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("HEAD"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -4639,7 +4616,7 @@ internal TagOperations(ApiManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -4677,16 +4654,34 @@ internal TagOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationHeaderResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } try { - _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); } catch (JsonException ex) { @@ -4705,7 +4700,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Get tag associated with the Product. + /// Creates a tag. /// /// /// The name of the resource group. @@ -4713,14 +4708,17 @@ internal TagOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management service - /// instance. - /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// + /// + /// Create parameters. + /// + /// + /// ETag of the Entity. Not required when creating an entity, but required when + /// updating an entity. + /// /// /// Headers that will be added to request. /// @@ -4742,7 +4740,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetByProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string tagId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, TagCreateUpdateParameters parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -4767,25 +4765,6 @@ internal TagOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (productId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "productId"); - } - if (productId != null) - { - if (productId.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); - } - if (productId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "productId", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) - { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); - } - } if (tagId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "tagId"); @@ -4800,11 +4779,19 @@ internal TagOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -4822,17 +4809,17 @@ internal TagOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("productId", productId); tracingParameters.Add("tagId", tagId); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetByProduct", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/products/{productId}/tags/{tagId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/tags/{tagId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{productId}", System.Uri.EscapeDataString(productId)); _url = _url.Replace("{tagId}", System.Uri.EscapeDataString(tagId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -4847,13 +4834,21 @@ internal TagOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } + if (ifMatch != null) + { + if (_httpRequest.Headers.Contains("If-Match")) + { + _httpRequest.Headers.Remove("If-Match"); + } + _httpRequest.Headers.TryAddWithoutValidation("If-Match", ifMatch); + } if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) @@ -4878,6 +4873,12 @@ internal TagOperations(ApiManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -4898,7 +4899,7 @@ internal TagOperations(ApiManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -4928,7 +4929,7 @@ internal TagOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -4953,9 +4954,27 @@ internal TagOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } try { - _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); } catch (JsonException ex) { @@ -4974,7 +4993,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Assign tag to the Product. + /// Updates the details of the tag specified by its identifier. /// /// /// The name of the resource group. @@ -4982,17 +5001,17 @@ internal TagOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management service - /// instance. - /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// + /// + /// Update parameters. + /// /// - /// ETag of the Entity. Not required when creating an entity, but required when - /// updating an entity. + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional + /// update. /// /// /// Headers that will be added to request. @@ -5003,9 +5022,6 @@ internal TagOperations(ApiManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -5015,7 +5031,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> AssignToProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string tagId, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, TagCreateUpdateParameters parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -5040,25 +5056,6 @@ internal TagOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (productId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "productId"); - } - if (productId != null) - { - if (productId.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); - } - if (productId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "productId", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) - { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); - } - } if (tagId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "tagId"); @@ -5073,11 +5070,19 @@ internal TagOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (ifMatch == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ifMatch"); + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -5095,18 +5100,17 @@ internal TagOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("productId", productId); tracingParameters.Add("tagId", tagId); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "AssignToProduct", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/products/{productId}/tags/{tagId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/tags/{tagId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{productId}", System.Uri.EscapeDataString(productId)); _url = _url.Replace("{tagId}", System.Uri.EscapeDataString(tagId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -5121,7 +5125,7 @@ internal TagOperations(ApiManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -5160,6 +5164,12 @@ internal TagOperations(ApiManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -5180,7 +5190,7 @@ internal TagOperations(ApiManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 204) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -5210,49 +5220,13 @@ internal TagOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -5261,7 +5235,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Detach the tag from the Product. + /// Deletes specific tag of the API Management service instance. /// /// /// The name of the resource group. @@ -5269,10 +5243,6 @@ internal TagOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management service - /// instance. - /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. @@ -5300,7 +5270,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DetachFromProductWithHttpMessagesAsync(string resourceGroupName, string serviceName, string productId, string tagId, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string tagId, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -5325,25 +5295,6 @@ internal TagOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (productId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "productId"); - } - if (productId != null) - { - if (productId.Length > 80) - { - throw new ValidationException(ValidationRules.MaxLength, "productId", 80); - } - if (productId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "productId", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(productId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) - { - throw new ValidationException(ValidationRules.Pattern, "productId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); - } - } if (tagId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "tagId"); @@ -5358,9 +5309,9 @@ internal TagOperations(ApiManagementClient client) { throw new ValidationException(ValidationRules.MinLength, "tagId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(tagId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "tagId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "tagId", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) @@ -5384,18 +5335,16 @@ internal TagOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("productId", productId); tracingParameters.Add("tagId", tagId); tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DetachFromProduct", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/products/{productId}/tags/{tagId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/tags/{tagId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{productId}", System.Uri.EscapeDataString(productId)); _url = _url.Replace("{tagId}", System.Uri.EscapeDataString(tagId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -5514,7 +5463,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Lists a collection of tags defined within a service instance. + /// Lists all Tags associated with the Operation. /// /// /// The NextLink from the previous successful call to List operation. @@ -5525,7 +5474,7 @@ internal TagOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -5540,7 +5489,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByOperationNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -5555,7 +5504,7 @@ internal TagOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByServiceNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByOperationNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -5621,14 +5570,13 @@ internal TagOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -5638,10 +5586,6 @@ internal TagOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -5855,7 +5799,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Lists all Tags associated with the Operation. + /// Lists all Tags associated with the Product. /// /// /// The NextLink from the previous successful call to List operation. @@ -5881,7 +5825,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByOperationNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByProductNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -5896,7 +5840,7 @@ internal TagOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByOperationNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByProductNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -6023,7 +5967,7 @@ internal TagOperations(ApiManagementClient client) } /// - /// Lists all Tags associated with the Product. + /// Lists a collection of tags defined within a service instance. /// /// /// The NextLink from the previous successful call to List operation. @@ -6049,7 +5993,7 @@ internal TagOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByProductNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServiceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -6064,7 +6008,7 @@ internal TagOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByProductNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByServiceNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagOperationsExtensions.cs index 012773dbcabd..52a3690c8ca9 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagOperationsExtensions.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Management.ApiManagement public static partial class TagOperationsExtensions { /// - /// Lists a collection of tags defined within a service instance. + /// Lists all Tags associated with the Operation. /// /// /// The operations group for this extension method. @@ -34,16 +34,25 @@ public static partial class TagOperationsExtensions /// /// The name of the API Management service. /// + /// + /// 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 + /// Management service instance. + /// /// /// OData parameters to apply to the operation. /// - public static IPage ListByService(this ITagOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery)) + public static IPage ListByOperation(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, ODataQuery odataQuery = default(ODataQuery)) { - return operations.ListByServiceAsync(resourceGroupName, serviceName, odataQuery).GetAwaiter().GetResult(); + return operations.ListByOperationAsync(resourceGroupName, serviceName, apiId, operationId, odataQuery).GetAwaiter().GetResult(); } /// - /// Lists a collection of tags defined within a service instance. + /// Lists all Tags associated with the Operation. /// /// /// The operations group for this extension method. @@ -54,15 +63,24 @@ public static partial class TagOperationsExtensions /// /// The name of the API Management service. /// + /// + /// 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 + /// Management service instance. + /// /// /// OData parameters to apply to the operation. /// /// /// The cancellation token. /// - public static async Task> ListByServiceAsync(this ITagOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByOperationAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByOperationWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, operationId, odataQuery, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -80,13 +98,22 @@ public static partial class TagOperationsExtensions /// /// The name of the API Management service. /// + /// + /// 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 + /// Management service instance. + /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// - public static TagGetEntityStateHeaders GetEntityState(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId) + public static TagGetEntityStateByOperationHeaders GetEntityStateByOperation(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, string tagId) { - return operations.GetEntityStateAsync(resourceGroupName, serviceName, tagId).GetAwaiter().GetResult(); + return operations.GetEntityStateByOperationAsync(resourceGroupName, serviceName, apiId, operationId, tagId).GetAwaiter().GetResult(); } /// @@ -101,6 +128,15 @@ public static TagGetEntityStateHeaders GetEntityState(this ITagOperations operat /// /// The name of the API Management service. /// + /// + /// 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 + /// Management service instance. + /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. @@ -108,16 +144,16 @@ public static TagGetEntityStateHeaders GetEntityState(this ITagOperations operat /// /// The cancellation token. /// - public static async Task GetEntityStateAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetEntityStateByOperationAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetEntityStateWithHttpMessagesAsync(resourceGroupName, serviceName, tagId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetEntityStateByOperationWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, operationId, tagId, null, cancellationToken).ConfigureAwait(false)) { return _result.Headers; } } /// - /// Gets the details of the tag specified by its identifier. + /// Get tag associated with the Operation. /// /// /// The operations group for this extension method. @@ -128,17 +164,26 @@ public static TagGetEntityStateHeaders GetEntityState(this ITagOperations operat /// /// The name of the API Management service. /// + /// + /// 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 + /// Management service instance. + /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// - public static TagContract Get(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId) + public static TagContract GetByOperation(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, string tagId) { - return operations.GetAsync(resourceGroupName, serviceName, tagId).GetAwaiter().GetResult(); + return operations.GetByOperationAsync(resourceGroupName, serviceName, apiId, operationId, tagId).GetAwaiter().GetResult(); } /// - /// Gets the details of the tag specified by its identifier. + /// Get tag associated with the Operation. /// /// /// The operations group for this extension method. @@ -149,6 +194,15 @@ public static TagContract Get(this ITagOperations operations, string resourceGro /// /// The name of the API Management service. /// + /// + /// 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 + /// Management service instance. + /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. @@ -156,16 +210,16 @@ public static TagContract Get(this ITagOperations operations, string resourceGro /// /// The cancellation token. /// - public static async Task GetAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetByOperationAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serviceName, tagId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetByOperationWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, operationId, tagId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Creates a tag. + /// Assign tag to the Operation. /// /// /// The operations group for this extension method. @@ -176,20 +230,26 @@ public static TagContract Get(this ITagOperations operations, string resourceGro /// /// The name of the API Management service. /// + /// + /// 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 + /// Management service instance. + /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// - /// - /// Create parameters. - /// - public static TagContract CreateOrUpdate(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId, TagCreateUpdateParameters parameters) + public static TagContract AssignToOperation(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, string tagId) { - return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, tagId, parameters).GetAwaiter().GetResult(); + return operations.AssignToOperationAsync(resourceGroupName, serviceName, apiId, operationId, tagId).GetAwaiter().GetResult(); } /// - /// Creates a tag. + /// Assign tag to the Operation. /// /// /// The operations group for this extension method. @@ -200,26 +260,32 @@ public static TagContract CreateOrUpdate(this ITagOperations operations, string /// /// The name of the API Management service. /// + /// + /// 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 + /// Management service instance. + /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// - /// - /// Create parameters. - /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId, TagCreateUpdateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task AssignToOperationAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, tagId, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.AssignToOperationWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, operationId, tagId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Updates the details of the tag specified by its identifier. + /// Detach the tag from the Operation. /// /// /// The operations group for this extension method. @@ -230,57 +296,26 @@ public static TagContract CreateOrUpdate(this ITagOperations operations, string /// /// The name of the API Management service. /// - /// - /// Tag identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// Update parameters. - /// - /// - /// ETag of the Entity. ETag should match the current entity state from the - /// header response of the GET request or it should be * for unconditional - /// update. - /// - public static void Update(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId, TagCreateUpdateParameters parameters, string ifMatch) - { - operations.UpdateAsync(resourceGroupName, serviceName, tagId, parameters, ifMatch).GetAwaiter().GetResult(); - } - - /// - /// Updates the details of the tag specified by its identifier. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. + /// + /// 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 name of the API Management service. + /// + /// Operation identifier within an API. Must be unique in the current API + /// Management service instance. /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// - /// - /// Update parameters. - /// - /// - /// ETag of the Entity. ETag should match the current entity state from the - /// header response of the GET request or it should be * for unconditional - /// update. - /// - /// - /// The cancellation token. - /// - public static async Task UpdateAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId, TagCreateUpdateParameters parameters, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) + public static void DetachFromOperation(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, string tagId) { - (await operations.UpdateWithHttpMessagesAsync(resourceGroupName, serviceName, tagId, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); + operations.DetachFromOperationAsync(resourceGroupName, serviceName, apiId, operationId, tagId).GetAwaiter().GetResult(); } /// - /// Deletes specific tag of the API Management service instance. + /// Detach the tag from the Operation. /// /// /// The operations group for this extension method. @@ -291,47 +326,25 @@ public static void Update(this ITagOperations operations, string resourceGroupNa /// /// The name of the API Management service. /// - /// - /// Tag identifier. Must be unique in the current API Management service - /// instance. - /// - /// - /// ETag of the Entity. ETag should match the current entity state from the - /// header response of the GET request or it should be * for unconditional - /// update. - /// - public static void Delete(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId, string ifMatch) - { - operations.DeleteAsync(resourceGroupName, serviceName, tagId, ifMatch).GetAwaiter().GetResult(); - } - - /// - /// Deletes specific tag of the API Management service instance. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. + /// + /// 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 name of the API Management service. + /// + /// Operation identifier within an API. Must be unique in the current API + /// Management service instance. /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// - /// - /// ETag of the Entity. ETag should match the current entity state from the - /// header response of the GET request or it should be * for unconditional - /// update. - /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DetachFromOperationAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, tagId, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DetachFromOperationWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, operationId, tagId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -527,13 +540,9 @@ public static TagContract GetByApi(this ITagOperations operations, string resour /// Tag identifier. Must be unique in the current API Management service /// instance. /// - /// - /// ETag of the Entity. Not required when creating an entity, but required when - /// updating an entity. - /// - public static TagContract AssignToApi(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId, string ifMatch = default(string)) + public static TagContract AssignToApi(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId) { - return operations.AssignToApiAsync(resourceGroupName, serviceName, apiId, tagId, ifMatch).GetAwaiter().GetResult(); + return operations.AssignToApiAsync(resourceGroupName, serviceName, apiId, tagId).GetAwaiter().GetResult(); } /// @@ -557,16 +566,12 @@ public static TagContract GetByApi(this ITagOperations operations, string resour /// Tag identifier. Must be unique in the current API Management service /// instance. /// - /// - /// ETag of the Entity. Not required when creating an entity, but required when - /// updating an entity. - /// /// /// The cancellation token. /// - public static async Task AssignToApiAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task AssignToApiAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.AssignToApiWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, tagId, ifMatch, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.AssignToApiWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, tagId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -593,14 +598,9 @@ public static TagContract GetByApi(this ITagOperations operations, string resour /// Tag identifier. Must be unique in the current API Management service /// instance. /// - /// - /// ETag of the Entity. ETag should match the current entity state from the - /// header response of the GET request or it should be * for unconditional - /// update. - /// - public static void DetachFromApi(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId, string ifMatch) + public static void DetachFromApi(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId) { - operations.DetachFromApiAsync(resourceGroupName, serviceName, apiId, tagId, ifMatch).GetAwaiter().GetResult(); + operations.DetachFromApiAsync(resourceGroupName, serviceName, apiId, tagId).GetAwaiter().GetResult(); } /// @@ -624,21 +624,16 @@ public static void DetachFromApi(this ITagOperations operations, string resource /// Tag identifier. Must be unique in the current API Management service /// instance. /// - /// - /// ETag of the Entity. ETag should match the current entity state from the - /// header response of the GET request or it should be * for unconditional - /// update. - /// /// /// The cancellation token. /// - public static async Task DetachFromApiAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DetachFromApiAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string tagId, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DetachFromApiWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, tagId, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DetachFromApiWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, tagId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Lists all Tags associated with the Operation. + /// Lists all Tags associated with the Product. /// /// /// The operations group for this extension method. @@ -649,25 +644,20 @@ public static void DetachFromApi(this ITagOperations operations, string resource /// /// The name of the API Management service. /// - /// - /// 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 - /// Management service instance. + /// + /// Product identifier. Must be unique in the current API Management service + /// instance. /// /// /// OData parameters to apply to the operation. /// - public static IPage ListByOperation(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, ODataQuery odataQuery = default(ODataQuery)) + public static IPage ListByProduct(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, ODataQuery odataQuery = default(ODataQuery)) { - return operations.ListByOperationAsync(resourceGroupName, serviceName, apiId, operationId, odataQuery).GetAwaiter().GetResult(); + return operations.ListByProductAsync(resourceGroupName, serviceName, productId, odataQuery).GetAwaiter().GetResult(); } /// - /// Lists all Tags associated with the Operation. + /// Lists all Tags associated with the Product. /// /// /// The operations group for this extension method. @@ -678,14 +668,9 @@ public static void DetachFromApi(this ITagOperations operations, string resource /// /// The name of the API Management service. /// - /// - /// 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 - /// Management service instance. + /// + /// Product identifier. Must be unique in the current API Management service + /// instance. /// /// /// OData parameters to apply to the operation. @@ -693,9 +678,9 @@ public static void DetachFromApi(this ITagOperations operations, string resource /// /// The cancellation token. /// - public static async Task> ListByOperationAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByProductAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByOperationWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, operationId, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByProductWithHttpMessagesAsync(resourceGroupName, serviceName, productId, odataQuery, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -713,22 +698,17 @@ public static void DetachFromApi(this ITagOperations operations, string resource /// /// The name of the API Management service. /// - /// - /// 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 - /// Management service instance. + /// + /// Product identifier. Must be unique in the current API Management service + /// instance. /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// - public static TagGetEntityStateByOperationHeaders GetEntityStateByOperation(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, string tagId) + public static TagGetEntityStateByProductHeaders GetEntityStateByProduct(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, string tagId) { - return operations.GetEntityStateByOperationAsync(resourceGroupName, serviceName, apiId, operationId, tagId).GetAwaiter().GetResult(); + return operations.GetEntityStateByProductAsync(resourceGroupName, serviceName, productId, tagId).GetAwaiter().GetResult(); } /// @@ -743,14 +723,9 @@ public static TagGetEntityStateByOperationHeaders GetEntityStateByOperation(this /// /// The name of the API Management service. /// - /// - /// 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 - /// Management service instance. + /// + /// Product identifier. Must be unique in the current API Management service + /// instance. /// /// /// Tag identifier. Must be unique in the current API Management service @@ -759,16 +734,16 @@ public static TagGetEntityStateByOperationHeaders GetEntityStateByOperation(this /// /// The cancellation token. /// - public static async Task GetEntityStateByOperationAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetEntityStateByProductAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, string tagId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetEntityStateByOperationWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, operationId, tagId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetEntityStateByProductWithHttpMessagesAsync(resourceGroupName, serviceName, productId, tagId, null, cancellationToken).ConfigureAwait(false)) { return _result.Headers; } } /// - /// Get tag associated with the Operation. + /// Get tag associated with the Product. /// /// /// The operations group for this extension method. @@ -779,26 +754,21 @@ public static TagGetEntityStateByOperationHeaders GetEntityStateByOperation(this /// /// The name of the API Management service. /// - /// - /// 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 - /// Management service instance. + /// + /// Product identifier. Must be unique in the current API Management service + /// instance. /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// - public static TagContract GetByOperation(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, string tagId) + public static TagContract GetByProduct(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, string tagId) { - return operations.GetByOperationAsync(resourceGroupName, serviceName, apiId, operationId, tagId).GetAwaiter().GetResult(); + return operations.GetByProductAsync(resourceGroupName, serviceName, productId, tagId).GetAwaiter().GetResult(); } /// - /// Get tag associated with the Operation. + /// Get tag associated with the Product. /// /// /// The operations group for this extension method. @@ -809,14 +779,9 @@ public static TagContract GetByOperation(this ITagOperations operations, string /// /// The name of the API Management service. /// - /// - /// 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 - /// Management service instance. + /// + /// Product identifier. Must be unique in the current API Management service + /// instance. /// /// /// Tag identifier. Must be unique in the current API Management service @@ -825,16 +790,16 @@ public static TagContract GetByOperation(this ITagOperations operations, string /// /// The cancellation token. /// - public static async Task GetByOperationAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetByProductAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, string tagId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetByOperationWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, operationId, tagId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetByProductWithHttpMessagesAsync(resourceGroupName, serviceName, productId, tagId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Assign tag to the Operation. + /// Assign tag to the Product. /// /// /// The operations group for this extension method. @@ -845,30 +810,21 @@ public static TagContract GetByOperation(this ITagOperations operations, string /// /// The name of the API Management service. /// - /// - /// 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 - /// Management service instance. + /// + /// Product identifier. Must be unique in the current API Management service + /// instance. /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// - /// - /// ETag of the Entity. Not required when creating an entity, but required when - /// updating an entity. - /// - public static TagContract AssignToOperation(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, string ifMatch = default(string)) + public static TagContract AssignToProduct(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, string tagId) { - return operations.AssignToOperationAsync(resourceGroupName, serviceName, apiId, operationId, tagId, ifMatch).GetAwaiter().GetResult(); + return operations.AssignToProductAsync(resourceGroupName, serviceName, productId, tagId).GetAwaiter().GetResult(); } /// - /// Assign tag to the Operation. + /// Assign tag to the Product. /// /// /// The operations group for this extension method. @@ -879,36 +835,27 @@ public static TagContract GetByOperation(this ITagOperations operations, string /// /// The name of the API Management service. /// - /// - /// 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 - /// Management service instance. + /// + /// Product identifier. Must be unique in the current API Management service + /// instance. /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// - /// - /// ETag of the Entity. Not required when creating an entity, but required when - /// updating an entity. - /// /// /// The cancellation token. /// - public static async Task AssignToOperationAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task AssignToProductAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, string tagId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.AssignToOperationWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, operationId, tagId, ifMatch, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.AssignToProductWithHttpMessagesAsync(resourceGroupName, serviceName, productId, tagId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Detach the tag from the Operation. + /// Detach the tag from the Product. /// /// /// The operations group for this extension method. @@ -919,31 +866,21 @@ public static TagContract GetByOperation(this ITagOperations operations, string /// /// The name of the API Management service. /// - /// - /// 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 - /// Management service instance. + /// + /// Product identifier. Must be unique in the current API Management service + /// instance. /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// - /// - /// ETag of the Entity. ETag should match the current entity state from the - /// header response of the GET request or it should be * for unconditional - /// update. - /// - public static void DetachFromOperation(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, string ifMatch) + public static void DetachFromProduct(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, string tagId) { - operations.DetachFromOperationAsync(resourceGroupName, serviceName, apiId, operationId, tagId, ifMatch).GetAwaiter().GetResult(); + operations.DetachFromProductAsync(resourceGroupName, serviceName, productId, tagId).GetAwaiter().GetResult(); } /// - /// Detach the tag from the Operation. + /// Detach the tag from the Product. /// /// /// The operations group for this extension method. @@ -954,34 +891,24 @@ public static void DetachFromOperation(this ITagOperations operations, string re /// /// The name of the API Management service. /// - /// - /// 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 - /// Management service instance. + /// + /// Product identifier. Must be unique in the current API Management service + /// instance. /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// - /// - /// ETag of the Entity. ETag should match the current entity state from the - /// header response of the GET request or it should be * for unconditional - /// update. - /// /// /// The cancellation token. /// - public static async Task DetachFromOperationAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string apiId, string operationId, string tagId, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DetachFromProductAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, string tagId, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DetachFromOperationWithHttpMessagesAsync(resourceGroupName, serviceName, apiId, operationId, tagId, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DetachFromProductWithHttpMessagesAsync(resourceGroupName, serviceName, productId, tagId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Lists all Tags associated with the Product. + /// Lists a collection of tags defined within a service instance. /// /// /// The operations group for this extension method. @@ -992,20 +919,19 @@ public static void DetachFromOperation(this ITagOperations operations, string re /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management service - /// instance. - /// /// /// OData parameters to apply to the operation. /// - public static IPage ListByProduct(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, ODataQuery odataQuery = default(ODataQuery)) + /// + /// Scope like 'apis', 'products' or 'apis/{apiId} + /// + public static IPage ListByService(this ITagOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), string scope = default(string)) { - return operations.ListByProductAsync(resourceGroupName, serviceName, productId, odataQuery).GetAwaiter().GetResult(); + return operations.ListByServiceAsync(resourceGroupName, serviceName, odataQuery, scope).GetAwaiter().GetResult(); } /// - /// Lists all Tags associated with the Product. + /// Lists a collection of tags defined within a service instance. /// /// /// The operations group for this extension method. @@ -1016,19 +942,18 @@ public static void DetachFromOperation(this ITagOperations operations, string re /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management service - /// instance. - /// /// /// OData parameters to apply to the operation. /// + /// + /// Scope like 'apis', 'products' or 'apis/{apiId} + /// /// /// The cancellation token. /// - public static async Task> ListByProductAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServiceAsync(this ITagOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), string scope = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByProductWithHttpMessagesAsync(resourceGroupName, serviceName, productId, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, odataQuery, scope, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1046,17 +971,13 @@ public static void DetachFromOperation(this ITagOperations operations, string re /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management service - /// instance. - /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// - public static TagGetEntityStateByProductHeaders GetEntityStateByProduct(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, string tagId) + public static TagGetEntityStateHeaders GetEntityState(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId) { - return operations.GetEntityStateByProductAsync(resourceGroupName, serviceName, productId, tagId).GetAwaiter().GetResult(); + return operations.GetEntityStateAsync(resourceGroupName, serviceName, tagId).GetAwaiter().GetResult(); } /// @@ -1071,10 +992,6 @@ public static TagGetEntityStateByProductHeaders GetEntityStateByProduct(this ITa /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management service - /// instance. - /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. @@ -1082,16 +999,16 @@ public static TagGetEntityStateByProductHeaders GetEntityStateByProduct(this ITa /// /// The cancellation token. /// - public static async Task GetEntityStateByProductAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, string tagId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetEntityStateAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetEntityStateByProductWithHttpMessagesAsync(resourceGroupName, serviceName, productId, tagId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetEntityStateWithHttpMessagesAsync(resourceGroupName, serviceName, tagId, null, cancellationToken).ConfigureAwait(false)) { return _result.Headers; } } /// - /// Get tag associated with the Product. + /// Gets the details of the tag specified by its identifier. /// /// /// The operations group for this extension method. @@ -1102,21 +1019,17 @@ public static TagGetEntityStateByProductHeaders GetEntityStateByProduct(this ITa /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management service - /// instance. - /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// - public static TagContract GetByProduct(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, string tagId) + public static TagContract Get(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId) { - return operations.GetByProductAsync(resourceGroupName, serviceName, productId, tagId).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, serviceName, tagId).GetAwaiter().GetResult(); } /// - /// Get tag associated with the Product. + /// Gets the details of the tag specified by its identifier. /// /// /// The operations group for this extension method. @@ -1127,10 +1040,6 @@ public static TagContract GetByProduct(this ITagOperations operations, string re /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management service - /// instance. - /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. @@ -1138,16 +1047,16 @@ public static TagContract GetByProduct(this ITagOperations operations, string re /// /// The cancellation token. /// - public static async Task GetByProductAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, string tagId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetByProductWithHttpMessagesAsync(resourceGroupName, serviceName, productId, tagId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serviceName, tagId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Assign tag to the Product. + /// Creates a tag. /// /// /// The operations group for this extension method. @@ -1158,25 +1067,24 @@ public static TagContract GetByProduct(this ITagOperations operations, string re /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management service - /// instance. - /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// + /// + /// Create parameters. + /// /// /// ETag of the Entity. Not required when creating an entity, but required when /// updating an entity. /// - public static TagContract AssignToProduct(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, string tagId, string ifMatch = default(string)) + public static TagContract CreateOrUpdate(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId, TagCreateUpdateParameters parameters, string ifMatch = default(string)) { - return operations.AssignToProductAsync(resourceGroupName, serviceName, productId, tagId, ifMatch).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, tagId, parameters, ifMatch).GetAwaiter().GetResult(); } /// - /// Assign tag to the Product. + /// Creates a tag. /// /// /// The operations group for this extension method. @@ -1187,14 +1095,13 @@ public static TagContract GetByProduct(this ITagOperations operations, string re /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management service - /// instance. - /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// + /// + /// Create parameters. + /// /// /// ETag of the Entity. Not required when creating an entity, but required when /// updating an entity. @@ -1202,16 +1109,16 @@ public static TagContract GetByProduct(this ITagOperations operations, string re /// /// The cancellation token. /// - public static async Task AssignToProductAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, string tagId, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId, TagCreateUpdateParameters parameters, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.AssignToProductWithHttpMessagesAsync(resourceGroupName, serviceName, productId, tagId, ifMatch, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, tagId, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Detach the tag from the Product. + /// Updates the details of the tag specified by its identifier. /// /// /// The operations group for this extension method. @@ -1222,26 +1129,57 @@ public static TagContract GetByProduct(this ITagOperations operations, string re /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management service + /// + /// Tag identifier. Must be unique in the current API Management service /// instance. /// + /// + /// Update parameters. + /// + /// + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional + /// update. + /// + public static void Update(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId, TagCreateUpdateParameters parameters, string ifMatch) + { + operations.UpdateAsync(resourceGroupName, serviceName, tagId, parameters, ifMatch).GetAwaiter().GetResult(); + } + + /// + /// Updates the details of the tag specified by its identifier. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. /// + /// + /// Update parameters. + /// /// /// ETag of the Entity. ETag should match the current entity state from the /// header response of the GET request or it should be * for unconditional /// update. /// - public static void DetachFromProduct(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, string tagId, string ifMatch) + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId, TagCreateUpdateParameters parameters, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) { - operations.DetachFromProductAsync(resourceGroupName, serviceName, productId, tagId, ifMatch).GetAwaiter().GetResult(); + (await operations.UpdateWithHttpMessagesAsync(resourceGroupName, serviceName, tagId, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Detach the tag from the Product. + /// Deletes specific tag of the API Management service instance. /// /// /// The operations group for this extension method. @@ -1252,10 +1190,32 @@ public static void DetachFromProduct(this ITagOperations operations, string reso /// /// The name of the API Management service. /// - /// - /// Product identifier. Must be unique in the current API Management service + /// + /// Tag identifier. Must be unique in the current API Management service /// instance. /// + /// + /// ETag of the Entity. ETag should match the current entity state from the + /// header response of the GET request or it should be * for unconditional + /// update. + /// + public static void Delete(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId, string ifMatch) + { + operations.DeleteAsync(resourceGroupName, serviceName, tagId, ifMatch).GetAwaiter().GetResult(); + } + + /// + /// Deletes specific tag of the API Management service instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// /// /// Tag identifier. Must be unique in the current API Management service /// instance. @@ -1268,13 +1228,13 @@ public static void DetachFromProduct(this ITagOperations operations, string reso /// /// The cancellation token. /// - public static async Task DetachFromProductAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string productId, string tagId, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this ITagOperations operations, string resourceGroupName, string serviceName, string tagId, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DetachFromProductWithHttpMessagesAsync(resourceGroupName, serviceName, productId, tagId, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, tagId, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Lists a collection of tags defined within a service instance. + /// Lists all Tags associated with the Operation. /// /// /// The operations group for this extension method. @@ -1282,13 +1242,13 @@ public static void DetachFromProduct(this ITagOperations operations, string reso /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListByServiceNext(this ITagOperations operations, string nextPageLink) + public static IPage ListByOperationNext(this ITagOperations operations, string nextPageLink) { - return operations.ListByServiceNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListByOperationNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists a collection of tags defined within a service instance. + /// Lists all Tags associated with the Operation. /// /// /// The operations group for this extension method. @@ -1299,9 +1259,9 @@ public static IPage ListByServiceNext(this ITagOperations operation /// /// The cancellation token. /// - public static async Task> ListByServiceNextAsync(this ITagOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByOperationNextAsync(this ITagOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByServiceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByOperationNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1342,7 +1302,7 @@ public static IPage ListByApiNext(this ITagOperations operations, s } /// - /// Lists all Tags associated with the Operation. + /// Lists all Tags associated with the Product. /// /// /// The operations group for this extension method. @@ -1350,13 +1310,13 @@ public static IPage ListByApiNext(this ITagOperations operations, s /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListByOperationNext(this ITagOperations operations, string nextPageLink) + public static IPage ListByProductNext(this ITagOperations operations, string nextPageLink) { - return operations.ListByOperationNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListByProductNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists all Tags associated with the Operation. + /// Lists all Tags associated with the Product. /// /// /// The operations group for this extension method. @@ -1367,16 +1327,16 @@ public static IPage ListByOperationNext(this ITagOperations operati /// /// The cancellation token. /// - public static async Task> ListByOperationNextAsync(this ITagOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByProductNextAsync(this ITagOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByOperationNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByProductNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all Tags associated with the Product. + /// Lists a collection of tags defined within a service instance. /// /// /// The operations group for this extension method. @@ -1384,13 +1344,13 @@ public static IPage ListByOperationNext(this ITagOperations operati /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListByProductNext(this ITagOperations operations, string nextPageLink) + public static IPage ListByServiceNext(this ITagOperations operations, string nextPageLink) { - return operations.ListByProductNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListByServiceNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists all Tags associated with the Product. + /// Lists a collection of tags defined within a service instance. /// /// /// The operations group for this extension method. @@ -1401,9 +1361,9 @@ public static IPage ListByProductNext(this ITagOperations operation /// /// The cancellation token. /// - public static async Task> ListByProductNextAsync(this ITagOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServiceNextAsync(this ITagOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByProductNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServiceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagResourceOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagResourceOperations.cs index 3dcf6e1b062f..7b9b99bfb203 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagResourceOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagResourceOperations.cs @@ -69,7 +69,7 @@ internal TagResourceOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -209,14 +209,13 @@ internal TagResourceOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -226,10 +225,6 @@ internal TagResourceOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -286,7 +281,7 @@ internal TagResourceOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -382,14 +377,13 @@ internal TagResourceOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -399,10 +393,6 @@ internal TagResourceOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TenantAccessOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TenantAccessOperations.cs index 9a3306343934..fe15fa1826a7 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TenantAccessOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TenantAccessOperations.cs @@ -51,7 +51,7 @@ internal TenantAccessOperations(ApiManagementClient client) public ApiManagementClient Client { get; private set; } /// - /// Get tenant access information details. + /// Tenant access metadata /// /// /// The name of the resource group. @@ -65,7 +65,208 @@ internal TenantAccessOperations(ApiManagementClient client) /// /// The cancellation token. /// - /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serviceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serviceName"); + } + if (serviceName != null) + { + if (serviceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "serviceName", 50); + } + if (serviceName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "serviceName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(serviceName, "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$")) + { + throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string accessName = "access"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serviceName", serviceName); + tracingParameters.Add("accessName", accessName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetEntityTag", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/tenant/{accessName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{accessName}", System.Uri.EscapeDataString(accessName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("HEAD"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationHeaderResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Get tenant access information details + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -199,14 +400,13 @@ internal TenantAccessOperations(ApiManagementClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -216,10 +416,6 @@ internal TenantAccessOperations(ApiManagementClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -498,7 +694,7 @@ internal TenantAccessOperations(ApiManagementClient client) } /// - /// Regenerate primary access key. + /// Regenerate primary access key /// /// /// The name of the resource group. @@ -686,7 +882,7 @@ internal TenantAccessOperations(ApiManagementClient client) } /// - /// Regenerate secondary access key. + /// Regenerate secondary access key /// /// /// The name of the resource group. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TenantAccessOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TenantAccessOperationsExtensions.cs index c944baf186c1..27fdddb10b6a 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TenantAccessOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TenantAccessOperationsExtensions.cs @@ -22,7 +22,47 @@ namespace Microsoft.Azure.Management.ApiManagement public static partial class TenantAccessOperationsExtensions { /// - /// Get tenant access information details. + /// Tenant access metadata + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + public static TenantAccessGetEntityTagHeaders GetEntityTag(this ITenantAccessOperations operations, string resourceGroupName, string serviceName) + { + return operations.GetEntityTagAsync(resourceGroupName, serviceName).GetAwaiter().GetResult(); + } + + /// + /// Tenant access metadata + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// The cancellation token. + /// + public static async Task GetEntityTagAsync(this ITenantAccessOperations operations, string resourceGroupName, string serviceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetEntityTagWithHttpMessagesAsync(resourceGroupName, serviceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Headers; + } + } + + /// + /// Get tenant access information details /// /// /// The operations group for this extension method. @@ -39,7 +79,7 @@ public static AccessInformationContract Get(this ITenantAccessOperations operati } /// - /// Get tenant access information details. + /// Get tenant access information details /// /// /// The operations group for this extension method. @@ -115,7 +155,7 @@ public static void Update(this ITenantAccessOperations operations, string resour } /// - /// Regenerate primary access key. + /// Regenerate primary access key /// /// /// The operations group for this extension method. @@ -132,7 +172,7 @@ public static void RegeneratePrimaryKey(this ITenantAccessOperations operations, } /// - /// Regenerate primary access key. + /// Regenerate primary access key /// /// /// The operations group for this extension method. @@ -152,7 +192,7 @@ public static void RegeneratePrimaryKey(this ITenantAccessOperations operations, } /// - /// Regenerate secondary access key. + /// Regenerate secondary access key /// /// /// The operations group for this extension method. @@ -169,7 +209,7 @@ public static void RegenerateSecondaryKey(this ITenantAccessOperations operation } /// - /// Regenerate secondary access key. + /// Regenerate secondary access key /// /// /// The operations group for this extension method. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserConfirmationPasswordOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserConfirmationPasswordOperations.cs new file mode 100644 index 000000000000..91d2cec232a9 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserConfirmationPasswordOperations.cs @@ -0,0 +1,264 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// UserConfirmationPasswordOperations operations. + /// + internal partial class UserConfirmationPasswordOperations : IServiceOperations, IUserConfirmationPasswordOperations + { + /// + /// Initializes a new instance of the UserConfirmationPasswordOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal UserConfirmationPasswordOperations(ApiManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ApiManagementClient + /// + public ApiManagementClient Client { get; private set; } + + /// + /// Sends confirmation + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// User identifier. Must be unique in the current API Management service + /// instance. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task SendWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serviceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serviceName"); + } + if (serviceName != null) + { + if (serviceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "serviceName", 50); + } + if (serviceName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "serviceName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(serviceName, "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$")) + { + throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); + } + } + if (userId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "userId"); + } + if (userId != null) + { + if (userId.Length > 80) + { + throw new ValidationException(ValidationRules.MaxLength, "userId", 80); + } + if (userId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "userId", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(userId, "^[^*#&+:<>?]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "userId", "^[^*#&+:<>?]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serviceName", serviceName); + tracingParameters.Add("userId", userId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Send", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{userId}/confirmations/password/send").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); + _url = _url.Replace("{userId}", System.Uri.EscapeDataString(userId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserConfirmationPasswordOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserConfirmationPasswordOperationsExtensions.cs new file mode 100644 index 000000000000..77e5f271b1ae --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserConfirmationPasswordOperationsExtensions.cs @@ -0,0 +1,70 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ApiManagement +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for UserConfirmationPasswordOperations. + /// + public static partial class UserConfirmationPasswordOperationsExtensions + { + /// + /// Sends confirmation + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// User identifier. Must be unique in the current API Management service + /// instance. + /// + public static void Send(this IUserConfirmationPasswordOperations operations, string resourceGroupName, string serviceName, string userId) + { + operations.SendAsync(resourceGroupName, serviceName, userId).GetAwaiter().GetResult(); + } + + /// + /// Sends confirmation + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the API Management service. + /// + /// + /// User identifier. Must be unique in the current API Management service + /// instance. + /// + /// + /// The cancellation token. + /// + public static async Task SendAsync(this IUserConfirmationPasswordOperations operations, string resourceGroupName, string serviceName, string userId, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.SendWithHttpMessagesAsync(resourceGroupName, serviceName, userId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + } +} diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserGroupOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserGroupOperations.cs index 1a7546136738..759080814b69 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserGroupOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserGroupOperations.cs @@ -60,7 +60,7 @@ internal UserGroupOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -88,7 +88,7 @@ internal UserGroupOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -113,23 +113,23 @@ internal UserGroupOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (uid == null) + if (userId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "uid"); + throw new ValidationException(ValidationRules.CannotBeNull, "userId"); } - if (uid != null) + if (userId != null) { - if (uid.Length > 80) + if (userId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "uid", 80); + throw new ValidationException(ValidationRules.MaxLength, "userId", 80); } - if (uid.Length < 1) + if (userId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "uid", 1); + throw new ValidationException(ValidationRules.MinLength, "userId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(uid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(userId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "uid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "userId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -150,16 +150,16 @@ internal UserGroupOperations(ApiManagementClient client) tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("uid", uid); + tracingParameters.Add("userId", userId); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{uid}/groups").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{userId}/groups").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{uid}", System.Uri.EscapeDataString(uid)); + _url = _url.Replace("{userId}", System.Uri.EscapeDataString(userId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (odataQuery != null) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserGroupOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserGroupOperationsExtensions.cs index b27201d2d978..0bb258033a39 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserGroupOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserGroupOperationsExtensions.cs @@ -34,16 +34,16 @@ public static partial class UserGroupOperationsExtensions /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// /// /// OData parameters to apply to the operation. /// - public static IPage List(this IUserGroupOperations operations, string resourceGroupName, string serviceName, string uid, ODataQuery odataQuery = default(ODataQuery)) + public static IPage List(this IUserGroupOperations operations, string resourceGroupName, string serviceName, string userId, ODataQuery odataQuery = default(ODataQuery)) { - return operations.ListAsync(resourceGroupName, serviceName, uid, odataQuery).GetAwaiter().GetResult(); + return operations.ListAsync(resourceGroupName, serviceName, userId, odataQuery).GetAwaiter().GetResult(); } /// @@ -58,7 +58,7 @@ public static partial class UserGroupOperationsExtensions /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -68,9 +68,9 @@ public static partial class UserGroupOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListAsync(this IUserGroupOperations operations, string resourceGroupName, string serviceName, string uid, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IUserGroupOperations operations, string resourceGroupName, string serviceName, string userId, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, serviceName, uid, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, serviceName, userId, odataQuery, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserIdentitiesOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserIdentitiesOperations.cs index 5d4a1cdf1552..331f26d9404c 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserIdentitiesOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserIdentitiesOperations.cs @@ -51,7 +51,7 @@ internal UserIdentitiesOperations(ApiManagementClient client) public ApiManagementClient Client { get; private set; } /// - /// Lists all user identities. + /// List of all user identities. /// /// /// The name of the resource group. @@ -59,7 +59,7 @@ internal UserIdentitiesOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -84,7 +84,7 @@ internal UserIdentitiesOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -109,23 +109,23 @@ internal UserIdentitiesOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (uid == null) + if (userId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "uid"); + throw new ValidationException(ValidationRules.CannotBeNull, "userId"); } - if (uid != null) + if (userId != null) { - if (uid.Length > 80) + if (userId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "uid", 80); + throw new ValidationException(ValidationRules.MaxLength, "userId", 80); } - if (uid.Length < 1) + if (userId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "uid", 1); + throw new ValidationException(ValidationRules.MinLength, "userId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(uid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(userId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "uid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "userId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -145,16 +145,16 @@ internal UserIdentitiesOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("uid", uid); + tracingParameters.Add("userId", userId); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{uid}/identities").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{userId}/identities").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{uid}", System.Uri.EscapeDataString(uid)); + _url = _url.Replace("{userId}", System.Uri.EscapeDataString(userId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -282,7 +282,7 @@ internal UserIdentitiesOperations(ApiManagementClient client) } /// - /// Lists all user identities. + /// List of all user identities. /// /// /// The NextLink from the previous successful call to List operation. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserIdentitiesOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserIdentitiesOperationsExtensions.cs index 4ef433a5a3d4..e095a7bfd6a9 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserIdentitiesOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserIdentitiesOperationsExtensions.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Management.ApiManagement public static partial class UserIdentitiesOperationsExtensions { /// - /// Lists all user identities. + /// List of all user identities. /// /// /// The operations group for this extension method. @@ -33,17 +33,17 @@ public static partial class UserIdentitiesOperationsExtensions /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// - public static IPage List(this IUserIdentitiesOperations operations, string resourceGroupName, string serviceName, string uid) + public static IPage List(this IUserIdentitiesOperations operations, string resourceGroupName, string serviceName, string userId) { - return operations.ListAsync(resourceGroupName, serviceName, uid).GetAwaiter().GetResult(); + return operations.ListAsync(resourceGroupName, serviceName, userId).GetAwaiter().GetResult(); } /// - /// Lists all user identities. + /// List of all user identities. /// /// /// The operations group for this extension method. @@ -54,23 +54,23 @@ public static IPage List(this IUserIdentitiesOperations op /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IUserIdentitiesOperations operations, string resourceGroupName, string serviceName, string uid, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IUserIdentitiesOperations operations, string resourceGroupName, string serviceName, string userId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, serviceName, uid, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, serviceName, userId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all user identities. + /// List of all user identities. /// /// /// The operations group for this extension method. @@ -84,7 +84,7 @@ public static IPage ListNext(this IUserIdentitiesOperation } /// - /// Lists all user identities. + /// List of all user identities. /// /// /// The operations group for this extension method. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserOperations.cs index bb8bd6a76ff9..ddc942338bae 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserOperations.cs @@ -51,212 +51,6 @@ internal UserOperations(ApiManagementClient client) /// public ApiManagementClient Client { get; private set; } - /// - /// Returns calling user identity information. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> GetIdentityWithHttpMessagesAsync(string resourceGroupName, string serviceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serviceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "serviceName"); - } - if (serviceName != null) - { - if (serviceName.Length > 50) - { - throw new ValidationException(ValidationRules.MaxLength, "serviceName", 50); - } - if (serviceName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "serviceName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(serviceName, "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$")) - { - throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); - } - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetIdentity", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/identity").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (Client.ApiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - /// /// Lists a collection of registered users in the specified service instance. /// @@ -269,6 +63,9 @@ internal UserOperations(ApiManagementClient client) /// /// OData parameters to apply to the operation. /// + /// + /// Detailed Group in response. + /// /// /// Headers that will be added to request. /// @@ -290,7 +87,7 @@ internal UserOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServiceWithHttpMessagesAsync(string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? expandGroups = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -333,6 +130,7 @@ internal UserOperations(ApiManagementClient client) tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); + tracingParameters.Add("expandGroups", expandGroups); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByService", tracingParameters); } @@ -351,6 +149,10 @@ internal UserOperations(ApiManagementClient client) _queryParameters.Add(_odataFilter); } } + if (expandGroups != null) + { + _queryParameters.Add(string.Format("expandGroups={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expandGroups, Client.SerializationSettings).Trim('"')))); + } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -485,7 +287,7 @@ internal UserOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -507,7 +309,7 @@ internal UserOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetEntityTagWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -532,23 +334,23 @@ internal UserOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (uid == null) + if (userId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "uid"); + throw new ValidationException(ValidationRules.CannotBeNull, "userId"); } - if (uid != null) + if (userId != null) { - if (uid.Length > 80) + if (userId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "uid", 80); + throw new ValidationException(ValidationRules.MaxLength, "userId", 80); } - if (uid.Length < 1) + if (userId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "uid", 1); + throw new ValidationException(ValidationRules.MinLength, "userId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(uid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(userId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "uid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "userId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -568,16 +370,16 @@ internal UserOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("uid", uid); + tracingParameters.Add("userId", userId); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "GetEntityTag", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{uid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{userId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{uid}", System.Uri.EscapeDataString(uid)); + _url = _url.Replace("{userId}", System.Uri.EscapeDataString(userId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -708,7 +510,7 @@ internal UserOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -733,7 +535,7 @@ internal UserOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -758,23 +560,23 @@ internal UserOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (uid == null) + if (userId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "uid"); + throw new ValidationException(ValidationRules.CannotBeNull, "userId"); } - if (uid != null) + if (userId != null) { - if (uid.Length > 80) + if (userId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "uid", 80); + throw new ValidationException(ValidationRules.MaxLength, "userId", 80); } - if (uid.Length < 1) + if (userId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "uid", 1); + throw new ValidationException(ValidationRules.MinLength, "userId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(uid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(userId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "uid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "userId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -794,16 +596,16 @@ internal UserOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("uid", uid); + tracingParameters.Add("userId", userId); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{uid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{userId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{uid}", System.Uri.EscapeDataString(uid)); + _url = _url.Replace("{userId}", System.Uri.EscapeDataString(userId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -952,7 +754,7 @@ internal UserOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -984,7 +786,7 @@ internal UserOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, UserCreateParameters parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, UserCreateParameters parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1009,23 +811,23 @@ internal UserOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (uid == null) + if (userId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "uid"); + throw new ValidationException(ValidationRules.CannotBeNull, "userId"); } - if (uid != null) + if (userId != null) { - if (uid.Length > 80) + if (userId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "uid", 80); + throw new ValidationException(ValidationRules.MaxLength, "userId", 80); } - if (uid.Length < 1) + if (userId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "uid", 1); + throw new ValidationException(ValidationRules.MinLength, "userId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(uid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(userId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "uid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "userId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1053,7 +855,7 @@ internal UserOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("uid", uid); + tracingParameters.Add("userId", userId); tracingParameters.Add("parameters", parameters); tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); @@ -1061,10 +863,10 @@ internal UserOperations(ApiManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{uid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{userId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{uid}", System.Uri.EscapeDataString(uid)); + _url = _url.Replace("{userId}", System.Uri.EscapeDataString(userId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -1173,7 +975,7 @@ internal UserOperations(ApiManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1216,6 +1018,19 @@ internal UserOperations(ApiManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1232,7 +1047,7 @@ internal UserOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -1262,7 +1077,7 @@ internal UserOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, UserUpdateParameters parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task UpdateWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, UserUpdateParameters parameters, string ifMatch, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1287,23 +1102,23 @@ internal UserOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (uid == null) + if (userId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "uid"); + throw new ValidationException(ValidationRules.CannotBeNull, "userId"); } - if (uid != null) + if (userId != null) { - if (uid.Length > 80) + if (userId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "uid", 80); + throw new ValidationException(ValidationRules.MaxLength, "userId", 80); } - if (uid.Length < 1) + if (userId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "uid", 1); + throw new ValidationException(ValidationRules.MinLength, "userId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(uid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(userId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "uid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "userId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -1331,7 +1146,7 @@ internal UserOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("uid", uid); + tracingParameters.Add("userId", userId); tracingParameters.Add("parameters", parameters); tracingParameters.Add("ifMatch", ifMatch); tracingParameters.Add("cancellationToken", cancellationToken); @@ -1339,10 +1154,10 @@ internal UserOperations(ApiManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{uid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{userId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{uid}", System.Uri.EscapeDataString(uid)); + _url = _url.Replace("{userId}", System.Uri.EscapeDataString(userId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -1474,7 +1289,7 @@ internal UserOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -1507,7 +1322,7 @@ internal UserOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, string ifMatch, bool? deleteSubscriptions = default(bool?), bool? notify = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, string ifMatch, bool? deleteSubscriptions = default(bool?), bool? notify = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1532,23 +1347,23 @@ internal UserOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (uid == null) + if (userId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "uid"); + throw new ValidationException(ValidationRules.CannotBeNull, "userId"); } - if (uid != null) + if (userId != null) { - if (uid.Length > 80) + if (userId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "uid", 80); + throw new ValidationException(ValidationRules.MaxLength, "userId", 80); } - if (uid.Length < 1) + if (userId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "uid", 1); + throw new ValidationException(ValidationRules.MinLength, "userId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(uid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(userId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "uid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "userId", "^[^*#&+:<>?]+$"); } } if (ifMatch == null) @@ -1572,7 +1387,7 @@ internal UserOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("uid", uid); + tracingParameters.Add("userId", userId); tracingParameters.Add("deleteSubscriptions", deleteSubscriptions); tracingParameters.Add("notify", notify); tracingParameters.Add("ifMatch", ifMatch); @@ -1581,10 +1396,10 @@ internal UserOperations(ApiManagementClient client) } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{uid}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{userId}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{uid}", System.Uri.EscapeDataString(uid)); + _url = _url.Replace("{userId}", System.Uri.EscapeDataString(userId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (deleteSubscriptions != null) @@ -1719,7 +1534,7 @@ internal UserOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -1744,7 +1559,7 @@ internal UserOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GenerateSsoUrlWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GenerateSsoUrlWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1769,23 +1584,23 @@ internal UserOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (uid == null) + if (userId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "uid"); + throw new ValidationException(ValidationRules.CannotBeNull, "userId"); } - if (uid != null) + if (userId != null) { - if (uid.Length > 80) + if (userId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "uid", 80); + throw new ValidationException(ValidationRules.MaxLength, "userId", 80); } - if (uid.Length < 1) + if (userId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "uid", 1); + throw new ValidationException(ValidationRules.MinLength, "userId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(uid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(userId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "uid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "userId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -1805,16 +1620,16 @@ internal UserOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("uid", uid); + tracingParameters.Add("userId", userId); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "GenerateSsoUrl", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{uid}/generateSsoUrl").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{userId}/generateSsoUrl").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{uid}", System.Uri.EscapeDataString(uid)); + _url = _url.Replace("{userId}", System.Uri.EscapeDataString(userId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -1950,7 +1765,7 @@ internal UserOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -1978,7 +1793,7 @@ internal UserOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetSharedAccessTokenWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, UserTokenParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetSharedAccessTokenWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, UserTokenParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2003,23 +1818,23 @@ internal UserOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (uid == null) + if (userId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "uid"); + throw new ValidationException(ValidationRules.CannotBeNull, "userId"); } - if (uid != null) + if (userId != null) { - if (uid.Length > 80) + if (userId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "uid", 80); + throw new ValidationException(ValidationRules.MaxLength, "userId", 80); } - if (uid.Length < 1) + if (userId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "uid", 1); + throw new ValidationException(ValidationRules.MinLength, "userId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(uid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(userId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "uid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "userId", "^[^*#&+:<>?]+$"); } } if (parameters == null) @@ -2047,17 +1862,17 @@ internal UserOperations(ApiManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("uid", uid); + tracingParameters.Add("userId", userId); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "GetSharedAccessToken", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{uid}/token").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{userId}/token").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{uid}", System.Uri.EscapeDataString(uid)); + _url = _url.Replace("{userId}", System.Uri.EscapeDataString(userId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserOperationsExtensions.cs index 76725693e6d3..fa5779fa09eb 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserOperationsExtensions.cs @@ -22,46 +22,6 @@ namespace Microsoft.Azure.Management.ApiManagement /// public static partial class UserOperationsExtensions { - /// - /// Returns calling user identity information. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - public static CurrentUserIdentity GetIdentity(this IUserOperations operations, string resourceGroupName, string serviceName) - { - return operations.GetIdentityAsync(resourceGroupName, serviceName).GetAwaiter().GetResult(); - } - - /// - /// Returns calling user identity information. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the API Management service. - /// - /// - /// The cancellation token. - /// - public static async Task GetIdentityAsync(this IUserOperations operations, string resourceGroupName, string serviceName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetIdentityWithHttpMessagesAsync(resourceGroupName, serviceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - /// /// Lists a collection of registered users in the specified service instance. /// @@ -77,9 +37,12 @@ public static CurrentUserIdentity GetIdentity(this IUserOperations operations, s /// /// OData parameters to apply to the operation. /// - public static IPage ListByService(this IUserOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery)) + /// + /// Detailed Group in response. + /// + public static IPage ListByService(this IUserOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? expandGroups = default(bool?)) { - return operations.ListByServiceAsync(resourceGroupName, serviceName, odataQuery).GetAwaiter().GetResult(); + return operations.ListByServiceAsync(resourceGroupName, serviceName, odataQuery, expandGroups).GetAwaiter().GetResult(); } /// @@ -97,12 +60,15 @@ public static CurrentUserIdentity GetIdentity(this IUserOperations operations, s /// /// OData parameters to apply to the operation. /// + /// + /// Detailed Group in response. + /// /// /// The cancellation token. /// - public static async Task> ListByServiceAsync(this IUserOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServiceAsync(this IUserOperations operations, string resourceGroupName, string serviceName, ODataQuery odataQuery = default(ODataQuery), bool? expandGroups = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServiceWithHttpMessagesAsync(resourceGroupName, serviceName, odataQuery, expandGroups, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -121,13 +87,13 @@ public static CurrentUserIdentity GetIdentity(this IUserOperations operations, s /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// - public static UserGetEntityTagHeaders GetEntityTag(this IUserOperations operations, string resourceGroupName, string serviceName, string uid) + public static UserGetEntityTagHeaders GetEntityTag(this IUserOperations operations, string resourceGroupName, string serviceName, string userId) { - return operations.GetEntityTagAsync(resourceGroupName, serviceName, uid).GetAwaiter().GetResult(); + return operations.GetEntityTagAsync(resourceGroupName, serviceName, userId).GetAwaiter().GetResult(); } /// @@ -143,16 +109,16 @@ public static UserGetEntityTagHeaders GetEntityTag(this IUserOperations operatio /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// /// /// The cancellation token. /// - public static async Task GetEntityTagAsync(this IUserOperations operations, string resourceGroupName, string serviceName, string uid, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetEntityTagAsync(this IUserOperations operations, string resourceGroupName, string serviceName, string userId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetEntityTagWithHttpMessagesAsync(resourceGroupName, serviceName, uid, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetEntityTagWithHttpMessagesAsync(resourceGroupName, serviceName, userId, null, cancellationToken).ConfigureAwait(false)) { return _result.Headers; } @@ -170,13 +136,13 @@ public static UserGetEntityTagHeaders GetEntityTag(this IUserOperations operatio /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// - public static UserContract Get(this IUserOperations operations, string resourceGroupName, string serviceName, string uid) + public static UserContract Get(this IUserOperations operations, string resourceGroupName, string serviceName, string userId) { - return operations.GetAsync(resourceGroupName, serviceName, uid).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, serviceName, userId).GetAwaiter().GetResult(); } /// @@ -191,16 +157,16 @@ public static UserContract Get(this IUserOperations operations, string resourceG /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// /// /// The cancellation token. /// - public static async Task GetAsync(this IUserOperations operations, string resourceGroupName, string serviceName, string uid, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IUserOperations operations, string resourceGroupName, string serviceName, string userId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serviceName, uid, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serviceName, userId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -218,7 +184,7 @@ public static UserContract Get(this IUserOperations operations, string resourceG /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -229,9 +195,9 @@ public static UserContract Get(this IUserOperations operations, string resourceG /// ETag of the Entity. Not required when creating an entity, but required when /// updating an entity. /// - public static UserContract CreateOrUpdate(this IUserOperations operations, string resourceGroupName, string serviceName, string uid, UserCreateParameters parameters, string ifMatch = default(string)) + public static UserContract CreateOrUpdate(this IUserOperations operations, string resourceGroupName, string serviceName, string userId, UserCreateParameters parameters, string ifMatch = default(string)) { - return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, uid, parameters, ifMatch).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, serviceName, userId, parameters, ifMatch).GetAwaiter().GetResult(); } /// @@ -246,7 +212,7 @@ public static UserContract Get(this IUserOperations operations, string resourceG /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -260,9 +226,9 @@ public static UserContract Get(this IUserOperations operations, string resourceG /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IUserOperations operations, string resourceGroupName, string serviceName, string uid, UserCreateParameters parameters, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IUserOperations operations, string resourceGroupName, string serviceName, string userId, UserCreateParameters parameters, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, uid, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, userId, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -280,7 +246,7 @@ public static UserContract Get(this IUserOperations operations, string resourceG /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -292,9 +258,9 @@ public static UserContract Get(this IUserOperations operations, string resourceG /// header response of the GET request or it should be * for unconditional /// update. /// - public static void Update(this IUserOperations operations, string resourceGroupName, string serviceName, string uid, UserUpdateParameters parameters, string ifMatch) + public static void Update(this IUserOperations operations, string resourceGroupName, string serviceName, string userId, UserUpdateParameters parameters, string ifMatch) { - operations.UpdateAsync(resourceGroupName, serviceName, uid, parameters, ifMatch).GetAwaiter().GetResult(); + operations.UpdateAsync(resourceGroupName, serviceName, userId, parameters, ifMatch).GetAwaiter().GetResult(); } /// @@ -309,7 +275,7 @@ public static void Update(this IUserOperations operations, string resourceGroupN /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -324,9 +290,9 @@ public static void Update(this IUserOperations operations, string resourceGroupN /// /// The cancellation token. /// - public static async Task UpdateAsync(this IUserOperations operations, string resourceGroupName, string serviceName, string uid, UserUpdateParameters parameters, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateAsync(this IUserOperations operations, string resourceGroupName, string serviceName, string userId, UserUpdateParameters parameters, string ifMatch, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.UpdateWithHttpMessagesAsync(resourceGroupName, serviceName, uid, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.UpdateWithHttpMessagesAsync(resourceGroupName, serviceName, userId, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -341,7 +307,7 @@ public static void Update(this IUserOperations operations, string resourceGroupN /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -356,9 +322,9 @@ public static void Update(this IUserOperations operations, string resourceGroupN /// /// Send an Account Closed Email notification to the User. /// - public static void Delete(this IUserOperations operations, string resourceGroupName, string serviceName, string uid, string ifMatch, bool? deleteSubscriptions = default(bool?), bool? notify = default(bool?)) + public static void Delete(this IUserOperations operations, string resourceGroupName, string serviceName, string userId, string ifMatch, bool? deleteSubscriptions = default(bool?), bool? notify = default(bool?)) { - operations.DeleteAsync(resourceGroupName, serviceName, uid, ifMatch, deleteSubscriptions, notify).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, serviceName, userId, ifMatch, deleteSubscriptions, notify).GetAwaiter().GetResult(); } /// @@ -373,7 +339,7 @@ public static void Update(this IUserOperations operations, string resourceGroupN /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -391,9 +357,9 @@ public static void Update(this IUserOperations operations, string resourceGroupN /// /// The cancellation token. /// - public static async Task DeleteAsync(this IUserOperations operations, string resourceGroupName, string serviceName, string uid, string ifMatch, bool? deleteSubscriptions = default(bool?), bool? notify = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IUserOperations operations, string resourceGroupName, string serviceName, string userId, string ifMatch, bool? deleteSubscriptions = default(bool?), bool? notify = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, uid, ifMatch, deleteSubscriptions, notify, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serviceName, userId, ifMatch, deleteSubscriptions, notify, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -409,13 +375,13 @@ public static void Update(this IUserOperations operations, string resourceGroupN /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// - public static GenerateSsoUrlResult GenerateSsoUrl(this IUserOperations operations, string resourceGroupName, string serviceName, string uid) + public static GenerateSsoUrlResult GenerateSsoUrl(this IUserOperations operations, string resourceGroupName, string serviceName, string userId) { - return operations.GenerateSsoUrlAsync(resourceGroupName, serviceName, uid).GetAwaiter().GetResult(); + return operations.GenerateSsoUrlAsync(resourceGroupName, serviceName, userId).GetAwaiter().GetResult(); } /// @@ -431,16 +397,16 @@ public static GenerateSsoUrlResult GenerateSsoUrl(this IUserOperations operation /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// /// /// The cancellation token. /// - public static async Task GenerateSsoUrlAsync(this IUserOperations operations, string resourceGroupName, string serviceName, string uid, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GenerateSsoUrlAsync(this IUserOperations operations, string resourceGroupName, string serviceName, string userId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GenerateSsoUrlWithHttpMessagesAsync(resourceGroupName, serviceName, uid, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GenerateSsoUrlWithHttpMessagesAsync(resourceGroupName, serviceName, userId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -458,16 +424,16 @@ public static GenerateSsoUrlResult GenerateSsoUrl(this IUserOperations operation /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// /// /// Create Authorization Token parameters. /// - public static UserTokenResult GetSharedAccessToken(this IUserOperations operations, string resourceGroupName, string serviceName, string uid, UserTokenParameters parameters) + public static UserTokenResult GetSharedAccessToken(this IUserOperations operations, string resourceGroupName, string serviceName, string userId, UserTokenParameters parameters) { - return operations.GetSharedAccessTokenAsync(resourceGroupName, serviceName, uid, parameters).GetAwaiter().GetResult(); + return operations.GetSharedAccessTokenAsync(resourceGroupName, serviceName, userId, parameters).GetAwaiter().GetResult(); } /// @@ -482,7 +448,7 @@ public static UserTokenResult GetSharedAccessToken(this IUserOperations operatio /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -492,9 +458,9 @@ public static UserTokenResult GetSharedAccessToken(this IUserOperations operatio /// /// The cancellation token. /// - public static async Task GetSharedAccessTokenAsync(this IUserOperations operations, string resourceGroupName, string serviceName, string uid, UserTokenParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetSharedAccessTokenAsync(this IUserOperations operations, string resourceGroupName, string serviceName, string userId, UserTokenParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetSharedAccessTokenWithHttpMessagesAsync(resourceGroupName, serviceName, uid, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetSharedAccessTokenWithHttpMessagesAsync(resourceGroupName, serviceName, userId, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserSubscriptionOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserSubscriptionOperations.cs index 4a2d2a4d25a7..c7e8c3436790 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserSubscriptionOperations.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserSubscriptionOperations.cs @@ -60,7 +60,7 @@ internal UserSubscriptionOperations(ApiManagementClient client) /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -88,7 +88,7 @@ internal UserSubscriptionOperations(ApiManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serviceName, string uid, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serviceName, string userId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -113,23 +113,23 @@ internal UserSubscriptionOperations(ApiManagementClient client) throw new ValidationException(ValidationRules.Pattern, "serviceName", "^[a-zA-Z](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$"); } } - if (uid == null) + if (userId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "uid"); + throw new ValidationException(ValidationRules.CannotBeNull, "userId"); } - if (uid != null) + if (userId != null) { - if (uid.Length > 80) + if (userId.Length > 80) { - throw new ValidationException(ValidationRules.MaxLength, "uid", 80); + throw new ValidationException(ValidationRules.MaxLength, "userId", 80); } - if (uid.Length < 1) + if (userId.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "uid", 1); + throw new ValidationException(ValidationRules.MinLength, "userId", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(uid, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)")) + if (!System.Text.RegularExpressions.Regex.IsMatch(userId, "^[^*#&+:<>?]+$")) { - throw new ValidationException(ValidationRules.Pattern, "uid", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"); + throw new ValidationException(ValidationRules.Pattern, "userId", "^[^*#&+:<>?]+$"); } } if (Client.ApiVersion == null) @@ -150,16 +150,16 @@ internal UserSubscriptionOperations(ApiManagementClient client) tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serviceName", serviceName); - tracingParameters.Add("uid", uid); + tracingParameters.Add("userId", userId); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{uid}/subscriptions").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/users/{userId}/subscriptions").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serviceName}", System.Uri.EscapeDataString(serviceName)); - _url = _url.Replace("{uid}", System.Uri.EscapeDataString(uid)); + _url = _url.Replace("{userId}", System.Uri.EscapeDataString(userId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (odataQuery != null) diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserSubscriptionOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserSubscriptionOperationsExtensions.cs index 28d078aa8e57..4d4e83e7d789 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserSubscriptionOperationsExtensions.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/UserSubscriptionOperationsExtensions.cs @@ -34,16 +34,16 @@ public static partial class UserSubscriptionOperationsExtensions /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// /// /// OData parameters to apply to the operation. /// - public static IPage List(this IUserSubscriptionOperations operations, string resourceGroupName, string serviceName, string uid, ODataQuery odataQuery = default(ODataQuery)) + public static IPage List(this IUserSubscriptionOperations operations, string resourceGroupName, string serviceName, string userId, ODataQuery odataQuery = default(ODataQuery)) { - return operations.ListAsync(resourceGroupName, serviceName, uid, odataQuery).GetAwaiter().GetResult(); + return operations.ListAsync(resourceGroupName, serviceName, userId, odataQuery).GetAwaiter().GetResult(); } /// @@ -58,7 +58,7 @@ public static partial class UserSubscriptionOperationsExtensions /// /// The name of the API Management service. /// - /// + /// /// User identifier. Must be unique in the current API Management service /// instance. /// @@ -68,9 +68,9 @@ public static partial class UserSubscriptionOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListAsync(this IUserSubscriptionOperations operations, string resourceGroupName, string serviceName, string uid, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IUserSubscriptionOperations operations, string resourceGroupName, string serviceName, string userId, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, serviceName, uid, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, serviceName, userId, odataQuery, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Microsoft.Azure.Management.ApiManagement.csproj b/src/SDKs/ApiManagement/Management.ApiManagement/Microsoft.Azure.Management.ApiManagement.csproj index 79d4b554efcf..da69f6c2d74c 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Microsoft.Azure.Management.ApiManagement.csproj +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Microsoft.Azure.Management.ApiManagement.csproj @@ -8,7 +8,7 @@ Provides ApiManagement management capabilities for Microsoft Azure. Microsoft Azure API Management Management Microsoft.Azure.Management.ApiManagement - 4.0.6-preview + 4.8.0-preview Microsoft Azure ApiManagement management;API Management; Refer https://aka.ms/apimdotnetsdkchangelog for release notes. diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Properties/AssemblyInfo.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Properties/AssemblyInfo.cs index 3000268fd412..cb053dcc0239 100644 --- a/src/SDKs/ApiManagement/Management.ApiManagement/Properties/AssemblyInfo.cs +++ b/src/SDKs/ApiManagement/Management.ApiManagement/Properties/AssemblyInfo.cs @@ -10,7 +10,7 @@ [assembly: AssemblyDescription("Provides Api management capabilities for Microsoft Azure.")] [assembly: AssemblyVersion("4.0.0.0")] -[assembly: AssemblyFileVersion("4.0.6.0")] +[assembly: AssemblyFileVersion("4.8.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/generate.cmd b/src/SDKs/ApiManagement/Management.ApiManagement/generate.cmd new file mode 100644 index 000000000000..35db1b989b57 --- /dev/null +++ b/src/SDKs/ApiManagement/Management.ApiManagement/generate.cmd @@ -0,0 +1,8 @@ +:: +:: Microsoft Azure SDK for Net - Generate library code +:: Copyright (C) Microsoft Corporation. All Rights Reserved. +:: + +@echo off + +call %~dp0..\..\..\..\tools\generate.cmd apimanagement/resource-manager %* \ No newline at end of file diff --git a/src/SDKs/ApiManagement/changelog.md b/src/SDKs/ApiManagement/changelog.md index 02262ecee82c..223d27e6e717 100644 --- a/src/SDKs/ApiManagement/changelog.md +++ b/src/SDKs/ApiManagement/changelog.md @@ -1,5 +1,18 @@ ## Microsoft.Azure.Management.ApiManagment release notes +### Changes in 4.8.0-preview + +- Switch the .NET client to use api-version `2019-01-01` +- Add support for cloning Apis from an ApiRevision and ApiVersionSet +- Enabled support for Importing and Exporting Apis based on OpenApi specification +- Add support for creating Api Diagnostics +- Diagnostics support configuring detailed sampling and Header configuration +- Add support for creating and update Cache entity. +- Subscription Contract has breaking change. The ProductId property is replaced with Scope and UserId is replaced with OwnerId. +- Added support for creating Global Scope Subscriptions +- Added support for managing `Consumption` Sku services. +- Deprecated Api UpdateHostName and UploadCertificate for configurating ApiManagement service. Use CreateOrUpdate service instead. + ### Changes in 4.0.6-preview - Added support of OpenId authentication in ApiContract diff --git a/src/SDKs/_metadata/apimanagement_resource-manager.txt b/src/SDKs/_metadata/apimanagement_resource-manager.txt index 8da786d812fd..fc695e39211d 100644 --- a/src/SDKs/_metadata/apimanagement_resource-manager.txt +++ b/src/SDKs/_metadata/apimanagement_resource-manager.txt @@ -1,14 +1,11 @@ -Installing AutoRest version: latest -AutoRest installed successfully. -Commencing code generation -Generating CSharp code -Executing AutoRest command -cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/apimanagement/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\github\azure-sdk-for-net\src\SDKs -2018-11-15 02:04:55 UTC -Azure-rest-api-specs repository information -GitHub fork: Azure +2019-04-15 20:28:53 UTC + +1) azure-rest-api-specs repository information +GitHub user: Azure Branch: master -Commit: ab9c6ff77b4f15ee7880c8f860c7e96f8356e80d -AutoRest information +Commit: 0e406a470599fbe1808a42b489ce7540ecbbdd07 + +2) AutoRest information Requested version: latest -Bootstrapper version: autorest@2.0.4283 +Bootstrapper version: C:\Users\sasolank\AppData\Roaming\npm `-- autorest@2.0.4283 +Latest installed version: