diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiTests.cs index 50d7402bd03a..63646bed3d2b 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/ApiTests.cs @@ -145,6 +145,9 @@ public async Task CreateListUpdateDelete() Assert.NotNull(apiGetResponse.AuthenticationSettings); Assert.NotNull(apiGetResponse.AuthenticationSettings.OAuth2); Assert.Equal(newApiAuthorizationServerId, apiGetResponse.AuthenticationSettings.OAuth2.AuthorizationServerId); + Assert.Single(apiGetResponse.AuthenticationSettings.OAuth2AuthenticationSettings); + Assert.Equal(newApiAuthorizationServerId, apiGetResponse.AuthenticationSettings.OAuth2AuthenticationSettings.First().AuthorizationServerId); + Assert.Empty(apiGetResponse.AuthenticationSettings.OpenidAuthenticationSettings); // get the API Entity Tag ApiGetEntityTagHeaders apiTag = testBase.client.Api.GetEntityTag( @@ -155,7 +158,7 @@ public async Task CreateListUpdateDelete() Assert.NotNull(apiTag); Assert.NotNull(apiTag.ETag); - // patch added api + // patch added api with OAuth2AuthenticationSettings string patchedName = TestUtilities.GenerateName("patchedname"); string patchedDescription = TestUtilities.GenerateName("patchedDescription"); string patchedPath = TestUtilities.GenerateName("patchedPath"); @@ -171,7 +174,14 @@ public async Task CreateListUpdateDelete() Path = patchedPath, AuthenticationSettings = new AuthenticationSettingsContract { - OAuth2 = null + OAuth2AuthenticationSettings = new[] + { + new OAuth2AuthenticationSettingsContract + { + AuthorizationServerId = newApiAuthorizationServerId, + Scope = newApiAuthorizationScope + } + } } }, apiTag.ETag); @@ -190,6 +200,10 @@ public async Task CreateListUpdateDelete() Assert.Equal(2, apiGetResponse.Protocols.Count); Assert.True(apiGetResponse.Protocols.Contains(Protocol.Http)); Assert.True(apiGetResponse.Protocols.Contains(Protocol.Https)); + Assert.NotNull(apiGetResponse.AuthenticationSettings.OAuth2); + Assert.Single(apiGetResponse.AuthenticationSettings.OAuth2AuthenticationSettings); + Assert.Equal(newApiAuthorizationServerId, apiGetResponse.AuthenticationSettings.OAuth2AuthenticationSettings.First().AuthorizationServerId); + Assert.Empty(apiGetResponse.AuthenticationSettings.OpenidAuthenticationSettings); // get the latest API Entity Tag apiTag = testBase.client.Api.GetEntityTag( @@ -305,6 +319,10 @@ public async Task CreateListUpdateDelete() Assert.True(openApiGetResponse.Protocols.Contains(Protocol.Https)); Assert.NotNull(openApiGetResponse.AuthenticationSettings.Openid); Assert.Equal(openIdCreateResponse.Name, openApiGetResponse.AuthenticationSettings.Openid.OpenidProviderId); + Assert.Empty(openApiGetResponse.AuthenticationSettings.OAuth2AuthenticationSettings); + Assert.Single(openApiGetResponse.AuthenticationSettings.OpenidAuthenticationSettings); + Assert.Equal(openIdCreateResponse.Name, openApiGetResponse.AuthenticationSettings.OpenidAuthenticationSettings.First().OpenidProviderId); + // list with paging listResponse = testBase.client.Api.ListByService( @@ -322,6 +340,84 @@ public async Task CreateListUpdateDelete() Assert.Single(listResponse); Assert.NotNull(listResponse.NextPageLink); + + // patch added api with OpenidAuthenticationSettings + apiTag = testBase.client.Api.GetEntityTag( + testBase.rgName, + testBase.serviceName, + newApiId); + + testBase.client.Api.Update( + testBase.rgName, + testBase.serviceName, + newApiId, + new ApiUpdateContract + { + AuthenticationSettings = new AuthenticationSettingsContract + { + OpenidAuthenticationSettings = new[] + { + new OpenIdAuthenticationSettingsContract + { + OpenidProviderId = openIdCreateResponse.Name + } + } + } + }, + apiTag.ETag); + + // get patched api to check it was patched + var patchedOpenApiGetResponse = testBase.client.Api.Get(testBase.rgName, testBase.serviceName, newOpenApiId); + + Assert.NotNull(patchedOpenApiGetResponse.AuthenticationSettings.Openid); + Assert.Equal(openIdCreateResponse.Name, patchedOpenApiGetResponse.AuthenticationSettings.Openid.OpenidProviderId); + Assert.Empty(patchedOpenApiGetResponse.AuthenticationSettings.OAuth2AuthenticationSettings); + Assert.Single(patchedOpenApiGetResponse.AuthenticationSettings.OpenidAuthenticationSettings); + Assert.Equal(openIdCreateResponse.Name, patchedOpenApiGetResponse.AuthenticationSettings.OpenidAuthenticationSettings.First().OpenidProviderId); + + // patch with both OAuth2 and Oauth2AuthentiationSettings should fail + var oauth2Contract = new OAuth2AuthenticationSettingsContract + { + AuthorizationServerId = newApiAuthorizationServerId, + Scope = newApiAuthorizationScope + }; + + Assert.Throws(() => + testBase.client.Api.Update( + testBase.rgName, + testBase.serviceName, + newApiId, + new ApiUpdateContract + { + AuthenticationSettings = new AuthenticationSettingsContract + { + OAuth2 = oauth2Contract, + OAuth2AuthenticationSettings = new[] { oauth2Contract } + } + }, + apiTag.ETag)); + + // patch with both OpenId and OpenidAuthenticationSettings should fail + var openIdContract = new OpenIdAuthenticationSettingsContract + { + OpenidProviderId = openIdCreateResponse.Name + }; + + Assert.Throws(() => + testBase.client.Api.Update( + testBase.rgName, + testBase.serviceName, + newApiId, + new ApiUpdateContract + { + AuthenticationSettings = new AuthenticationSettingsContract + { + Openid = openIdContract, + OpenidAuthenticationSettings = new[] { openIdContract } + } + }, + apiTag.ETag)); + // delete the api testBase.client.Api.Delete( testBase.rgName, @@ -340,6 +436,7 @@ public async Task CreateListUpdateDelete() Assert.Equal(HttpStatusCode.NotFound, ex.Response.StatusCode); } + // delete the api testBase.client.Api.Delete( testBase.rgName, @@ -512,6 +609,9 @@ await testBase.client.AuthorizationServer.CreateOrUpdateAsync( Assert.NotNull(apiGetResponse.AuthenticationSettings.OAuth2); Assert.Equal(newApiAuthorizationServerId, apiGetResponse.AuthenticationSettings.OAuth2.AuthorizationServerId); Assert.True(apiGetResponse.SubscriptionRequired); + Assert.Single(apiGetResponse.AuthenticationSettings.OAuth2AuthenticationSettings); + Assert.Equal(newApiAuthorizationServerId, apiGetResponse.AuthenticationSettings.OAuth2AuthenticationSettings.First().AuthorizationServerId); + Assert.Empty(apiGetResponse.AuthenticationSettings.OpenidAuthenticationSettings); var newApiOperations = await testBase.client.ApiOperation.ListByApiAsync( testBase.rgName, diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/AuthorizationServerTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/AuthorizationServerTests.cs index 6f9b8a4d0f20..aee64d5ea0ed 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/AuthorizationServerTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/AuthorizationServerTests.cs @@ -106,6 +106,11 @@ public async Task CreateListUpdateDelete() Assert.Equal(authorizationServerContract.TokenBodyParameters.Count, getResponse.Body.TokenBodyParameters.Count); Assert.True(getResponse.Body.TokenBodyParameters.All(p => authorizationServerContract.TokenBodyParameters.Any(p1 => p1.Name.Equals(p.Name, StringComparison.OrdinalIgnoreCase) && p1.Value.Equals(p.Value, StringComparison.OrdinalIgnoreCase)))); + // check default values for UseInTestConsole and UseInApiDocumentation + Assert.True(getResponse.Body.UseInTestConsole); + Assert.False(getResponse.Body.UseInApiDocumentation); + + var secretsResponse = await testBase.client.AuthorizationServer.ListSecretsAsync( testBase.rgName, testBase.serviceName, @@ -127,7 +132,9 @@ public async Task CreateListUpdateDelete() // update var updateParameters = new AuthorizationServerUpdateContract { - GrantTypes = new List { GrantType.AuthorizationCode, GrantType.ResourceOwnerPassword } + GrantTypes = new List { GrantType.AuthorizationCode, GrantType.ResourceOwnerPassword }, + UseInApiDocumentation = true, + UseInTestConsole = false }; testBase.client.AuthorizationServer.Update( @@ -167,6 +174,8 @@ public async Task CreateListUpdateDelete() Assert.Equal(authorizationServerContract.SupportState, getResponse.Body.SupportState); Assert.Equal(authorizationServerContract.TokenBodyParameters.Count, getResponse.Body.TokenBodyParameters.Count); Assert.True(getResponse.Body.TokenBodyParameters.All(p => authorizationServerContract.TokenBodyParameters.Any(p1 => p1.Name.Equals(p.Name, StringComparison.OrdinalIgnoreCase) && p1.Value.Equals(p.Value, StringComparison.OrdinalIgnoreCase)))); + Assert.False(getResponse.Body.UseInTestConsole); + Assert.True(getResponse.Body.UseInApiDocumentation); // delete testBase.client.AuthorizationServer.Delete( diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/OpenIdConnectProviderTests.cs b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/OpenIdConnectProviderTests.cs index 8d034f2792ae..40b95fbf366d 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/OpenIdConnectProviderTests.cs +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/ManagementApiTests/OpenIdConnectProviderTests.cs @@ -63,6 +63,10 @@ public async Task CreateListUpdateDelete() Assert.Null(openIdConnectProviderContract.ClientSecret); Assert.Null(openIdConnectProviderContract.Description); + // check default values for UseInTestConsole and UseInApiDocumentation + Assert.True(openIdConnectProviderContract.UseInTestConsole); + Assert.False(openIdConnectProviderContract.UseInApiDocumentation); + // create a Secret property string openIdProviderName2 = TestUtilities.GenerateName("openIdName"); string metadataEndpoint2 = testBase.GetOpenIdMetadataEndpointUrl(); @@ -161,7 +165,9 @@ await testBase.client.OpenIdConnectProvider.DeleteAsync( new OpenidConnectProviderUpdateContract { MetadataEndpoint = updateMetadataEndpoint, - ClientId = updatedClientId + ClientId = updatedClientId, + UseInTestConsole = true, + UseInApiDocumentation = false }, openIdConnectProviderTag.ETag); @@ -180,6 +186,8 @@ await testBase.client.OpenIdConnectProvider.DeleteAsync( Assert.Equal(updateMetadataEndpoint, getResponseOpendId2.Body.MetadataEndpoint); Assert.Null(getResponseOpendId2.Body.ClientSecret); Assert.NotNull(getResponseOpendId2.Body.Description); + Assert.True(getResponseOpendId2.Body.UseInTestConsole); + Assert.False(getResponseOpendId2.Body.UseInApiDocumentation); var secretsResponse = await testBase.client.OpenIdConnectProvider.ListSecretsAsync( testBase.rgName, diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiTests/CloneApiUsingSourceApiId.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiTests/CloneApiUsingSourceApiId.json index 47d303e379c9..50785e2ca1ad 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiTests/CloneApiUsingSourceApiId.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiTests/CloneApiUsingSourceApiId.json @@ -1,19 +1,76 @@ { "Entries": [ + { + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourcegroups/Apim-NetSdk-20220801?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlZ3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f6f4f41-13f5-4bb2-a868-4d78b90a3f7e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1623.17311", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "42afff7e-e023-4e58-ac7f-175028d059d9" + ], + "x-ms-correlation-request-id": [ + "42afff7e-e023-4e58-ac7f-175028d059d9" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20230525T172606Z:42afff7e-e023-4e58-ac7f-175028d059d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 25 May 2023 17:26:06 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, { "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service?api-version=2022-08-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2U/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "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\": \"centraluseuap\",\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\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"DateCreated\": \"5/25/2023 5:26:08 PM\",\r\n \"apiversion\": \"2022-08-01\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "65427ccc-8c2b-472f-9a70-87e0f8d83223" + "04a4f446-c2d8-4198-a69c-e8628bc3f6e1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -22,7 +79,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "346" + "354" ] }, "ResponseHeaders": { @@ -33,35 +90,35 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAqobk=\"" + "\"AAAAAAAtYGc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "da5fdb03-c463-47a4-826a-4e444bec5c2d", - "da5fdb03-c463-47a4-826a-4e444bec5c2d" + "be20808c-b8b9-47b0-84ad-5020828fc97e", + "be20808c-b8b9-47b0-84ad-5020828fc97e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "23998" ], "x-ms-correlation-request-id": [ - "da5fdb03-c463-47a4-826a-4e444bec5c2d" + "be20808c-b8b9-47b0-84ad-5020828fc97e" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222416Z:da5fdb03-c463-47a4-826a-4e444bec5c2d" + "GERMANYWESTCENTRAL:20230525T172610Z:be20808c-b8b9-47b0-84ad-5020828fc97e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Mar 2023 22:24:16 GMT" + "Thu, 25 May 2023 17:26:10 GMT" ], "Content-Length": [ - "2928" + "2943" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,7 +127,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service\",\r\n \"name\": \"sdktest20220801service\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAqobk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2023-03-16T20:13:52.4280158Z\",\r\n \"gatewayUrl\": \"https://sdktest20220801service.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktest20220801service-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktest20220801service.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktest20220801service.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktest20220801service.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktest20220801service.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktest20220801service.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.112.149.88\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"natGatewayState\": \"Disabled\",\r\n \"outboundPublicIPAddresses\": [\r\n \"20.112.149.88\"\r\n ],\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"84a8af83-dcca-4370-9500-58a989bf9c13\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jikang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-03-16T20:13:52.3752772Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-03-16T22:09:53.3969618Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service\",\r\n \"name\": \"sdktest20220801service\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"DateCreated\": \"5/25/2023 5:26:08 PM\",\r\n \"apiversion\": \"2022-08-01\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAtYGc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2023-04-26T16:30:26.7911449Z\",\r\n \"gatewayUrl\": \"https://sdktest20220801service.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktest20220801service-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktest20220801service.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktest20220801service.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktest20220801service.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktest20220801service.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktest20220801service.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.228.49.143\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"natGatewayState\": \"Disabled\",\r\n \"outboundPublicIPAddresses\": [\r\n \"20.228.49.143\"\r\n ],\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a676137a-7ef9-49cd-a466-d87b143841da\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jikang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-03-16T20:13:52.3752772Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-04-26T16:30:26.1518098Z\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -80,13 +137,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc787d97-ba1a-4434-ab7f-bce8333f75eb" + "9b1a7b0f-aa86-4f9f-8a60-aa5b6f8fedb2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -100,34 +157,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAqobk=\"" + "\"AAAAAAAtYGc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "448df230-9bcf-40ca-a24d-990080327b2a" + "5616ae6e-18af-45e0-8e51-fd78786e195c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11982" ], "x-ms-correlation-request-id": [ - "448df230-9bcf-40ca-a24d-990080327b2a" + "5616ae6e-18af-45e0-8e51-fd78786e195c" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222416Z:448df230-9bcf-40ca-a24d-990080327b2a" + "GERMANYWESTCENTRAL:20230525T172610Z:5616ae6e-18af-45e0-8e51-fd78786e195c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Mar 2023 22:24:16 GMT" + "Thu, 25 May 2023 17:26:10 GMT" ], "Content-Length": [ - "2928" + "2943" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,23 +193,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service\",\r\n \"name\": \"sdktest20220801service\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAqobk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2023-03-16T20:13:52.4280158Z\",\r\n \"gatewayUrl\": \"https://sdktest20220801service.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktest20220801service-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktest20220801service.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktest20220801service.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktest20220801service.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktest20220801service.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktest20220801service.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.112.149.88\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"natGatewayState\": \"Disabled\",\r\n \"outboundPublicIPAddresses\": [\r\n \"20.112.149.88\"\r\n ],\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"84a8af83-dcca-4370-9500-58a989bf9c13\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jikang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-03-16T20:13:52.3752772Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-03-16T22:09:53.3969618Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service\",\r\n \"name\": \"sdktest20220801service\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"DateCreated\": \"5/25/2023 5:26:08 PM\",\r\n \"apiversion\": \"2022-08-01\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAtYGc=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2023-04-26T16:30:26.7911449Z\",\r\n \"gatewayUrl\": \"https://sdktest20220801service.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktest20220801service-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktest20220801service.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktest20220801service.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktest20220801service.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktest20220801service.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktest20220801service.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.228.49.143\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"natGatewayState\": \"Disabled\",\r\n \"outboundPublicIPAddresses\": [\r\n \"20.228.49.143\"\r\n ],\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a676137a-7ef9-49cd-a466-d87b143841da\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jikang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-03-16T20:13:52.3752772Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-04-26T16:30:26.1518098Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId7136?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9zd2FnZ2VyQXBpSWQ3MTM2P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId8586?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9zd2FnZ2VyQXBpSWQ4NTg2P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerApi\",\r\n \"value\": \"{\\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\\\",\\n \\\"swagger\\\": \\\"2.0\\\",\\n \\\"info\\\": {\\n \\\"version\\\": \\\"1.0.0\\\",\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\n \\\"contact\\\": {\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\n \\\"email\\\": \\\"foo@example.com\\\",\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\n },\\n \\\"license\\\": {\\n \\\"name\\\": \\\"MIT\\\",\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\n }\\n },\\n \\\"externalDocs\\\": {\\n \\\"description\\\": \\\"find more info here\\\",\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\n },\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\n \\\"basePath\\\": \\\"/api\\\",\\n \\\"schemes\\\": [\\n \\\"http\\\"\\n ],\\n \\\"consumes\\\": [\\n \\\"application/json\\\"\\n ],\\n \\\"produces\\\": [\\n \\\"application/json\\\"\\n ],\\n \\\"paths\\\": {\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\n \\\"post\\\": {\\n \\\"description\\\": \\\"Dummy desc\\\",\\n \\\"operationId\\\": \\\"dummyid1\\\",\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\n \\\"in\\\": \\\"header\\\",\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\n \\\"required\\\": true,\\n \\\"type\\\": \\\"string\\\",\\n \\\"format\\\": \\\"date\\\"\\n },\\n {\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\n \\\"in\\\": \\\"query\\\",\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\n \\\"required\\\": true,\\n \\\"type\\\": \\\"string\\\"\\n },\\n {\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\n \\\"in\\\": \\\"query\\\",\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\n \\\"required\\\": false,\\n \\\"type\\\": \\\"string\\\"\\n },\\n {\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\n \\\"in\\\": \\\"body\\\",\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\n \\\"required\\\": false,\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\n \\\"example\\\": {\\n \\\"id\\\": 2,\\n \\\"name\\\": \\\"myreqpet\\\"\\n }\\n }\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"200\\\": {\\n \\\"description\\\": \\\"pet response\\\",\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"array\\\",\\n \\\"items\\\": {\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\n }\\n },\\n \\\"headers\\\": {\\n \\\"header1\\\": {\\n \\\"description\\\": \\\"sampleheader\\\",\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int64\\\"\\n }\\n },\\n \\\"examples\\\": {\\n \\\"application/json\\\": {\\n \\\"id\\\": 3,\\n \\\"name\\\": \\\"myresppet\\\" \\n }\\n }\\n },\\n \\\"default\\\": {\\n \\\"description\\\": \\\"unexpected error\\\",\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\n }\\n }\\n }\\n }\\n },\\n \\\"/resourceWithFormData\\\": {\\n \\\"post\\\": {\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\n \\\"in\\\": \\\"formData\\\",\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\n \\\"required\\\": true,\\n \\\"type\\\": \\\"string\\\"\\n },\\n {\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\n \\\"in\\\": \\\"query\\\",\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\n \\\"required\\\": true,\\n \\\"type\\\": \\\"string\\\"\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"200\\\": {\\n \\\"description\\\": \\\"sample response\\\"\\n }\\n }\\n }\\n },\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\n \\\"post\\\": {\\n \\\"produces\\\": [\\n \\\"contenttype1\\\",\\n \\\"application/xml\\\"\\n ],\\n \\\"description\\\": \\\"Dummy desc\\\",\\n \\\"operationId\\\": \\\"dummyid2\\\",\\n \\\"parameters\\\": [\\n {\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\n },\\n {\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"204\\\": {\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\n }\\n }\\n }\\n },\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\n \\\"get\\\": {\\n \\\"description\\\": \\\"Dummy description\\\",\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"dummyParam\\\",\\n \\\"in\\\": \\\"query\\\",\\n \\\"description\\\": \\\"dummyParam desc\\\",\\n \\\"required\\\": true,\\n \\\"type\\\": \\\"string\\\",\\n \\\"collectionFormat\\\": \\\"csv\\\"\\n },\\n {\\n \\\"name\\\": \\\"limit\\\",\\n \\\"in\\\": \\\"query\\\",\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\n \\\"required\\\": false,\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int32\\\"\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"200\\\": {\\n \\\"description\\\": \\\"pet response\\\",\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"array\\\",\\n \\\"items\\\": {\\n \\\"type\\\": \\\"string\\\"\\n }\\n }\\n },\\n \\\"default\\\": {\\n \\\"description\\\": \\\"unexpected error\\\",\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\n }\\n }\\n }\\n }\\n },\\n \\\"/pets\\\": {\\n \\\"get\\\": {\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\n \\\"operationId\\\": \\\"findPets\\\",\\n \\\"externalDocs\\\": {\\n \\\"description\\\": \\\"find more info here\\\",\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\n },\\n \\\"produces\\\": [\\n \\\"application/json\\\",\\n \\\"application/xml\\\"\\n ],\\n \\\"consumes\\\": [\\n \\\"text/xml\\\",\\n \\\"text/html\\\"\\n ],\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"tags\\\",\\n \\\"in\\\": \\\"query\\\",\\n \\\"description\\\": \\\"tags to filter by\\\",\\n \\\"required\\\": false,\\n \\\"type\\\": \\\"string\\\",\\n \\\"collectionFormat\\\": \\\"csv\\\"\\n },\\n {\\n \\\"name\\\": \\\"limit\\\",\\n \\\"in\\\": \\\"query\\\",\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\n \\\"required\\\": false,\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int32\\\"\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"200\\\": {\\n \\\"description\\\": \\\"pet response\\\",\\n \\\"schema\\\": {\\n \\\"type\\\": \\\"array\\\",\\n \\\"items\\\": {\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\n }\\n }\\n },\\n \\\"default\\\": {\\n \\\"description\\\": \\\"unexpected error\\\",\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\n }\\n }\\n }\\n },\\n \\\"post\\\": {\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\n \\\"operationId\\\": \\\"addPet\\\",\\n \\\"produces\\\": [\\n \\\"application/json\\\"\\n ],\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"pet\\\",\\n \\\"in\\\": \\\"body\\\",\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\n \\\"required\\\": true,\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\n }\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"200\\\": {\\n \\\"description\\\": \\\"pet response\\\",\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\n }\\n },\\n \\\"default\\\": {\\n \\\"description\\\": \\\"unexpected error\\\",\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\n }\\n }\\n }\\n }\\n },\\n \\\"/pets/{id}\\\": {\\n \\\"get\\\": {\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\n \\\"operationId\\\": \\\"findPetById\\\",\\n \\\"produces\\\": [\\n \\\"application/json\\\",\\n \\\"application/xml\\\",\\n \\\"text/xml\\\",\\n \\\"text/html\\\"\\n ],\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"id\\\",\\n \\\"in\\\": \\\"path\\\",\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\n \\\"required\\\": true,\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int64\\\"\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"200\\\": {\\n \\\"description\\\": \\\"pet response\\\",\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\n }\\n },\\n \\\"default\\\": {\\n \\\"description\\\": \\\"unexpected error\\\",\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\n }\\n }\\n }\\n },\\n \\\"delete\\\": {\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\n \\\"operationId\\\": \\\"deletePet\\\",\\n \\\"parameters\\\": [\\n {\\n \\\"name\\\": \\\"id\\\",\\n \\\"in\\\": \\\"path\\\",\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\n \\\"required\\\": true,\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int64\\\"\\n }\\n ],\\n \\\"responses\\\": {\\n \\\"204\\\": {\\n \\\"description\\\": \\\"pet deleted\\\"\\n },\\n \\\"default\\\": {\\n \\\"description\\\": \\\"unexpected error\\\",\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\n }\\n }\\n }\\n }\\n }\\n },\\n \\\"definitions\\\": {\\n \\\"pet\\\": {\\n \\\"required\\\": [\\n \\\"id\\\",\\n \\\"name\\\"\\n ],\\n \\\"externalDocs\\\": {\\n \\\"description\\\": \\\"find more info here\\\",\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\n },\\n \\\"properties\\\": {\\n \\\"id\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int64\\\"\\n },\\n \\\"name\\\": {\\n \\\"type\\\": \\\"string\\\"\\n },\\n \\\"tag\\\": {\\n \\\"type\\\": \\\"string\\\"\\n }\\n }\\n },\\n \\\"newPet\\\": {\\n \\\"allOf\\\": [\\n {\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\n },\\n {\\n \\\"required\\\": [\\n \\\"name\\\"\\n ],\\n \\\"properties\\\": {\\n \\\"id\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int64\\\"\\n }\\n }\\n }\\n ]\\n },\\n \\\"errorModel\\\": {\\n \\\"required\\\": [\\n \\\"code\\\",\\n \\\"message\\\"\\n ],\\n \\\"properties\\\": {\\n \\\"code\\\": {\\n \\\"type\\\": \\\"integer\\\",\\n \\\"format\\\": \\\"int32\\\"\\n },\\n \\\"message\\\": {\\n \\\"type\\\": \\\"string\\\"\\n }\\n }\\n }\\n },\\n \\\"parameters\\\": {\\n \\\"dummyBodyParameterDef\\\": {\\n \\\"name\\\": \\\"definedBodyParam\\\",\\n \\\"in\\\": \\\"body\\\",\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\n \\\"required\\\": true,\\n \\\"schema\\\": {\\n \\\"title\\\": \\\"Example Schema\\\",\\n \\\"type\\\": \\\"object\\\",\\n \\\"properties\\\": {\\n \\\"firstName\\\": {\\n \\\"type\\\": \\\"string\\\"\\n },\\n \\\"lastName\\\": {\\n \\\"type\\\": \\\"string\\\"\\n },\\n \\\"age\\\": {\\n \\\"description\\\": \\\"Age in years\\\",\\n \\\"type\\\": \\\"integer\\\",\\n \\\"minimum\\\": 0\\n }\\n },\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\n }\\n },\\n \\\"dummyQueryParameterDef\\\": {\\n \\\"name\\\": \\\"definedQueryParam\\\",\\n \\\"in\\\": \\\"query\\\",\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\n \\\"required\\\": true,\\n \\\"type\\\": \\\"string\\\",\\n \\\"format\\\": \\\"whateverformat\\\"\\n }\\n },\\n \\\"responses\\\": {\\n \\\"dummyResponseDef\\\": {\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\n \\\"schema\\\": {\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\n },\\n \\\"headers\\\": {\\n \\\"header1\\\": {\\n \\\"type\\\": \\\"integer\\\"\\n },\\n \\\"header2\\\": {\\n \\\"type\\\": \\\"integer\\\"\\n }\\n },\\n \\\"examples\\\": {\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\n }\\n }\\n }\\n}\\n\\n\",\r\n \"format\": \"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": [ - "ee2a05f2-dbe2-4ed0-827f-edf80a4eaf7b" + "646635a7-b3cf-4765-96e4-c0289a5be20a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -161,7 +218,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "17306" + "18224" ] }, "ResponseHeaders": { @@ -172,7 +229,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId7136?api-version=2022-08-01&asyncId=64139711217d201f300bb5e8&asyncCode=201" + "https://management.azure.com/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId8586?api-version=2022-08-01&asyncId=646f9a334634610e04147f23&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,22 +238,22 @@ "nosniff" ], "x-ms-request-id": [ - "020898b2-a8dd-4c16-9541-3a03b237a08d" + "c76bd56c-1e9d-4afb-8267-8853da9121a9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-correlation-request-id": [ - "020898b2-a8dd-4c16-9541-3a03b237a08d" + "c76bd56c-1e9d-4afb-8267-8853da9121a9" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222417Z:020898b2-a8dd-4c16-9541-3a03b237a08d" + "GERMANYWESTCENTRAL:20230525T172611Z:c76bd56c-1e9d-4afb-8267-8853da9121a9" ], "Date": [ - "Thu, 16 Mar 2023 22:24:17 GMT" + "Thu, 25 May 2023 17:26:11 GMT" ], "Expires": [ "-1" @@ -209,13 +266,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId7136?api-version=2022-08-01&asyncId=64139711217d201f300bb5e8&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9zd2FnZ2VyQXBpSWQ3MTM2P2FwaS12ZXJzaW9uPTIwMjItMDgtMDEmYXN5bmNJZD02NDEzOTcxMTIxN2QyMDFmMzAwYmI1ZTgmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId8586?api-version=2022-08-01&asyncId=646f9a334634610e04147f23&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9zd2FnZ2VyQXBpSWQ4NTg2P2FwaS12ZXJzaW9uPTIwMjItMDgtMDEmYXN5bmNJZD02NDZmOWEzMzQ2MzQ2MTBlMDQxNDdmMjMmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -229,7 +286,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACj8=\"" + "\"AAAAAAAAOIw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -238,22 +295,22 @@ "nosniff" ], "x-ms-request-id": [ - "87db8ca5-af40-428a-a862-1d463a905c6d" + "17688d05-8131-4b5a-91d1-dc5399ab451c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11981" ], "x-ms-correlation-request-id": [ - "87db8ca5-af40-428a-a862-1d463a905c6d" + "17688d05-8131-4b5a-91d1-dc5399ab451c" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222447Z:87db8ca5-af40-428a-a862-1d463a905c6d" + "GERMANYWESTCENTRAL:20230525T172642Z:17688d05-8131-4b5a-91d1-dc5399ab451c" ], "Date": [ - "Thu, 16 Mar 2023 22:24:47 GMT" + "Thu, 25 May 2023 17:26:41 GMT" ], "Content-Length": [ "1307" @@ -265,23 +322,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId7136\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"swaggerApiId7136\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null,\r\n \"oAuth2AuthenticationSettings\": [],\r\n \"openidAuthenticationSettings\": []\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId8586\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"swaggerApiId8586\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null,\r\n \"oAuth2AuthenticationSettings\": [],\r\n \"openidAuthenticationSettings\": []\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId7136/operations?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9zd2FnZ2VyQXBpSWQ3MTM2L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId8586/operations?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9zd2FnZ2VyQXBpSWQ4NTg2L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8761e31b-03ad-41b8-88e2-abdf6cf09a66" + "a2661255-712c-4d61-9c3a-3386ed451c97" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -301,22 +358,22 @@ "nosniff" ], "x-ms-request-id": [ - "43d14481-8881-4e5a-a3dc-4b1d55978ab3" + "1472f057-fc9a-4020-a913-58dd89211454" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11980" ], "x-ms-correlation-request-id": [ - "43d14481-8881-4e5a-a3dc-4b1d55978ab3" + "1472f057-fc9a-4020-a913-58dd89211454" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222447Z:43d14481-8881-4e5a-a3dc-4b1d55978ab3" + "GERMANYWESTCENTRAL:20230525T172642Z:1472f057-fc9a-4020-a913-58dd89211454" ], "Date": [ - "Thu, 16 Mar 2023 22:24:47 GMT" + "Thu, 25 May 2023 17:26:41 GMT" ], "Content-Length": [ "28101" @@ -328,23 +385,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId7136/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"newPet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId7136/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"Id\"\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId7136/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"DummyDateHeaderParam\"\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 2,\r\n \"name\": \"myreqpet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 3,\r\n \"name\": \"myresppet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": [],\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"Header1\"\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId7136/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"DefinedQueryParam\"\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"firstName\": \"string\",\r\n \"lastName\": \"string\",\r\n \"age\": 0\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"DefinedBodyParam\",\r\n \"generatedSample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype1 example\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype1 example\",\r\n \"sample\": \"contenttype1 example\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype2 example\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype2 example\",\r\n \"sample\": \"contenttype2 example\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId7136/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": [],\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"Limit\"\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n \"string\"\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\",\r\n \"sample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId7136/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"Id\"\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId7136/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": [],\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"Limit\"\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\",\r\n \"sample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId7136/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 8\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId8586/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"newPet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId8586/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"Id\"\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId8586/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"DummyDateHeaderParam\"\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 2,\r\n \"name\": \"myreqpet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 3,\r\n \"name\": \"myresppet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": [],\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"Header1\"\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId8586/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"DefinedQueryParam\"\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"firstName\": \"string\",\r\n \"lastName\": \"string\",\r\n \"age\": 0\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"DefinedBodyParam\",\r\n \"generatedSample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype1 example\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype1 example\",\r\n \"sample\": \"contenttype1 example\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype2 example\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype2 example\",\r\n \"sample\": \"contenttype2 example\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId8586/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": [],\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"Limit\"\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n \"string\"\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\",\r\n \"sample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId8586/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"Id\"\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId8586/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": [],\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"Limit\"\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\",\r\n \"sample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId8586/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 8\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authorizationServerId440?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aG9yaXphdGlvblNlcnZlcklkNDQwP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authorizationServerId6315?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aG9yaXphdGlvblNlcnZlcklkNjMxNT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", "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\": \"oauth2scope2963\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"displayName\": \"authName978\",\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\": \"clientid7321\"\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\": \"oauth2scope5944\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"displayName\": \"authName9896\",\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\": \"clientid3173\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6772bc06-711f-482c-8f2f-60b23576db40" + "7b04d716-7177-46b0-8d75-b86535b3585b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -353,7 +410,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "545" + "546" ] }, "ResponseHeaders": { @@ -364,7 +421,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACmk=\"" + "\"AAAAAAAAOLU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -373,25 +430,25 @@ "nosniff" ], "x-ms-request-id": [ - "30853cb2-c8bf-4e79-a6a0-1f245c41d715" + "1ed40ae4-883e-4ba7-a7a6-a62674ae88dd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1189" ], "x-ms-correlation-request-id": [ - "30853cb2-c8bf-4e79-a6a0-1f245c41d715" + "1ed40ae4-883e-4ba7-a7a6-a62674ae88dd" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222448Z:30853cb2-c8bf-4e79-a6a0-1f245c41d715" + "GERMANYWESTCENTRAL:20230525T172643Z:1ed40ae4-883e-4ba7-a7a6-a62674ae88dd" ], "Date": [ - "Thu, 16 Mar 2023 22:24:47 GMT" + "Thu, 25 May 2023 17:26:42 GMT" ], "Content-Length": [ - "991" + "994" ], "Content-Type": [ "application/json; charset=utf-8" @@ -400,23 +457,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authorizationServerId440\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authorizationServerId440\",\r\n \"properties\": {\r\n \"displayName\": \"authName978\",\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\": \"oauth2scope2963\",\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\": \"clientid7321\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authorizationServerId6315\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authorizationServerId6315\",\r\n \"properties\": {\r\n \"displayName\": \"authName9896\",\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\": \"oauth2scope5944\",\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\": \"clientid3173\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1295?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDEyOTU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8106?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgxMDY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription672\",\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId440\",\r\n \"scope\": \"oauth2scope2644\"\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header1122\",\r\n \"query\": \"query2607\"\r\n },\r\n \"subscriptionRequired\": true,\r\n \"sourceApiId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId7136\",\r\n \"displayName\": \"apiname2713\",\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\": \"apidescription8791\",\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId6315\",\r\n \"scope\": \"oauth2scope3156\"\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header413\",\r\n \"query\": \"query654\"\r\n },\r\n \"subscriptionRequired\": true,\r\n \"sourceApiId\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId8586\",\r\n \"displayName\": \"apiname9795\",\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": [ - "d822c6aa-066b-41cc-81c9-b3e343522a06" + "eb4298f8-4102-4fe1-8604-8aed249913cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -436,7 +493,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACmo=\"" + "\"AAAAAAAAOLY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,22 +502,22 @@ "nosniff" ], "x-ms-request-id": [ - "1c635aa1-cfe4-4a99-883b-33713dd1defc" + "e8a37652-1b54-472f-9b23-d57b060a13ee" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1188" ], "x-ms-correlation-request-id": [ - "1c635aa1-cfe4-4a99-883b-33713dd1defc" + "e8a37652-1b54-472f-9b23-d57b060a13ee" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222449Z:1c635aa1-cfe4-4a99-883b-33713dd1defc" + "GERMANYWESTCENTRAL:20230525T172644Z:e8a37652-1b54-472f-9b23-d57b060a13ee" ], "Date": [ - "Thu, 16 Mar 2023 22:24:48 GMT" + "Thu, 25 May 2023 17:26:44 GMT" ], "Content-Length": [ "1198" @@ -472,17 +529,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1295\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1295\",\r\n \"properties\": {\r\n \"displayName\": \"apiname2713\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription672\",\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\": \"authorizationServerId440\",\r\n \"scope\": \"oauth2scope2644\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header1122\",\r\n \"query\": \"query2607\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8106\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid8106\",\r\n \"properties\": {\r\n \"displayName\": \"apiname9795\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription8791\",\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\": \"authorizationServerId6315\",\r\n \"scope\": \"oauth2scope3156\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header413\",\r\n \"query\": \"query654\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1295?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDEyOTU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8106?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgxMDY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -496,7 +553,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACmo=\"" + "\"AAAAAAAAOLY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,25 +562,25 @@ "nosniff" ], "x-ms-request-id": [ - "1133bac4-e789-4caf-8001-8daf2a91c64d" + "518b4e0f-9afd-46d5-ada3-60879c17600f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11979" ], "x-ms-correlation-request-id": [ - "1133bac4-e789-4caf-8001-8daf2a91c64d" + "518b4e0f-9afd-46d5-ada3-60879c17600f" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222519Z:1133bac4-e789-4caf-8001-8daf2a91c64d" + "GERMANYWESTCENTRAL:20230525T172714Z:518b4e0f-9afd-46d5-ada3-60879c17600f" ], "Date": [ - "Thu, 16 Mar 2023 22:25:18 GMT" + "Thu, 25 May 2023 17:27:14 GMT" ], "Content-Length": [ - "1416" + "1417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -532,23 +589,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1295\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1295\",\r\n \"properties\": {\r\n \"displayName\": \"apiname2713\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription672\",\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\": \"authorizationServerId440\",\r\n \"scope\": \"oauth2scope2644\"\r\n },\r\n \"openid\": null,\r\n \"oAuth2AuthenticationSettings\": [\r\n {\r\n \"authorizationServerId\": \"authorizationServerId440\",\r\n \"scope\": \"oauth2scope2644\"\r\n }\r\n ],\r\n \"openidAuthenticationSettings\": []\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header1122\",\r\n \"query\": \"query2607\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8106\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid8106\",\r\n \"properties\": {\r\n \"displayName\": \"apiname9795\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription8791\",\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\": \"authorizationServerId6315\",\r\n \"scope\": \"oauth2scope3156\"\r\n },\r\n \"openid\": null,\r\n \"oAuth2AuthenticationSettings\": [\r\n {\r\n \"authorizationServerId\": \"authorizationServerId6315\",\r\n \"scope\": \"oauth2scope3156\"\r\n }\r\n ],\r\n \"openidAuthenticationSettings\": []\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header413\",\r\n \"query\": \"query654\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1295?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDEyOTU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8106?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgxMDY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abe7f08d-13f7-495a-be8e-8d2e6955ab1c" + "ecf6fcc3-0e48-468a-b745-1405736d1623" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -562,7 +619,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACmo=\"" + "\"AAAAAAAAOLY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -571,25 +628,25 @@ "nosniff" ], "x-ms-request-id": [ - "e6876278-6b75-4345-84da-708d7ae7dd9b" + "dc96c677-dcc9-4eab-8f93-e6dbe248fc8e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11978" ], "x-ms-correlation-request-id": [ - "e6876278-6b75-4345-84da-708d7ae7dd9b" + "dc96c677-dcc9-4eab-8f93-e6dbe248fc8e" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222519Z:e6876278-6b75-4345-84da-708d7ae7dd9b" + "GERMANYWESTCENTRAL:20230525T172714Z:dc96c677-dcc9-4eab-8f93-e6dbe248fc8e" ], "Date": [ - "Thu, 16 Mar 2023 22:25:19 GMT" + "Thu, 25 May 2023 17:27:14 GMT" ], "Content-Length": [ - "1416" + "1417" ], "Content-Type": [ "application/json; charset=utf-8" @@ -598,23 +655,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1295\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1295\",\r\n \"properties\": {\r\n \"displayName\": \"apiname2713\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription672\",\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\": \"authorizationServerId440\",\r\n \"scope\": \"oauth2scope2644\"\r\n },\r\n \"openid\": null,\r\n \"oAuth2AuthenticationSettings\": [\r\n {\r\n \"authorizationServerId\": \"authorizationServerId440\",\r\n \"scope\": \"oauth2scope2644\"\r\n }\r\n ],\r\n \"openidAuthenticationSettings\": []\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header1122\",\r\n \"query\": \"query2607\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8106\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid8106\",\r\n \"properties\": {\r\n \"displayName\": \"apiname9795\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription8791\",\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\": \"authorizationServerId6315\",\r\n \"scope\": \"oauth2scope3156\"\r\n },\r\n \"openid\": null,\r\n \"oAuth2AuthenticationSettings\": [\r\n {\r\n \"authorizationServerId\": \"authorizationServerId6315\",\r\n \"scope\": \"oauth2scope3156\"\r\n }\r\n ],\r\n \"openidAuthenticationSettings\": []\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header413\",\r\n \"query\": \"query654\"\r\n },\r\n \"termsOfServiceUrl\": \"http://helloreverb.com/terms/\",\r\n \"contact\": {\r\n \"name\": \"Wordnik API Team\",\r\n \"url\": \"http://madskristensen.net\",\r\n \"email\": \"foo@example.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"MIT\",\r\n \"url\": \"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1295/operations?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDEyOTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8106/operations?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgxMDYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2edebc89-b81e-4b1a-a294-0a17fa4b109a" + "2291eb90-bc5a-4bb9-8d3b-e3ca4237ecd6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -634,22 +691,22 @@ "nosniff" ], "x-ms-request-id": [ - "7aabd219-d863-4f84-95a0-ac49169d74cf" + "92cded01-c3f0-4066-bf3c-7bfb88ef0948" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11977" ], "x-ms-correlation-request-id": [ - "7aabd219-d863-4f84-95a0-ac49169d74cf" + "92cded01-c3f0-4066-bf3c-7bfb88ef0948" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222519Z:7aabd219-d863-4f84-95a0-ac49169d74cf" + "GERMANYWESTCENTRAL:20230525T172715Z:92cded01-c3f0-4066-bf3c-7bfb88ef0948" ], "Date": [ - "Thu, 16 Mar 2023 22:25:19 GMT" + "Thu, 25 May 2023 17:27:14 GMT" ], "Content-Length": [ "28045" @@ -661,17 +718,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1295/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"newPet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1295/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"Id\"\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1295/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"DummyDateHeaderParam\"\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 2,\r\n \"name\": \"myreqpet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 3,\r\n \"name\": \"myresppet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": [],\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"Header1\"\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1295/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"DefinedQueryParam\"\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"firstName\": \"string\",\r\n \"lastName\": \"string\",\r\n \"age\": 0\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"DefinedBodyParam\",\r\n \"generatedSample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype1 example\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype1 example\",\r\n \"sample\": \"contenttype1 example\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype2 example\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype2 example\",\r\n \"sample\": \"contenttype2 example\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1295/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": [],\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"Limit\"\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n \"string\"\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\",\r\n \"sample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1295/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"Id\"\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1295/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": [],\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"Limit\"\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\",\r\n \"sample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"64139711217d201f300bb5e7\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1295/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 8\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8106/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"newPet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8106/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"Id\"\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8106/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"DummyDateHeaderParam\"\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 2,\r\n \"name\": \"myreqpet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 3,\r\n \"name\": \"myresppet\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": [],\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"Header1\"\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8106/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"DefinedQueryParam\"\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"firstName\": \"string\",\r\n \"lastName\": \"string\",\r\n \"age\": 0\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"DefinedBodyParam\",\r\n \"generatedSample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype1 example\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype1 example\",\r\n \"sample\": \"contenttype1 example\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"contenttype2 example\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"contenttype2 example\",\r\n \"sample\": \"contenttype2 example\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8106/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": [],\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"Limit\"\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n \"string\"\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\",\r\n \"sample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8106/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": [],\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"Id\"\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8106/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": [],\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"Limit\"\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": [\r\n {\r\n \"id\": 0,\r\n \"name\": \"string\",\r\n \"tag\": \"string\"\r\n }\r\n ]\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\",\r\n \"sample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": {\r\n \"code\": 0,\r\n \"message\": \"string\"\r\n }\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\",\r\n \"sample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"examples\": {\r\n \"default\": {\r\n \"value\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n },\r\n \"schemaId\": \"646f9a334634610e04147f22\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\",\r\n \"sample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8106/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 8\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId7136?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9zd2FnZ2VyQXBpSWQ3MTM2P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/swaggerApiId8586?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9zd2FnZ2VyQXBpSWQ4NTg2P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7a828a6-3168-4144-b827-008b007ece43" + "e1d0e69d-7f77-4d97-8fef-0be22f8ae170" ], "If-Match": [ "*" @@ -680,7 +737,7 @@ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -700,22 +757,22 @@ "nosniff" ], "x-ms-request-id": [ - "0a0a14fc-4ffa-4041-8aa3-ef5d2ff1b36e" + "c868f11f-d4c0-45d7-8704-1d740284901b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14993" ], "x-ms-correlation-request-id": [ - "0a0a14fc-4ffa-4041-8aa3-ef5d2ff1b36e" + "c868f11f-d4c0-45d7-8704-1d740284901b" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222519Z:0a0a14fc-4ffa-4041-8aa3-ef5d2ff1b36e" + "GERMANYWESTCENTRAL:20230525T172715Z:c868f11f-d4c0-45d7-8704-1d740284901b" ], "Date": [ - "Thu, 16 Mar 2023 22:25:19 GMT" + "Thu, 25 May 2023 17:27:15 GMT" ], "Expires": [ "-1" @@ -728,13 +785,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1295?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDEyOTU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8106?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgxMDY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab10ee53-672a-495b-84f1-148eb088fe06" + "9e167599-4bc5-4774-b0e9-610537139988" ], "If-Match": [ "*" @@ -743,7 +800,7 @@ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -763,22 +820,22 @@ "nosniff" ], "x-ms-request-id": [ - "356a96ef-d0d0-47c0-9e52-4f4f5710571a" + "af71b353-0ef9-45de-937d-86a2ca8fa5cf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14992" ], "x-ms-correlation-request-id": [ - "356a96ef-d0d0-47c0-9e52-4f4f5710571a" + "af71b353-0ef9-45de-937d-86a2ca8fa5cf" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222520Z:356a96ef-d0d0-47c0-9e52-4f4f5710571a" + "GERMANYWESTCENTRAL:20230525T172716Z:af71b353-0ef9-45de-937d-86a2ca8fa5cf" ], "Date": [ - "Thu, 16 Mar 2023 22:25:19 GMT" + "Thu, 25 May 2023 17:27:16 GMT" ], "Expires": [ "-1" @@ -791,13 +848,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authorizationServerId440?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aG9yaXphdGlvblNlcnZlcklkNDQwP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authorizationServerId6315?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aG9yaXphdGlvblNlcnZlcklkNjMxNT9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7219b5b3-0120-4f60-accb-58f6ef1bcc5e" + "6cd5f15a-514f-4d9f-bea9-f6f7d68e275b" ], "If-Match": [ "*" @@ -806,7 +863,7 @@ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -826,22 +883,22 @@ "nosniff" ], "x-ms-request-id": [ - "6f6cf515-13a9-482a-b4bd-c588397b54c5" + "7ad5ee50-27bb-4991-8f45-2d73b586a2b5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14991" ], "x-ms-correlation-request-id": [ - "6f6cf515-13a9-482a-b4bd-c588397b54c5" + "7ad5ee50-27bb-4991-8f45-2d73b586a2b5" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222520Z:6f6cf515-13a9-482a-b4bd-c588397b54c5" + "GERMANYWESTCENTRAL:20230525T172717Z:7ad5ee50-27bb-4991-8f45-2d73b586a2b5" ], "Date": [ - "Thu, 16 Mar 2023 22:25:20 GMT" + "Thu, 25 May 2023 17:27:16 GMT" ], "Expires": [ "-1" @@ -856,17 +913,17 @@ ], "Names": { "CloneApiUsingSourceApiId": [ - "authorizationServerId440", - "apiid1295", - "swaggerApiId7136", - "authName978", - "oauth2scope2963", - "clientid7321", - "apiname2713", - "apidescription672", - "header1122", - "query2607", - "oauth2scope2644" + "authorizationServerId6315", + "apiid8106", + "swaggerApiId8586", + "authName9896", + "oauth2scope5944", + "clientid3173", + "apiname9795", + "apidescription8791", + "header413", + "query654", + "oauth2scope3156" ] }, "Variables": { @@ -877,6 +934,7 @@ "TestBackupStorageAccount": "apimbackupmsi", "TestBackupUserMsiClientId": "a6270d0c-7d86-478b-8cbe-dc9047ba54f7", "TestBackupUserMsiResourceId": "/subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/net-sdk-backup-restore/providers/Microsoft.ManagedIdentity/userAssignedIdentities/apim-backup-restore-msi", + "Environment": "Prod", "SubId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15", "ServiceName": "sdktest20220801service", "Location": "centraluseuap", diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiTests/CreateListUpdateDelete.json index 1804ac854bcf..62c2b1a85b4a 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/ApiTests/CreateListUpdateDelete.json @@ -1,19 +1,76 @@ { "Entries": [ + { + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourcegroups/Apim-NetSdk-20220801?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlZ3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e085c0bf-322b-49e5-be96-5fa3b37264cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1623.17311", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "88119604-de75-48a7-a889-41c08c5a6748" + ], + "x-ms-correlation-request-id": [ + "88119604-de75-48a7-a889-41c08c5a6748" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20230525T172719Z:88119604-de75-48a7-a889-41c08c5a6748" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 25 May 2023 17:27:18 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, { "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service?api-version=2022-08-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2U/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "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\": \"centraluseuap\",\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\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"DateCreated\": \"5/25/2023 5:27:21 PM\",\r\n \"apiversion\": \"2022-08-01\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b54dfbac-6f19-4806-9c98-860854474c1c" + "bbb4d063-f97b-41fa-8196-0a8368f6b173" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -22,7 +79,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "346" + "354" ] }, "ResponseHeaders": { @@ -33,35 +90,35 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAqobk=\"" + "\"AAAAAAAtYG4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a6675fc9-fcee-41f3-ae0a-bc5620a8db5c", - "a6675fc9-fcee-41f3-ae0a-bc5620a8db5c" + "babe35a4-6958-4dcb-b1f0-a42fd620bdbd", + "babe35a4-6958-4dcb-b1f0-a42fd620bdbd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "23999" ], "x-ms-correlation-request-id": [ - "a6675fc9-fcee-41f3-ae0a-bc5620a8db5c" + "babe35a4-6958-4dcb-b1f0-a42fd620bdbd" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222523Z:a6675fc9-fcee-41f3-ae0a-bc5620a8db5c" + "GERMANYWESTCENTRAL:20230525T172723Z:babe35a4-6958-4dcb-b1f0-a42fd620bdbd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Mar 2023 22:25:23 GMT" + "Thu, 25 May 2023 17:27:23 GMT" ], "Content-Length": [ - "2928" + "2943" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,7 +127,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service\",\r\n \"name\": \"sdktest20220801service\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAqobk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2023-03-16T20:13:52.4280158Z\",\r\n \"gatewayUrl\": \"https://sdktest20220801service.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktest20220801service-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktest20220801service.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktest20220801service.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktest20220801service.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktest20220801service.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktest20220801service.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.112.149.88\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"natGatewayState\": \"Disabled\",\r\n \"outboundPublicIPAddresses\": [\r\n \"20.112.149.88\"\r\n ],\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"84a8af83-dcca-4370-9500-58a989bf9c13\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jikang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-03-16T20:13:52.3752772Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-03-16T22:09:53.3969618Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service\",\r\n \"name\": \"sdktest20220801service\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"DateCreated\": \"5/25/2023 5:27:21 PM\",\r\n \"apiversion\": \"2022-08-01\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAtYG4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2023-04-26T16:30:26.7911449Z\",\r\n \"gatewayUrl\": \"https://sdktest20220801service.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktest20220801service-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktest20220801service.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktest20220801service.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktest20220801service.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktest20220801service.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktest20220801service.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.228.49.143\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"natGatewayState\": \"Disabled\",\r\n \"outboundPublicIPAddresses\": [\r\n \"20.228.49.143\"\r\n ],\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a676137a-7ef9-49cd-a466-d87b143841da\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jikang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-03-16T20:13:52.3752772Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-04-26T16:30:26.1518098Z\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -80,13 +137,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52b6bd02-a010-4973-b37f-19698b3ec1b3" + "3dc32a42-0c42-4c7e-8f16-a6fbe99f0383" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -100,34 +157,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAqobk=\"" + "\"AAAAAAAtYG4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f29915f4-469c-4612-978b-a729797cb85f" + "d9400b9c-cb93-4ed1-9ab2-4e5ed4402aae" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11999" ], "x-ms-correlation-request-id": [ - "f29915f4-469c-4612-978b-a729797cb85f" + "d9400b9c-cb93-4ed1-9ab2-4e5ed4402aae" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222524Z:f29915f4-469c-4612-978b-a729797cb85f" + "GERMANYWESTCENTRAL:20230525T172724Z:d9400b9c-cb93-4ed1-9ab2-4e5ed4402aae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Mar 2023 22:25:23 GMT" + "Thu, 25 May 2023 17:27:24 GMT" ], "Content-Length": [ - "2928" + "2943" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,7 +193,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service\",\r\n \"name\": \"sdktest20220801service\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAqobk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2023-03-16T20:13:52.4280158Z\",\r\n \"gatewayUrl\": \"https://sdktest20220801service.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktest20220801service-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktest20220801service.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktest20220801service.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktest20220801service.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktest20220801service.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktest20220801service.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.112.149.88\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"natGatewayState\": \"Disabled\",\r\n \"outboundPublicIPAddresses\": [\r\n \"20.112.149.88\"\r\n ],\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"84a8af83-dcca-4370-9500-58a989bf9c13\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jikang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-03-16T20:13:52.3752772Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-03-16T22:09:53.3969618Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service\",\r\n \"name\": \"sdktest20220801service\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"DateCreated\": \"5/25/2023 5:27:21 PM\",\r\n \"apiversion\": \"2022-08-01\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAtYG4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2023-04-26T16:30:26.7911449Z\",\r\n \"gatewayUrl\": \"https://sdktest20220801service.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktest20220801service-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktest20220801service.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktest20220801service.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktest20220801service.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktest20220801service.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktest20220801service.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.228.49.143\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"natGatewayState\": \"Disabled\",\r\n \"outboundPublicIPAddresses\": [\r\n \"20.228.49.143\"\r\n ],\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a676137a-7ef9-49cd-a466-d87b143841da\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jikang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-03-16T20:13:52.3752772Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-04-26T16:30:26.1518098Z\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -146,13 +203,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83def333-de34-44a0-aaab-6c055f9eea39" + "3e911832-b0cd-46cd-98c6-289985d733c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -172,22 +229,22 @@ "nosniff" ], "x-ms-request-id": [ - "2e2811fc-4131-4d1e-8a10-d2ee80ea99a9" + "b51dbc61-bad0-4d8a-b785-b471f6547ad4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11998" ], "x-ms-correlation-request-id": [ - "2e2811fc-4131-4d1e-8a10-d2ee80ea99a9" + "b51dbc61-bad0-4d8a-b785-b471f6547ad4" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222524Z:2e2811fc-4131-4d1e-8a10-d2ee80ea99a9" + "GERMANYWESTCENTRAL:20230525T172724Z:b51dbc61-bad0-4d8a-b785-b471f6547ad4" ], "Date": [ - "Thu, 16 Mar 2023 22:25:23 GMT" + "Thu, 25 May 2023 17:27:24 GMT" ], "Content-Length": [ "989" @@ -209,13 +266,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96f9fe04-aa31-475d-8b50-5d8267bf9fa6" + "de0ef1eb-2705-4bf0-9a4b-b99ba02a3dd0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -229,7 +286,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACMo=\"" + "\"AAAAAAAACO4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -238,22 +295,22 @@ "nosniff" ], "x-ms-request-id": [ - "7394964f-055d-4fcd-ad5a-e66a33862f9a" + "9c2aaac1-987c-471c-af6c-bb0eea601d8d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11997" ], "x-ms-correlation-request-id": [ - "7394964f-055d-4fcd-ad5a-e66a33862f9a" + "9c2aaac1-987c-471c-af6c-bb0eea601d8d" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222524Z:7394964f-055d-4fcd-ad5a-e66a33862f9a" + "GERMANYWESTCENTRAL:20230525T172725Z:9c2aaac1-987c-471c-af6c-bb0eea601d8d" ], "Date": [ - "Thu, 16 Mar 2023 22:25:23 GMT" + "Thu, 25 May 2023 17:27:24 GMT" ], "Content-Length": [ "841" @@ -269,19 +326,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authorizationServerId8088?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aG9yaXphdGlvblNlcnZlcklkODA4OD9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authorizationServerId757?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aG9yaXphdGlvblNlcnZlcklkNzU3P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "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\": \"oauth2scope1570\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"displayName\": \"authName2127\",\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\": \"clientid9468\"\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\": \"oauth2scope2640\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"displayName\": \"authName2476\",\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\": \"clientid8400\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9ec6c6c5-7407-4ae5-9fca-c5e89831b10a" + "273e51cc-cef5-4e14-8ad4-4abb2fd0c026" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -301,7 +358,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACps=\"" + "\"AAAAAAAAOOc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -310,25 +367,25 @@ "nosniff" ], "x-ms-request-id": [ - "9c8aa976-5e4a-4111-8687-2e5991dd6605" + "8c0c1911-3ab7-459a-ba89-7eff4f741db5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "9c8aa976-5e4a-4111-8687-2e5991dd6605" + "8c0c1911-3ab7-459a-ba89-7eff4f741db5" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222524Z:9c8aa976-5e4a-4111-8687-2e5991dd6605" + "GERMANYWESTCENTRAL:20230525T172725Z:8c0c1911-3ab7-459a-ba89-7eff4f741db5" ], "Date": [ - "Thu, 16 Mar 2023 22:25:23 GMT" + "Thu, 25 May 2023 17:27:25 GMT" ], "Content-Length": [ - "994" + "992" ], "Content-Type": [ "application/json; charset=utf-8" @@ -337,23 +394,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authorizationServerId8088\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authorizationServerId8088\",\r\n \"properties\": {\r\n \"displayName\": \"authName2127\",\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\": \"oauth2scope1570\",\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\": \"clientid9468\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authorizationServerId757\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authorizationServerId757\",\r\n \"properties\": {\r\n \"displayName\": \"authName2476\",\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\": \"oauth2scope2640\",\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\": \"clientid8400\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDExNDU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgzMjY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription4554\",\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId8088\",\r\n \"scope\": \"oauth2scope884\"\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3693\",\r\n \"query\": \"query340\"\r\n },\r\n \"displayName\": \"apiname5715\",\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\": \"apidescription4590\",\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId757\",\r\n \"scope\": \"oauth2scope1427\"\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4717\",\r\n \"query\": \"query4824\"\r\n },\r\n \"displayName\": \"apiname9252\",\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": [ - "87ff19bc-4c21-4803-bc79-86eb54303631" + "e2a8269c-e14e-436b-ad4b-68e1cd8fb8e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -362,7 +419,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "519" + "520" ] }, "ResponseHeaders": { @@ -373,7 +430,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACpw=\"" + "\"AAAAAAAAOOk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -382,25 +439,25 @@ "nosniff" ], "x-ms-request-id": [ - "7ba0b967-6eb8-4ce0-95f5-9a854f981aff" + "fd9b8732-42e1-459f-8f2e-7a2c4f10f024" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "7ba0b967-6eb8-4ce0-95f5-9a854f981aff" + "fd9b8732-42e1-459f-8f2e-7a2c4f10f024" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222525Z:7ba0b967-6eb8-4ce0-95f5-9a854f981aff" + "GERMANYWESTCENTRAL:20230525T172726Z:fd9b8732-42e1-459f-8f2e-7a2c4f10f024" ], "Date": [ - "Thu, 16 Mar 2023 22:25:24 GMT" + "Thu, 25 May 2023 17:27:26 GMT" ], "Content-Length": [ - "881" + "882" ], "Content-Type": [ "application/json; charset=utf-8" @@ -409,17 +466,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1145\",\r\n \"properties\": {\r\n \"displayName\": \"apiname5715\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription4554\",\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\": \"authorizationServerId8088\",\r\n \"scope\": \"oauth2scope884\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3693\",\r\n \"query\": \"query340\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid8326\",\r\n \"properties\": {\r\n \"displayName\": \"apiname9252\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription4590\",\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\": \"authorizationServerId757\",\r\n \"scope\": \"oauth2scope1427\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4717\",\r\n \"query\": \"query4824\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDExNDU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgzMjY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -433,7 +490,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACpw=\"" + "\"AAAAAAAAOOk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -442,25 +499,25 @@ "nosniff" ], "x-ms-request-id": [ - "fb41e0c2-4b14-4143-a5d0-72ad5cdfd898" + "2d2505d2-3c6a-4a70-ae4c-62609c10fac6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11996" ], "x-ms-correlation-request-id": [ - "fb41e0c2-4b14-4143-a5d0-72ad5cdfd898" + "2d2505d2-3c6a-4a70-ae4c-62609c10fac6" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222555Z:fb41e0c2-4b14-4143-a5d0-72ad5cdfd898" + "GERMANYWESTCENTRAL:20230525T172756Z:2d2505d2-3c6a-4a70-ae4c-62609c10fac6" ], "Date": [ - "Thu, 16 Mar 2023 22:25:55 GMT" + "Thu, 25 May 2023 17:27:56 GMT" ], "Content-Length": [ - "1099" + "1100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -469,23 +526,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1145\",\r\n \"properties\": {\r\n \"displayName\": \"apiname5715\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription4554\",\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\": \"authorizationServerId8088\",\r\n \"scope\": \"oauth2scope884\"\r\n },\r\n \"openid\": null,\r\n \"oAuth2AuthenticationSettings\": [\r\n {\r\n \"authorizationServerId\": \"authorizationServerId8088\",\r\n \"scope\": \"oauth2scope884\"\r\n }\r\n ],\r\n \"openidAuthenticationSettings\": []\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3693\",\r\n \"query\": \"query340\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid8326\",\r\n \"properties\": {\r\n \"displayName\": \"apiname9252\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription4590\",\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\": \"authorizationServerId757\",\r\n \"scope\": \"oauth2scope1427\"\r\n },\r\n \"openid\": null,\r\n \"oAuth2AuthenticationSettings\": [\r\n {\r\n \"authorizationServerId\": \"authorizationServerId757\",\r\n \"scope\": \"oauth2scope1427\"\r\n }\r\n ],\r\n \"openidAuthenticationSettings\": []\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4717\",\r\n \"query\": \"query4824\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDExNDU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgzMjY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a44f113-bb23-422b-8260-7ded81f70191" + "e9aa8a29-a545-4408-8911-041911abe872" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -499,7 +556,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACpw=\"" + "\"AAAAAAAAOOk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -508,25 +565,25 @@ "nosniff" ], "x-ms-request-id": [ - "f64e8009-10ce-460a-aea4-f83c71237102" + "ef0e57ca-6772-441d-8a31-c1a42a5e34e3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11995" ], "x-ms-correlation-request-id": [ - "f64e8009-10ce-460a-aea4-f83c71237102" + "ef0e57ca-6772-441d-8a31-c1a42a5e34e3" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222555Z:f64e8009-10ce-460a-aea4-f83c71237102" + "GERMANYWESTCENTRAL:20230525T172757Z:ef0e57ca-6772-441d-8a31-c1a42a5e34e3" ], "Date": [ - "Thu, 16 Mar 2023 22:25:55 GMT" + "Thu, 25 May 2023 17:27:56 GMT" ], "Content-Length": [ - "1099" + "1100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -535,23 +592,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1145\",\r\n \"properties\": {\r\n \"displayName\": \"apiname5715\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription4554\",\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\": \"authorizationServerId8088\",\r\n \"scope\": \"oauth2scope884\"\r\n },\r\n \"openid\": null,\r\n \"oAuth2AuthenticationSettings\": [\r\n {\r\n \"authorizationServerId\": \"authorizationServerId8088\",\r\n \"scope\": \"oauth2scope884\"\r\n }\r\n ],\r\n \"openidAuthenticationSettings\": []\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3693\",\r\n \"query\": \"query340\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid8326\",\r\n \"properties\": {\r\n \"displayName\": \"apiname9252\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription4590\",\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\": \"authorizationServerId757\",\r\n \"scope\": \"oauth2scope1427\"\r\n },\r\n \"openid\": null,\r\n \"oAuth2AuthenticationSettings\": [\r\n {\r\n \"authorizationServerId\": \"authorizationServerId757\",\r\n \"scope\": \"oauth2scope1427\"\r\n }\r\n ],\r\n \"openidAuthenticationSettings\": []\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4717\",\r\n \"query\": \"query4824\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDExNDU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgzMjY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "241228d1-2569-47ce-9eca-040953c7f90a" + "667d52ce-952d-4c47-8b4b-aafa8fb1fbff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -565,7 +622,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACqE=\"" + "\"AAAAAAAAOO4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -574,25 +631,25 @@ "nosniff" ], "x-ms-request-id": [ - "7879ead8-2665-4c16-9aac-2e1759540558" + "6b819330-541d-4e64-9aee-6cebc7d129db" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11993" ], "x-ms-correlation-request-id": [ - "7879ead8-2665-4c16-9aac-2e1759540558" + "6b819330-541d-4e64-9aee-6cebc7d129db" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222556Z:7879ead8-2665-4c16-9aac-2e1759540558" + "GERMANYWESTCENTRAL:20230525T172758Z:6b819330-541d-4e64-9aee-6cebc7d129db" ], "Date": [ - "Thu, 16 Mar 2023 22:25:56 GMT" + "Thu, 25 May 2023 17:27:58 GMT" ], "Content-Length": [ - "876" + "1113" ], "Content-Type": [ "application/json; charset=utf-8" @@ -601,23 +658,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1145\",\r\n \"properties\": {\r\n \"displayName\": \"patchedname5174\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"patchedDescription2718\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"patchedPath2044\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null,\r\n \"oAuth2AuthenticationSettings\": [],\r\n \"openidAuthenticationSettings\": []\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3693\",\r\n \"query\": \"query340\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid8326\",\r\n \"properties\": {\r\n \"displayName\": \"patchedname6733\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"patchedDescription7366\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"patchedPath7737\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId757\",\r\n \"scope\": \"oauth2scope1427\"\r\n },\r\n \"openid\": null,\r\n \"oAuth2AuthenticationSettings\": [\r\n {\r\n \"authorizationServerId\": \"authorizationServerId757\",\r\n \"scope\": \"oauth2scope1427\"\r\n }\r\n ],\r\n \"openidAuthenticationSettings\": []\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4717\",\r\n \"query\": \"query4824\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDExNDU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgzMjY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eac0b0e5-21fe-4dc7-bd29-7c3e835de18a" + "7ce688b5-0ad9-44eb-aa30-7bb88ff66b02" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -631,7 +688,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACqY=\"" + "\"AAAAAAAAOPQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -640,25 +697,25 @@ "nosniff" ], "x-ms-request-id": [ - "74947a0d-f0cc-4889-89e7-d2621beade96" + "b685b07d-6eba-4542-9296-5b96440adecb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11991" ], "x-ms-correlation-request-id": [ - "74947a0d-f0cc-4889-89e7-d2621beade96" + "b685b07d-6eba-4542-9296-5b96440adecb" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222556Z:74947a0d-f0cc-4889-89e7-d2621beade96" + "GERMANYWESTCENTRAL:20230525T172800Z:b685b07d-6eba-4542-9296-5b96440adecb" ], "Date": [ - "Thu, 16 Mar 2023 22:25:56 GMT" + "Thu, 25 May 2023 17:27:59 GMT" ], "Content-Length": [ - "1176" + "1412" ], "Content-Type": [ "application/json; charset=utf-8" @@ -667,23 +724,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1145\",\r\n \"properties\": {\r\n \"displayName\": \"patchednametos4751\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"patchedDescriptiontos2088\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"patchedPathtos6022\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null,\r\n \"oAuth2AuthenticationSettings\": [],\r\n \"openidAuthenticationSettings\": []\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3693\",\r\n \"query\": \"query340\"\r\n },\r\n \"termsOfServiceUrl\": \"https://fabrikam.com/tos\",\r\n \"contact\": {\r\n \"name\": \"Alice\",\r\n \"url\": \"https://fabrikam.com/alice\",\r\n \"email\": \"alice@fabrikam.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"Fabrikam license\",\r\n \"url\": \"https://fabrikam.com/license\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid8326\",\r\n \"properties\": {\r\n \"displayName\": \"patchednametos4895\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"patchedDescriptiontos594\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"patchedPathtos3063\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId757\",\r\n \"scope\": \"oauth2scope1427\"\r\n },\r\n \"openid\": null,\r\n \"oAuth2AuthenticationSettings\": [\r\n {\r\n \"authorizationServerId\": \"authorizationServerId757\",\r\n \"scope\": \"oauth2scope1427\"\r\n }\r\n ],\r\n \"openidAuthenticationSettings\": []\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4717\",\r\n \"query\": \"query4824\"\r\n },\r\n \"termsOfServiceUrl\": \"https://fabrikam.com/tos\",\r\n \"contact\": {\r\n \"name\": \"Alice\",\r\n \"url\": \"https://fabrikam.com/alice\",\r\n \"email\": \"alice@fabrikam.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"Fabrikam license\",\r\n \"url\": \"https://fabrikam.com/license\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDExNDU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgzMjY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c0f464e-457e-4854-a249-29391ced1846" + "5805f285-07a1-434d-a10a-574eb3a16cd1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -703,22 +760,22 @@ "nosniff" ], "x-ms-request-id": [ - "3cd13e28-0027-427a-ba8c-9463ddd7b606" + "2acd61ed-1333-4501-9482-6aff835629ba" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11984" ], "x-ms-correlation-request-id": [ - "3cd13e28-0027-427a-ba8c-9463ddd7b606" + "2acd61ed-1333-4501-9482-6aff835629ba" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222628Z:3cd13e28-0027-427a-ba8c-9463ddd7b606" + "GERMANYWESTCENTRAL:20230525T172836Z:2acd61ed-1333-4501-9482-6aff835629ba" ], "Date": [ - "Thu, 16 Mar 2023 22:26:28 GMT" + "Thu, 25 May 2023 17:28:35 GMT" ], "Content-Length": [ "79" @@ -734,19 +791,82 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDExNDU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgzMjY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7c4b800-3b07-4cbe-a356-b2a1e26fa9d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1623.17311", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAOOk=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e22b315c-81a5-4bc6-9933-733f810b7c22" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "e22b315c-81a5-4bc6-9933-733f810b7c22" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20230525T172757Z:e22b315c-81a5-4bc6-9933-733f810b7c22" + ], + "Date": [ + "Thu, 25 May 2023 17:27:56 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgzMjY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d530517f-4c0f-4be0-979b-bd870e8216c5" + "4e78c253-a111-4a43-b4d5-ba3cfdb7e21a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -760,7 +880,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACpw=\"" + "\"AAAAAAAAOO4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -769,22 +889,22 @@ "nosniff" ], "x-ms-request-id": [ - "8ad4c54f-75b4-4c0c-a968-5c90b17847cc" + "9061774f-0079-443b-8fd9-231538d9e642" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11992" ], "x-ms-correlation-request-id": [ - "8ad4c54f-75b4-4c0c-a968-5c90b17847cc" + "9061774f-0079-443b-8fd9-231538d9e642" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222555Z:8ad4c54f-75b4-4c0c-a968-5c90b17847cc" + "GERMANYWESTCENTRAL:20230525T172759Z:9061774f-0079-443b-8fd9-231538d9e642" ], "Date": [ - "Thu, 16 Mar 2023 22:25:55 GMT" + "Thu, 25 May 2023 17:27:58 GMT" ], "Content-Length": [ "0" @@ -797,19 +917,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDExNDU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgzMjY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c12474cd-8afb-44ab-afba-fcf5f33d87b5" + "f1c00b3d-5b1c-4d67-9003-6c9e0b4e16ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -823,7 +943,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACqE=\"" + "\"AAAAAAAAOPQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -832,22 +952,22 @@ "nosniff" ], "x-ms-request-id": [ - "faa414e0-4fd7-41a2-9a36-8dfbb49ec274" + "cab7fba6-b175-4d6f-9cf2-b52abff4f5d7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11986" ], "x-ms-correlation-request-id": [ - "faa414e0-4fd7-41a2-9a36-8dfbb49ec274" + "cab7fba6-b175-4d6f-9cf2-b52abff4f5d7" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222556Z:faa414e0-4fd7-41a2-9a36-8dfbb49ec274" + "GERMANYWESTCENTRAL:20230525T172833Z:cab7fba6-b175-4d6f-9cf2-b52abff4f5d7" ], "Date": [ - "Thu, 16 Mar 2023 22:25:56 GMT" + "Thu, 25 May 2023 17:28:32 GMT" ], "Content-Length": [ "0" @@ -860,22 +980,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDExNDU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgzMjY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription2718\",\r\n \"authenticationSettings\": {},\r\n \"displayName\": \"patchedname5174\",\r\n \"path\": \"patchedPath2044\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription7366\",\r\n \"authenticationSettings\": {\r\n \"oAuth2AuthenticationSettings\": [\r\n {\r\n \"authorizationServerId\": \"authorizationServerId757\",\r\n \"scope\": \"oauth2scope1427\"\r\n }\r\n ]\r\n },\r\n \"displayName\": \"patchedname6733\",\r\n \"path\": \"patchedPath7737\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "79b8946c-1cc9-4a17-a402-bef7cf4b64ca" + "a9453c45-1d87-456f-8e07-4f2ca5320b1c" ], "If-Match": [ - "\"AAAAAAAACpw=\"" + "\"AAAAAAAAOOk=\"" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -884,7 +1004,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "179" + "359" ] }, "ResponseHeaders": { @@ -895,7 +1015,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACqE=\"" + "\"AAAAAAAAOO4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -904,25 +1024,100 @@ "nosniff" ], "x-ms-request-id": [ - "3665f74c-744d-4d84-8284-8e884f3b0639" + "c201e82f-0534-4f3f-993e-b192d9204d92" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" + ], + "x-ms-correlation-request-id": [ + "c201e82f-0534-4f3f-993e-b192d9204d92" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20230525T172758Z:c201e82f-0534-4f3f-993e-b192d9204d92" + ], + "Date": [ + "Thu, 25 May 2023 17:27:57 GMT" + ], + "Content-Length": [ + "895" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid8326\",\r\n \"properties\": {\r\n \"displayName\": \"patchedname6733\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"patchedDescription7366\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"patchedPath7737\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId757\",\r\n \"scope\": \"oauth2scope1427\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4717\",\r\n \"query\": \"query4824\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgzMjY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescriptiontos594\",\r\n \"termsOfServiceUrl\": \"https://fabrikam.com/tos\",\r\n \"contact\": {\r\n \"name\": \"Alice\",\r\n \"url\": \"https://fabrikam.com/alice\",\r\n \"email\": \"alice@fabrikam.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"Fabrikam license\",\r\n \"url\": \"https://fabrikam.com/license\"\r\n },\r\n \"displayName\": \"patchednametos4895\",\r\n \"path\": \"patchedPathtos3063\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a9cc1a8-80d1-4483-87cf-8a3d692aefb0" + ], + "If-Match": [ + "\"AAAAAAAAOO4=\"" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1623.17311", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "443" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAOPQ=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3a6f99a2-c434-4a7f-af19-5b33aa371599" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "3665f74c-744d-4d84-8284-8e884f3b0639" + "3a6f99a2-c434-4a7f-af19-5b33aa371599" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222556Z:3665f74c-744d-4d84-8284-8e884f3b0639" + "GERMANYWESTCENTRAL:20230525T172759Z:3a6f99a2-c434-4a7f-af19-5b33aa371599" ], "Date": [ - "Thu, 16 Mar 2023 22:25:55 GMT" + "Thu, 25 May 2023 17:27:59 GMT" ], "Content-Length": [ - "790" + "1194" ], "Content-Type": [ "application/json; charset=utf-8" @@ -931,26 +1126,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1145\",\r\n \"properties\": {\r\n \"displayName\": \"patchedname5174\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"patchedDescription2718\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"patchedPath2044\",\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\": \"header3693\",\r\n \"query\": \"query340\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid8326\",\r\n \"properties\": {\r\n \"displayName\": \"patchednametos4895\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"patchedDescriptiontos594\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"patchedPathtos3063\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId757\",\r\n \"scope\": \"oauth2scope1427\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4717\",\r\n \"query\": \"query4824\"\r\n },\r\n \"termsOfServiceUrl\": \"https://fabrikam.com/tos\",\r\n \"contact\": {\r\n \"name\": \"Alice\",\r\n \"url\": \"https://fabrikam.com/alice\",\r\n \"email\": \"alice@fabrikam.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"Fabrikam license\",\r\n \"url\": \"https://fabrikam.com/license\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDExNDU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgzMjY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescriptiontos2088\",\r\n \"termsOfServiceUrl\": \"https://fabrikam.com/tos\",\r\n \"contact\": {\r\n \"name\": \"Alice\",\r\n \"url\": \"https://fabrikam.com/alice\",\r\n \"email\": \"alice@fabrikam.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"Fabrikam license\",\r\n \"url\": \"https://fabrikam.com/license\"\r\n },\r\n \"displayName\": \"patchednametos4751\",\r\n \"path\": \"patchedPathtos6022\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"authenticationSettings\": {\r\n \"openidAuthenticationSettings\": [\r\n {\r\n \"openidProviderId\": \"openId1825\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5f5d984c-6b85-4bbf-8398-3bf2bfadca40" + "d70a6287-612d-45a5-ab06-d7864b23d625" ], "If-Match": [ - "\"AAAAAAAACqE=\"" + "\"AAAAAAAAOPQ=\"" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -959,7 +1154,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "444" + "184" ] }, "ResponseHeaders": { @@ -970,7 +1165,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACqY=\"" + "\"AAAAAAAAOP8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -979,7 +1174,7 @@ "nosniff" ], "x-ms-request-id": [ - "2248a49f-917a-42b9-b090-c2132f68523e" + "51503765-d5be-4297-aba3-be02de99127c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -988,16 +1183,16 @@ "1193" ], "x-ms-correlation-request-id": [ - "2248a49f-917a-42b9-b090-c2132f68523e" + "51503765-d5be-4297-aba3-be02de99127c" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222556Z:2248a49f-917a-42b9-b090-c2132f68523e" + "GERMANYWESTCENTRAL:20230525T172833Z:51503765-d5be-4297-aba3-be02de99127c" ], "Date": [ - "Thu, 16 Mar 2023 22:25:56 GMT" + "Thu, 25 May 2023 17:28:33 GMT" ], "Content-Length": [ - "1090" + "1182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1006,23 +1201,167 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1145\",\r\n \"properties\": {\r\n \"displayName\": \"patchednametos4751\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"patchedDescriptiontos2088\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"patchedPathtos6022\",\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\": \"header3693\",\r\n \"query\": \"query340\"\r\n },\r\n \"termsOfServiceUrl\": \"https://fabrikam.com/tos\",\r\n \"contact\": {\r\n \"name\": \"Alice\",\r\n \"url\": \"https://fabrikam.com/alice\",\r\n \"email\": \"alice@fabrikam.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"Fabrikam license\",\r\n \"url\": \"https://fabrikam.com/license\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid8326\",\r\n \"properties\": {\r\n \"displayName\": \"patchednametos4895\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"patchedDescriptiontos594\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"patchedPathtos3063\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": {\r\n \"openidProviderId\": \"openId1825\",\r\n \"bearerTokenSendingMethods\": null\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4717\",\r\n \"query\": \"query4824\"\r\n },\r\n \"termsOfServiceUrl\": \"https://fabrikam.com/tos\",\r\n \"contact\": {\r\n \"name\": \"Alice\",\r\n \"url\": \"https://fabrikam.com/alice\",\r\n \"email\": \"alice@fabrikam.com\"\r\n },\r\n \"license\": {\r\n \"name\": \"Fabrikam license\",\r\n \"url\": \"https://fabrikam.com/license\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId3830?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQzODMwP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgzMjY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId757\",\r\n \"scope\": \"oauth2scope1427\"\r\n },\r\n \"oAuth2AuthenticationSettings\": [\r\n {\r\n \"authorizationServerId\": \"authorizationServerId757\",\r\n \"scope\": \"oauth2scope1427\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6d30ee7-6310-454c-8d8e-64e6082c9d81" + ], + "If-Match": [ + "\"AAAAAAAAOPQ=\"" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1623.17311", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "369" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0e60494c-cc92-46fc-bfb4-4058f8c9a9bf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "0e60494c-cc92-46fc-bfb4-4058f8c9a9bf" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20230525T172834Z:0e60494c-cc92-46fc-bfb4-4058f8c9a9bf" + ], + "Date": [ + "Thu, 25 May 2023 17:28:33 GMT" + ], + "Content-Length": [ + "142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ValidationError\",\r\n \"message\": \"Cannot use OAuth2AuthenticationSettings in combination with OAuth2 nor openid.\",\r\n \"details\": null\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgzMjY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"authenticationSettings\": {\r\n \"openid\": {\r\n \"openidProviderId\": \"openId1825\"\r\n },\r\n \"openidAuthenticationSettings\": [\r\n {\r\n \"openidProviderId\": \"openId1825\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d00ed707-a648-4bdb-ab81-70c4fe615c3f" + ], + "If-Match": [ + "\"AAAAAAAAOPQ=\"" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1623.17311", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "255" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f5d4ae3e-e3db-40c3-a83e-3956578728c6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "f5d4ae3e-e3db-40c3-a83e-3956578728c6" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20230525T172835Z:f5d4ae3e-e3db-40c3-a83e-3956578728c6" + ], + "Date": [ + "Thu, 25 May 2023 17:28:34 GMT" + ], + "Content-Length": [ + "142" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ValidationError\",\r\n \"message\": \"Cannot use OpenidAuthenticationSettings in combination with Openid nor OAuth2.\",\r\n \"details\": null\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1825?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQxODI1P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName8728\",\r\n \"metadataEndpoint\": \"https://provider3126.endpoint2448\",\r\n \"clientId\": \"clientId420\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName5317\",\r\n \"metadataEndpoint\": \"https://provider9698.endpoint4962\",\r\n \"clientId\": \"clientId5427\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f22d015c-3f9f-471c-85c0-05e56b9d4e98" + "09160c2d-c188-4b42-aab5-2f474c2b051f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -1031,7 +1370,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "159" + "160" ] }, "ResponseHeaders": { @@ -1042,7 +1381,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACqw=\"" + "\"AAAAAAAAOPk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1051,25 +1390,25 @@ "nosniff" ], "x-ms-request-id": [ - "fe04c811-6094-43ab-bb55-18864e14d9b9" + "21828f0b-1e6b-4953-9ae0-7d1e5284cc13" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1195" ], "x-ms-correlation-request-id": [ - "fe04c811-6094-43ab-bb55-18864e14d9b9" + "21828f0b-1e6b-4953-9ae0-7d1e5284cc13" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222557Z:fe04c811-6094-43ab-bb55-18864e14d9b9" + "GERMANYWESTCENTRAL:20230525T172800Z:21828f0b-1e6b-4953-9ae0-7d1e5284cc13" ], "Date": [ - "Thu, 16 Mar 2023 22:25:57 GMT" + "Thu, 25 May 2023 17:28:00 GMT" ], "Content-Length": [ - "478" + "479" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1078,23 +1417,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId3830\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId3830\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName8728\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider3126.endpoint2448\",\r\n \"clientId\": \"clientId420\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1825\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId1825\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5317\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider9698.endpoint4962\",\r\n \"clientId\": \"clientId5427\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid3358?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9vcGVuQXBpaWQzMzU4P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid1652?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9vcGVuQXBpaWQxNjUyP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription8478\",\r\n \"authenticationSettings\": {\r\n \"openid\": {\r\n \"openidProviderId\": \"openId3830\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3693\",\r\n \"query\": \"query340\"\r\n },\r\n \"displayName\": \"apiname1720\",\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\": \"apidescription9906\",\r\n \"authenticationSettings\": {\r\n \"openid\": {\r\n \"openidProviderId\": \"openId1825\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4717\",\r\n \"query\": \"query4824\"\r\n },\r\n \"displayName\": \"apiname8539\",\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": [ - "b6e59cc2-e509-4fe1-8133-e76a3c970dc0" + "b1b42e85-4ed2-44ef-b31d-7aa839d5f7f3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -1103,7 +1442,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "553" + "554" ] }, "ResponseHeaders": { @@ -1114,7 +1453,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACq0=\"" + "\"AAAAAAAAOPo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1123,25 +1462,25 @@ "nosniff" ], "x-ms-request-id": [ - "1f9ba537-67d2-4a10-9b04-aa154176c823" + "2e7aff79-7c93-4df5-b0dc-641865568b23" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1194" ], "x-ms-correlation-request-id": [ - "1f9ba537-67d2-4a10-9b04-aa154176c823" + "2e7aff79-7c93-4df5-b0dc-641865568b23" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222557Z:1f9ba537-67d2-4a10-9b04-aa154176c823" + "GERMANYWESTCENTRAL:20230525T172801Z:2e7aff79-7c93-4df5-b0dc-641865568b23" ], "Date": [ - "Thu, 16 Mar 2023 22:25:57 GMT" + "Thu, 25 May 2023 17:28:01 GMT" ], "Content-Length": [ - "923" + "924" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1150,17 +1489,83 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid3358\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid3358\",\r\n \"properties\": {\r\n \"displayName\": \"apiname1720\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription8478\",\r\n \"subscriptionRequired\": true,\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\": \"openId3830\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3693\",\r\n \"query\": \"query340\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid1652\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid1652\",\r\n \"properties\": {\r\n \"displayName\": \"apiname8539\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription9906\",\r\n \"subscriptionRequired\": true,\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\": \"openId1825\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4717\",\r\n \"query\": \"query4824\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid3358?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9vcGVuQXBpaWQzMzU4P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid1652?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9vcGVuQXBpaWQxNjUyP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/6.0.1623.17311", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAOPo=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9fd82908-5a4a-4d0a-aafd-803a4061e4df" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "9fd82908-5a4a-4d0a-aafd-803a4061e4df" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20230525T172831Z:9fd82908-5a4a-4d0a-aafd-803a4061e4df" + ], + "Date": [ + "Thu, 25 May 2023 17:28:31 GMT" + ], + "Content-Length": [ + "1175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid1652\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid1652\",\r\n \"properties\": {\r\n \"displayName\": \"apiname8539\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription9906\",\r\n \"subscriptionRequired\": true,\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\": \"openId1825\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n },\r\n \"oAuth2AuthenticationSettings\": [],\r\n \"openidAuthenticationSettings\": [\r\n {\r\n \"openidProviderId\": \"openId1825\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4717\",\r\n \"query\": \"query4824\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid1652?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9vcGVuQXBpaWQxNjUyP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "57c3a45d-414e-4f1f-98d7-4eed7e0e96c1" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -1174,7 +1579,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACq0=\"" + "\"AAAAAAAAOPo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1183,25 +1588,25 @@ "nosniff" ], "x-ms-request-id": [ - "e6431b99-7142-4040-aa01-9bf8825cc671" + "6f01bbc8-ab33-42b1-8f8b-66e1446489c1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11989" ], "x-ms-correlation-request-id": [ - "e6431b99-7142-4040-aa01-9bf8825cc671" + "6f01bbc8-ab33-42b1-8f8b-66e1446489c1" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222627Z:e6431b99-7142-4040-aa01-9bf8825cc671" + "GERMANYWESTCENTRAL:20230525T172832Z:6f01bbc8-ab33-42b1-8f8b-66e1446489c1" ], "Date": [ - "Thu, 16 Mar 2023 22:26:27 GMT" + "Thu, 25 May 2023 17:28:31 GMT" ], "Content-Length": [ - "1174" + "1175" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1210,23 +1615,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid3358\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid3358\",\r\n \"properties\": {\r\n \"displayName\": \"apiname1720\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription8478\",\r\n \"subscriptionRequired\": true,\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\": \"openId3830\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n },\r\n \"oAuth2AuthenticationSettings\": [],\r\n \"openidAuthenticationSettings\": [\r\n {\r\n \"openidProviderId\": \"openId3830\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3693\",\r\n \"query\": \"query340\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid1652\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid1652\",\r\n \"properties\": {\r\n \"displayName\": \"apiname8539\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription9906\",\r\n \"subscriptionRequired\": true,\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\": \"openId1825\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n },\r\n \"oAuth2AuthenticationSettings\": [],\r\n \"openidAuthenticationSettings\": [\r\n {\r\n \"openidProviderId\": \"openId1825\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4717\",\r\n \"query\": \"query4824\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid3358?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9vcGVuQXBpaWQzMzU4P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid1652?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9vcGVuQXBpaWQxNjUyP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d834564b-d385-4729-909f-dba23153102f" + "39bb0302-1b2d-439e-a945-5ad495e9a4e5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -1240,7 +1645,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACq0=\"" + "\"AAAAAAAAOPo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1249,25 +1654,25 @@ "nosniff" ], "x-ms-request-id": [ - "774d094d-3ee9-4905-8f07-c65f678805c1" + "5732fcb9-edbc-46e7-b74a-915ecb1db121" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11985" ], "x-ms-correlation-request-id": [ - "774d094d-3ee9-4905-8f07-c65f678805c1" + "5732fcb9-edbc-46e7-b74a-915ecb1db121" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222627Z:774d094d-3ee9-4905-8f07-c65f678805c1" + "GERMANYWESTCENTRAL:20230525T172834Z:5732fcb9-edbc-46e7-b74a-915ecb1db121" ], "Date": [ - "Thu, 16 Mar 2023 22:26:27 GMT" + "Thu, 25 May 2023 17:28:33 GMT" ], "Content-Length": [ - "1174" + "1175" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1276,23 +1681,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid3358\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid3358\",\r\n \"properties\": {\r\n \"displayName\": \"apiname1720\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription8478\",\r\n \"subscriptionRequired\": true,\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\": \"openId3830\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n },\r\n \"oAuth2AuthenticationSettings\": [],\r\n \"openidAuthenticationSettings\": [\r\n {\r\n \"openidProviderId\": \"openId3830\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3693\",\r\n \"query\": \"query340\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid1652\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid1652\",\r\n \"properties\": {\r\n \"displayName\": \"apiname8539\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription9906\",\r\n \"subscriptionRequired\": true,\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\": \"openId1825\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n },\r\n \"oAuth2AuthenticationSettings\": [],\r\n \"openidAuthenticationSettings\": [\r\n {\r\n \"openidProviderId\": \"openId1825\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4717\",\r\n \"query\": \"query4824\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid3358?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9vcGVuQXBpaWQzMzU4P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid1652?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9vcGVuQXBpaWQxNjUyP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "378ff961-db21-4274-bacc-3b3dbbfe6099" + "36a1d63b-1137-45e5-b620-f04ce15b143b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -1312,22 +1717,22 @@ "nosniff" ], "x-ms-request-id": [ - "f160e959-abc3-4e94-9cae-8c30e8c880c5" + "8ad793bf-65ea-4e45-b809-ffe5cb398a8f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11983" ], "x-ms-correlation-request-id": [ - "f160e959-abc3-4e94-9cae-8c30e8c880c5" + "8ad793bf-65ea-4e45-b809-ffe5cb398a8f" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222629Z:f160e959-abc3-4e94-9cae-8c30e8c880c5" + "GERMANYWESTCENTRAL:20230525T172837Z:8ad793bf-65ea-4e45-b809-ffe5cb398a8f" ], "Date": [ - "Thu, 16 Mar 2023 22:26:28 GMT" + "Thu, 25 May 2023 17:28:36 GMT" ], "Content-Length": [ "79" @@ -1349,13 +1754,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20522a16-c10e-435b-b300-725e3f5268eb" + "d112e269-7297-4476-bd66-43183e21db7f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -1375,25 +1780,25 @@ "nosniff" ], "x-ms-request-id": [ - "5f4aeb6b-1a3d-4ab3-ba5c-59e724f70a30" + "4fdcacc9-9c62-4804-a92c-74bef625a3e1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11988" ], "x-ms-correlation-request-id": [ - "5f4aeb6b-1a3d-4ab3-ba5c-59e724f70a30" + "4fdcacc9-9c62-4804-a92c-74bef625a3e1" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222628Z:5f4aeb6b-1a3d-4ab3-ba5c-59e724f70a30" + "GERMANYWESTCENTRAL:20230525T172832Z:4fdcacc9-9c62-4804-a92c-74bef625a3e1" ], "Date": [ - "Thu, 16 Mar 2023 22:26:27 GMT" + "Thu, 25 May 2023 17:28:31 GMT" ], "Content-Length": [ - "1624" + "1625" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1402,7 +1807,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid3358\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid3358\",\r\n \"properties\": {\r\n \"displayName\": \"apiname1720\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription8478\",\r\n \"subscriptionRequired\": true,\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\": \"openId3830\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n },\r\n \"oAuth2AuthenticationSettings\": [],\r\n \"openidAuthenticationSettings\": [\r\n {\r\n \"openidProviderId\": \"openId3830\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header3693\",\r\n \"query\": \"query340\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis?%24top=1&api-version=2022-08-01&%24skip=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid1652\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"openApiid1652\",\r\n \"properties\": {\r\n \"displayName\": \"apiname8539\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription9906\",\r\n \"subscriptionRequired\": true,\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\": \"openId1825\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n },\r\n \"oAuth2AuthenticationSettings\": [],\r\n \"openidAuthenticationSettings\": [\r\n {\r\n \"openidProviderId\": \"openId1825\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4717\",\r\n \"query\": \"query4824\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis?%24top=1&api-version=2022-08-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { @@ -1412,13 +1817,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76cceb72-214d-40ab-9934-e4c5d23d8194" + "59c51678-cc30-432f-a898-ca3eba9c05f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -1438,22 +1843,22 @@ "nosniff" ], "x-ms-request-id": [ - "efb9d1cd-c862-454b-9665-3d4c7a5ffed6" + "219e224c-5f42-4bbe-9cb6-25de2f4cc6d2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11987" ], "x-ms-correlation-request-id": [ - "efb9d1cd-c862-454b-9665-3d4c7a5ffed6" + "219e224c-5f42-4bbe-9cb6-25de2f4cc6d2" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222628Z:efb9d1cd-c862-454b-9665-3d4c7a5ffed6" + "GERMANYWESTCENTRAL:20230525T172832Z:219e224c-5f42-4bbe-9cb6-25de2f4cc6d2" ], "Date": [ - "Thu, 16 Mar 2023 22:26:27 GMT" + "Thu, 25 May 2023 17:28:32 GMT" ], "Content-Length": [ "1239" @@ -1469,13 +1874,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDExNDU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgzMjY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e6b7dce-3c07-498b-8cf9-ef78726e737b" + "57ad69fd-2cb5-490f-9178-381e2c4b9b3d" ], "If-Match": [ "*" @@ -1484,7 +1889,7 @@ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -1504,22 +1909,22 @@ "nosniff" ], "x-ms-request-id": [ - "01ed7ee4-60e5-475e-8016-535cb8dca444" + "20702013-6f32-41e4-b920-7caa2867dacf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "01ed7ee4-60e5-475e-8016-535cb8dca444" + "20702013-6f32-41e4-b920-7caa2867dacf" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222628Z:01ed7ee4-60e5-475e-8016-535cb8dca444" + "GERMANYWESTCENTRAL:20230525T172836Z:20702013-6f32-41e4-b920-7caa2867dacf" ], "Date": [ - "Thu, 16 Mar 2023 22:26:28 GMT" + "Thu, 25 May 2023 17:28:35 GMT" ], "Expires": [ "-1" @@ -1532,13 +1937,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid1145?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDExNDU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/apiid8326?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9hcGlpZDgzMjY/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba13dc80-8136-41aa-b311-95893638b600" + "cbea87fa-f216-471d-8cf3-6ac90c82b114" ], "If-Match": [ "*" @@ -1547,7 +1952,7 @@ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -1567,22 +1972,22 @@ "nosniff" ], "x-ms-request-id": [ - "43978dfd-8772-4375-980c-715cc3dbdde9" + "41103a24-b6a7-4e51-99d4-38d4d11f4d83" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14997" ], "x-ms-correlation-request-id": [ - "43978dfd-8772-4375-980c-715cc3dbdde9" + "41103a24-b6a7-4e51-99d4-38d4d11f4d83" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222629Z:43978dfd-8772-4375-980c-715cc3dbdde9" + "GERMANYWESTCENTRAL:20230525T172838Z:41103a24-b6a7-4e51-99d4-38d4d11f4d83" ], "Date": [ - "Thu, 16 Mar 2023 22:26:28 GMT" + "Thu, 25 May 2023 17:28:37 GMT" ], "Expires": [ "-1" @@ -1592,13 +1997,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid3358?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9vcGVuQXBpaWQzMzU4P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid1652?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9vcGVuQXBpaWQxNjUyP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0098a455-311d-4477-a8ea-8d8a5ff7330c" + "a6d7e420-3c16-4df3-8506-4035dbb8da50" ], "If-Match": [ "*" @@ -1607,7 +2012,7 @@ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -1627,22 +2032,22 @@ "nosniff" ], "x-ms-request-id": [ - "992ec9bc-499b-4491-b46d-77fb18abfa42" + "88c4cea7-37c5-414b-930a-ce0f8ed81e67" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "992ec9bc-499b-4491-b46d-77fb18abfa42" + "88c4cea7-37c5-414b-930a-ce0f8ed81e67" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222628Z:992ec9bc-499b-4491-b46d-77fb18abfa42" + "GERMANYWESTCENTRAL:20230525T172837Z:88c4cea7-37c5-414b-930a-ce0f8ed81e67" ], "Date": [ - "Thu, 16 Mar 2023 22:26:28 GMT" + "Thu, 25 May 2023 17:28:36 GMT" ], "Expires": [ "-1" @@ -1655,13 +2060,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid3358?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9vcGVuQXBpaWQzMzU4P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/apis/openApiid1652?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXBpcy9vcGVuQXBpaWQxNjUyP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13cc0388-4360-4142-a5cf-50d1c392d720" + "de81bf1c-6f8a-4014-99d1-1745281d7e22" ], "If-Match": [ "*" @@ -1670,7 +2075,7 @@ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -1690,22 +2095,22 @@ "nosniff" ], "x-ms-request-id": [ - "dd376f67-6708-43b3-b7e0-a1aada99487f" + "1aaed073-53b6-48a2-98e9-df8c7a3b0890" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14995" ], "x-ms-correlation-request-id": [ - "dd376f67-6708-43b3-b7e0-a1aada99487f" + "1aaed073-53b6-48a2-98e9-df8c7a3b0890" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222629Z:dd376f67-6708-43b3-b7e0-a1aada99487f" + "GERMANYWESTCENTRAL:20230525T172839Z:1aaed073-53b6-48a2-98e9-df8c7a3b0890" ], "Date": [ - "Thu, 16 Mar 2023 22:26:29 GMT" + "Thu, 25 May 2023 17:28:38 GMT" ], "Expires": [ "-1" @@ -1715,13 +2120,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authorizationServerId8088?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aG9yaXphdGlvblNlcnZlcklkODA4OD9hcGktdmVyc2lvbj0yMDIyLTA4LTAx", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authorizationServerId757?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aG9yaXphdGlvblNlcnZlcklkNzU3P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b1b3013-20d6-4f68-9e59-cdffad81810f" + "39929fd0-3351-499e-b106-b9799e20869c" ], "If-Match": [ "*" @@ -1730,7 +2135,7 @@ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -1750,22 +2155,22 @@ "nosniff" ], "x-ms-request-id": [ - "01f9f69b-a02d-4ec1-ad7a-e6e85cae4965" + "7bef753e-f641-4d02-b28c-6af9d75a89d8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14996" ], "x-ms-correlation-request-id": [ - "01f9f69b-a02d-4ec1-ad7a-e6e85cae4965" + "7bef753e-f641-4d02-b28c-6af9d75a89d8" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222629Z:01f9f69b-a02d-4ec1-ad7a-e6e85cae4965" + "GERMANYWESTCENTRAL:20230525T172838Z:7bef753e-f641-4d02-b28c-6af9d75a89d8" ], "Date": [ - "Thu, 16 Mar 2023 22:26:29 GMT" + "Thu, 25 May 2023 17:28:37 GMT" ], "Expires": [ "-1" @@ -1778,13 +2183,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId3830?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQzODMwP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1825?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQxODI1P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39453e02-97ae-4450-922d-d88e5acc1c5e" + "72571da7-c489-455e-b66e-bf34253dfd2f" ], "If-Match": [ "*" @@ -1793,7 +2198,7 @@ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -1813,22 +2218,22 @@ "nosniff" ], "x-ms-request-id": [ - "85ea035f-b1f9-46c5-9bd0-dbdeca7afe59" + "3b68faa7-c5bd-45d5-a23d-6c193967c442" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14993" + "14994" ], "x-ms-correlation-request-id": [ - "85ea035f-b1f9-46c5-9bd0-dbdeca7afe59" + "3b68faa7-c5bd-45d5-a23d-6c193967c442" ], "x-ms-routing-request-id": [ - "WESTUS:20230316T222629Z:85ea035f-b1f9-46c5-9bd0-dbdeca7afe59" + "GERMANYWESTCENTRAL:20230525T172840Z:3b68faa7-c5bd-45d5-a23d-6c193967c442" ], "Date": [ - "Thu, 16 Mar 2023 22:26:29 GMT" + "Thu, 25 May 2023 17:28:39 GMT" ], "Expires": [ "-1" @@ -1843,33 +2248,33 @@ ], "Names": { "CreateListUpdateDelete": [ - "authorizationServerId8088", - "apiid1145", - "openApiid3358", - "openId3830", - "authName2127", - "oauth2scope1570", - "clientid9468", - "apiname5715", - "apidescription4554", - "header3693", - "query340", - "oauth2scope884", - "patchedname5174", - "patchedDescription2718", - "patchedPath2044", - "patchednametos4751", - "patchedDescriptiontos2088", - "patchedPathtos6022", - "openIdName8728", - "clientId420", - "apiname1720", - "apidescription8478", - "oauth2scope3584" + "authorizationServerId757", + "apiid8326", + "openApiid1652", + "openId1825", + "authName2476", + "oauth2scope2640", + "clientid8400", + "apiname9252", + "apidescription4590", + "header4717", + "query4824", + "oauth2scope1427", + "patchedname6733", + "patchedDescription7366", + "patchedPath7737", + "patchednametos4895", + "patchedDescriptiontos594", + "patchedPathtos3063", + "openIdName5317", + "clientId5427", + "apiname8539", + "apidescription9906", + "oauth2scope4130" ], "GetOpenIdMetadataEndpointUrl": [ - "provider3126", - "endpoint2448" + "provider9698", + "endpoint4962" ] }, "Variables": { @@ -1880,6 +2285,7 @@ "TestBackupStorageAccount": "apimbackupmsi", "TestBackupUserMsiClientId": "a6270d0c-7d86-478b-8cbe-dc9047ba54f7", "TestBackupUserMsiResourceId": "/subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/net-sdk-backup-restore/providers/Microsoft.ManagedIdentity/userAssignedIdentities/apim-backup-restore-msi", + "Environment": "Prod", "SubId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15", "ServiceName": "sdktest20220801service", "Location": "centraluseuap", diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/AuthorizationServerTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/AuthorizationServerTests/CreateListUpdateDelete.json index ab9f7bbdab21..70ae7ddb2017 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/AuthorizationServerTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/AuthorizationServerTests/CreateListUpdateDelete.json @@ -1,19 +1,76 @@ { "Entries": [ + { + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourcegroups/Apim-NetSdk-20220801?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlZ3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29abb8c6-3ad6-4901-a915-f87ef9e8c487" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1623.17311", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "1b8b9ae9-25b2-478d-a5dd-7f55202ba0e1" + ], + "x-ms-correlation-request-id": [ + "1b8b9ae9-25b2-478d-a5dd-7f55202ba0e1" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20230525T172841Z:1b8b9ae9-25b2-478d-a5dd-7f55202ba0e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 25 May 2023 17:28:40 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, { "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service?api-version=2022-08-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2U/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "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\": \"centraluseuap\",\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\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"DateCreated\": \"5/25/2023 5:28:43 PM\",\r\n \"apiversion\": \"2022-08-01\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "70cd5f1a-6103-46d9-a446-28d3f6265971" + "954dd9ba-a683-4df3-86fe-b5888e6cd0e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -22,7 +79,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "346" + "354" ] }, "ResponseHeaders": { @@ -33,35 +90,35 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAqo3Q=\"" + "\"AAAAAAAtYHE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e8251698-c32a-4ee3-8d7a-573463fac2eb", - "e8251698-c32a-4ee3-8d7a-573463fac2eb" + "cd4d73af-9b18-451a-8276-9b63de3abf47", + "cd4d73af-9b18-451a-8276-9b63de3abf47" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "23999" ], "x-ms-correlation-request-id": [ - "e8251698-c32a-4ee3-8d7a-573463fac2eb" + "cd4d73af-9b18-451a-8276-9b63de3abf47" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230317T181415Z:e8251698-c32a-4ee3-8d7a-573463fac2eb" + "GERMANYWESTCENTRAL:20230525T172847Z:cd4d73af-9b18-451a-8276-9b63de3abf47" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 17 Mar 2023 18:14:14 GMT" + "Thu, 25 May 2023 17:28:46 GMT" ], "Content-Length": [ - "2926" + "2943" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,7 +127,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service\",\r\n \"name\": \"sdktest20220801service\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAqo3Q=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2023-03-16T20:13:52.4280158Z\",\r\n \"gatewayUrl\": \"https://sdktest20220801service.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktest20220801service-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktest20220801service.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktest20220801service.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktest20220801service.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktest20220801service.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktest20220801service.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.228.8.238\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"natGatewayState\": \"Disabled\",\r\n \"outboundPublicIPAddresses\": [\r\n \"20.228.8.238\"\r\n ],\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a676137a-7ef9-49cd-a466-d87b143841da\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jikang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-03-16T20:13:52.3752772Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-03-17T01:05:56.0377447Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service\",\r\n \"name\": \"sdktest20220801service\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"DateCreated\": \"5/25/2023 5:28:43 PM\",\r\n \"apiversion\": \"2022-08-01\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAtYHE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2023-04-26T16:30:26.7911449Z\",\r\n \"gatewayUrl\": \"https://sdktest20220801service.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktest20220801service-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktest20220801service.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktest20220801service.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktest20220801service.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktest20220801service.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktest20220801service.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.228.49.143\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"natGatewayState\": \"Disabled\",\r\n \"outboundPublicIPAddresses\": [\r\n \"20.228.49.143\"\r\n ],\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a676137a-7ef9-49cd-a466-d87b143841da\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jikang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-03-16T20:13:52.3752772Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-04-26T16:30:26.1518098Z\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -80,13 +137,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f93cc48-3ab5-4b3b-b36e-48cb10bc01b3" + "fcbfc335-0563-4e1a-ae7c-c94fc21b6258" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -100,34 +157,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAqo3Q=\"" + "\"AAAAAAAtYHE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8686a913-a47e-46d5-bcbd-1e8cba32d807" + "c0f0924f-ea93-4927-acaf-a500a5389aa2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "8686a913-a47e-46d5-bcbd-1e8cba32d807" + "c0f0924f-ea93-4927-acaf-a500a5389aa2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230317T181415Z:8686a913-a47e-46d5-bcbd-1e8cba32d807" + "GERMANYWESTCENTRAL:20230525T172847Z:c0f0924f-ea93-4927-acaf-a500a5389aa2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 17 Mar 2023 18:14:14 GMT" + "Thu, 25 May 2023 17:28:46 GMT" ], "Content-Length": [ - "2926" + "2943" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,7 +193,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service\",\r\n \"name\": \"sdktest20220801service\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAqo3Q=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2023-03-16T20:13:52.4280158Z\",\r\n \"gatewayUrl\": \"https://sdktest20220801service.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktest20220801service-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktest20220801service.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktest20220801service.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktest20220801service.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktest20220801service.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktest20220801service.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.228.8.238\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"natGatewayState\": \"Disabled\",\r\n \"outboundPublicIPAddresses\": [\r\n \"20.228.8.238\"\r\n ],\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a676137a-7ef9-49cd-a466-d87b143841da\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jikang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-03-16T20:13:52.3752772Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-03-17T01:05:56.0377447Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service\",\r\n \"name\": \"sdktest20220801service\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"DateCreated\": \"5/25/2023 5:28:43 PM\",\r\n \"apiversion\": \"2022-08-01\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAtYHE=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2023-04-26T16:30:26.7911449Z\",\r\n \"gatewayUrl\": \"https://sdktest20220801service.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktest20220801service-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktest20220801service.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktest20220801service.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktest20220801service.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktest20220801service.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktest20220801service.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.228.49.143\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"natGatewayState\": \"Disabled\",\r\n \"outboundPublicIPAddresses\": [\r\n \"20.228.49.143\"\r\n ],\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a676137a-7ef9-49cd-a466-d87b143841da\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jikang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-03-16T20:13:52.3752772Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-04-26T16:30:26.1518098Z\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -146,13 +203,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4bd489a4-ed34-4fe4-bcaa-56b0d077f0e3" + "df320eff-d368-4083-a8a2-363b1ac45fa3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -172,22 +229,22 @@ "nosniff" ], "x-ms-request-id": [ - "5cc6de73-d0d3-47ef-9066-dc9f43f31d5d" + "60f2e82c-dbd4-4b58-bea8-350c09fade26" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "5cc6de73-d0d3-47ef-9066-dc9f43f31d5d" + "60f2e82c-dbd4-4b58-bea8-350c09fade26" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230317T181415Z:5cc6de73-d0d3-47ef-9066-dc9f43f31d5d" + "GERMANYWESTCENTRAL:20230525T172847Z:60f2e82c-dbd4-4b58-bea8-350c09fade26" ], "Date": [ - "Fri, 17 Mar 2023 18:14:15 GMT" + "Thu, 25 May 2023 17:28:46 GMT" ], "Content-Length": [ "34" @@ -209,13 +266,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1fcef9b-040f-47ad-9823-5efe51016ae1" + "fbd5d5b7-9669-407f-9bf3-61bd849bca0c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -235,25 +292,25 @@ "nosniff" ], "x-ms-request-id": [ - "1ef04afe-8dc0-497f-891a-978b76fe8d28" + "fe00fad1-f51a-428b-be55-b9244a7cc4ff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "1ef04afe-8dc0-497f-891a-978b76fe8d28" + "fe00fad1-f51a-428b-be55-b9244a7cc4ff" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230317T181418Z:1ef04afe-8dc0-497f-891a-978b76fe8d28" + "GERMANYWESTCENTRAL:20230525T172849Z:fe00fad1-f51a-428b-be55-b9244a7cc4ff" ], "Date": [ - "Fri, 17 Mar 2023 18:14:17 GMT" + "Thu, 25 May 2023 17:28:48 GMT" ], "Content-Length": [ - "1386" + "1388" ], "Content-Type": [ "application/json; charset=utf-8" @@ -262,23 +319,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3424\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid3424\",\r\n \"properties\": {\r\n \"displayName\": \"authName3540\",\r\n \"description\": \"authdescription5275\",\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\": \"tokenname7804\",\r\n \"value\": \"tokenvalue480\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope468\",\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\": \"clientid1821\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3328\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid3328\",\r\n \"properties\": {\r\n \"displayName\": \"authName1368\",\r\n \"description\": \"authdescription1347\",\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\": \"tokenname7849\",\r\n \"value\": \"tokenvalue8038\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope7760\",\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\": \"clientid5460\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3424?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aHNpZDM0MjQ/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3328?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aHNpZDMzMjg/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"authdescription5275\",\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\": \"tokenname7804\",\r\n \"value\": \"tokenvalue480\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope468\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"resourceOwnerUsername\": \"authresourceownerusername166\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd7788\",\r\n \"displayName\": \"authName3540\",\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\": \"clientid1821\",\r\n \"clientSecret\": \"authclientsecret955\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"authdescription1347\",\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\": \"tokenname7849\",\r\n \"value\": \"tokenvalue8038\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope7760\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"resourceOwnerUsername\": \"authresourceownerusername9678\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd6772\",\r\n \"displayName\": \"authName1368\",\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\": \"clientid5460\",\r\n \"clientSecret\": \"authclientsecret9796\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "22d119e4-9b5c-4e54-8cb0-40bdafe0435a" + "0fa95f82-dd9a-4eef-82a2-aba297e48fd1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -287,7 +344,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "995" + "999" ] }, "ResponseHeaders": { @@ -298,7 +355,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADVs=\"" + "\"AAAAAAAAOQ0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -307,25 +364,25 @@ "nosniff" ], "x-ms-request-id": [ - "bcf4e8ab-2976-4b12-b7cf-1133d59f8a6b" + "f458ab6e-c0e3-4313-a6aa-f373e5044bbe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "bcf4e8ab-2976-4b12-b7cf-1133d59f8a6b" + "f458ab6e-c0e3-4313-a6aa-f373e5044bbe" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230317T181417Z:bcf4e8ab-2976-4b12-b7cf-1133d59f8a6b" + "GERMANYWESTCENTRAL:20230525T172848Z:f458ab6e-c0e3-4313-a6aa-f373e5044bbe" ], "Date": [ - "Fri, 17 Mar 2023 18:14:16 GMT" + "Thu, 25 May 2023 17:28:47 GMT" ], "Content-Length": [ - "1286" + "1290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,23 +391,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3424\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid3424\",\r\n \"properties\": {\r\n \"displayName\": \"authName3540\",\r\n \"description\": \"authdescription5275\",\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\": \"tokenname7804\",\r\n \"value\": \"tokenvalue480\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope468\",\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\": \"clientid1821\",\r\n \"clientSecret\": \"authclientsecret955\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername166\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd7788\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3328\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid3328\",\r\n \"properties\": {\r\n \"displayName\": \"authName1368\",\r\n \"description\": \"authdescription1347\",\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\": \"tokenname7849\",\r\n \"value\": \"tokenvalue8038\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope7760\",\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\": \"clientid5460\",\r\n \"clientSecret\": \"authclientsecret9796\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername9678\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd6772\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3424?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aHNpZDM0MjQ/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3328?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aHNpZDMzMjg/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71eeb6c6-d5ea-4adb-8eb1-314a1fb2664b" + "b085628d-ddb5-4205-97dd-5e7ec25c3c3b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -364,7 +421,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADVs=\"" + "\"AAAAAAAAOQ0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -373,25 +430,25 @@ "nosniff" ], "x-ms-request-id": [ - "6484013d-5834-4fb1-b921-f620961df352" + "0d784377-06e0-4bb9-9504-8644d5f5ec14" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "6484013d-5834-4fb1-b921-f620961df352" + "0d784377-06e0-4bb9-9504-8644d5f5ec14" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230317T181417Z:6484013d-5834-4fb1-b921-f620961df352" + "GERMANYWESTCENTRAL:20230525T172848Z:0d784377-06e0-4bb9-9504-8644d5f5ec14" ], "Date": [ - "Fri, 17 Mar 2023 18:14:17 GMT" + "Thu, 25 May 2023 17:28:47 GMT" ], "Content-Length": [ - "1190" + "1192" ], "Content-Type": [ "application/json; charset=utf-8" @@ -400,23 +457,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3424\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid3424\",\r\n \"properties\": {\r\n \"displayName\": \"authName3540\",\r\n \"description\": \"authdescription5275\",\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\": \"tokenname7804\",\r\n \"value\": \"tokenvalue480\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope468\",\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\": \"clientid1821\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3328\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid3328\",\r\n \"properties\": {\r\n \"displayName\": \"authName1368\",\r\n \"description\": \"authdescription1347\",\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\": \"tokenname7849\",\r\n \"value\": \"tokenvalue8038\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope7760\",\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\": \"clientid5460\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3424?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aHNpZDM0MjQ/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3328?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aHNpZDMzMjg/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "931ec49c-6a5a-4e28-9fc2-8c703a85fba9" + "1ca89e49-a546-4cc3-b15d-f9bef93aed1f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -430,7 +487,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADVw=\"" + "\"AAAAAAAAOQ4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,25 +496,25 @@ "nosniff" ], "x-ms-request-id": [ - "24837b32-112a-459a-ba5c-3af27a46f118" + "5bc0a6bf-f6ab-4dd8-a0f7-6e55a35e896d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "24837b32-112a-459a-ba5c-3af27a46f118" + "5bc0a6bf-f6ab-4dd8-a0f7-6e55a35e896d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230317T181418Z:24837b32-112a-459a-ba5c-3af27a46f118" + "GERMANYWESTCENTRAL:20230525T172850Z:5bc0a6bf-f6ab-4dd8-a0f7-6e55a35e896d" ], "Date": [ - "Fri, 17 Mar 2023 18:14:18 GMT" + "Thu, 25 May 2023 17:28:49 GMT" ], "Content-Length": [ - "1171" + "1173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -466,23 +523,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3424\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid3424\",\r\n \"properties\": {\r\n \"displayName\": \"authName3540\",\r\n \"description\": \"authdescription5275\",\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\": \"tokenname7804\",\r\n \"value\": \"tokenvalue480\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope468\",\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\": \"clientid1821\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3328\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid3328\",\r\n \"properties\": {\r\n \"displayName\": \"authName1368\",\r\n \"description\": \"authdescription1347\",\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\": \"tokenname7849\",\r\n \"value\": \"tokenvalue8038\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"useInTestConsole\": false,\r\n \"useInApiDocumentation\": true,\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope7760\",\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\": \"clientid5460\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3424?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aHNpZDM0MjQ/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3328?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aHNpZDMzMjg/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "addb1c8e-2fb6-49bb-8f18-197e2f32e94b" + "8e1f4f1f-ebc5-469f-bdb5-bed180f83295" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -502,22 +559,22 @@ "nosniff" ], "x-ms-request-id": [ - "320a2958-9639-4790-8270-0885569eff6e" + "adcc4cfa-913e-42a6-b65e-2a78d3637e92" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "320a2958-9639-4790-8270-0885569eff6e" + "adcc4cfa-913e-42a6-b65e-2a78d3637e92" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230317T181419Z:320a2958-9639-4790-8270-0885569eff6e" + "GERMANYWESTCENTRAL:20230525T172851Z:adcc4cfa-913e-42a6-b65e-2a78d3637e92" ], "Date": [ - "Fri, 17 Mar 2023 18:14:18 GMT" + "Thu, 25 May 2023 17:28:50 GMT" ], "Content-Length": [ "101" @@ -533,19 +590,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3424/listSecrets?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aHNpZDM0MjQvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3328/listSecrets?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aHNpZDMzMjgvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "daec1fe1-5e14-4803-9500-9a16fabfac0f" + "c487ba7e-4662-4f3c-b88c-7deb1bb99c78" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -559,7 +616,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADVs=\"" + "\"AAAAAAAAOQ0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -568,7 +625,7 @@ "nosniff" ], "x-ms-request-id": [ - "5cc86030-845d-487d-ae5e-e9396b99dec6" + "288f0778-f959-4bcd-abaf-ca34b9ed8833" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -577,16 +634,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "5cc86030-845d-487d-ae5e-e9396b99dec6" + "288f0778-f959-4bcd-abaf-ca34b9ed8833" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230317T181417Z:5cc86030-845d-487d-ae5e-e9396b99dec6" + "GERMANYWESTCENTRAL:20230525T172849Z:288f0778-f959-4bcd-abaf-ca34b9ed8833" ], "Date": [ - "Fri, 17 Mar 2023 18:14:17 GMT" + "Thu, 25 May 2023 17:28:48 GMT" ], "Content-Length": [ - "144" + "146" ], "Content-Type": [ "application/json; charset=utf-8" @@ -595,26 +652,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"clientSecret\": \"authclientsecret955\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername166\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd7788\"\r\n}", + "ResponseBody": "{\r\n \"clientSecret\": \"authclientsecret9796\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername9678\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd6772\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3424?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aHNpZDM0MjQ/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3328?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aHNpZDMzMjg/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"resourceOwnerPassword\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"useInTestConsole\": false,\r\n \"useInApiDocumentation\": true,\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"resourceOwnerPassword\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e734d734-b6e8-4bf6-8bd0-a0f44bc14ea0" + "a008dac8-97eb-4de0-8e2f-0bdc10c60a14" ], "If-Match": [ - "\"AAAAAAAADVs=\"" + "\"AAAAAAAAOQ0=\"" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -623,7 +680,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "115" + "183" ] }, "ResponseHeaders": { @@ -634,7 +691,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADVw=\"" + "\"AAAAAAAAOQ4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -643,25 +700,25 @@ "nosniff" ], "x-ms-request-id": [ - "98d91c1f-0ec8-4b72-a1a1-4135d636a231" + "c7407c20-f754-44f1-bb91-7b184e699419" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "98d91c1f-0ec8-4b72-a1a1-4135d636a231" + "c7407c20-f754-44f1-bb91-7b184e699419" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230317T181418Z:98d91c1f-0ec8-4b72-a1a1-4135d636a231" + "GERMANYWESTCENTRAL:20230525T172850Z:c7407c20-f754-44f1-bb91-7b184e699419" ], "Date": [ - "Fri, 17 Mar 2023 18:14:18 GMT" + "Thu, 25 May 2023 17:28:49 GMT" ], "Content-Length": [ - "1335" + "1339" ], "Content-Type": [ "application/json; charset=utf-8" @@ -670,26 +727,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3424\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid3424\",\r\n \"properties\": {\r\n \"displayName\": \"authName3540\",\r\n \"description\": \"authdescription5275\",\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\": \"tokenname7804\",\r\n \"value\": \"tokenvalue480\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope468\",\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\": \"clientid1821\",\r\n \"clientSecret\": \"authclientsecret955\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername166\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd7788\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3328\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid3328\",\r\n \"properties\": {\r\n \"displayName\": \"authName1368\",\r\n \"description\": \"authdescription1347\",\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\": \"tokenname7849\",\r\n \"value\": \"tokenvalue8038\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"useInTestConsole\": false,\r\n \"useInApiDocumentation\": true,\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope7760\",\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\": \"clientid5460\",\r\n \"clientSecret\": \"authclientsecret9796\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername9678\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd6772\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3424?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aHNpZDM0MjQ/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3328?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aHNpZDMzMjg/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff179b37-0261-45c1-9590-3b94305c0d97" + "6001ec99-0570-4677-8fa7-cbe602325c89" ], "If-Match": [ - "\"AAAAAAAADVw=\"" + "\"AAAAAAAAOQ4=\"" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -709,7 +766,7 @@ "nosniff" ], "x-ms-request-id": [ - "18d7d6ab-fe09-4062-bf07-699d50d7ae38" + "82e90db9-0949-4932-9b1f-d60a764fa9b0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -718,13 +775,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "18d7d6ab-fe09-4062-bf07-699d50d7ae38" + "82e90db9-0949-4932-9b1f-d60a764fa9b0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230317T181419Z:18d7d6ab-fe09-4062-bf07-699d50d7ae38" + "GERMANYWESTCENTRAL:20230525T172851Z:82e90db9-0949-4932-9b1f-d60a764fa9b0" ], "Date": [ - "Fri, 17 Mar 2023 18:14:18 GMT" + "Thu, 25 May 2023 17:28:50 GMT" ], "Expires": [ "-1" @@ -737,13 +794,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3424?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aHNpZDM0MjQ/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/authorizationServers/authsid3328?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2UvYXV0aG9yaXphdGlvblNlcnZlcnMvYXV0aHNpZDMzMjg/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73360015-d421-4d91-96f0-940817129315" + "9b59df70-d82c-4de9-b571-c42830561796" ], "If-Match": [ "*" @@ -752,7 +809,7 @@ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -772,7 +829,7 @@ "nosniff" ], "x-ms-request-id": [ - "df000d5b-796d-49da-b532-252930ac1090" + "ae7cbee0-d0e0-49de-8a1b-9c6e43ea7953" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -781,13 +838,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "df000d5b-796d-49da-b532-252930ac1090" + "ae7cbee0-d0e0-49de-8a1b-9c6e43ea7953" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230317T181419Z:df000d5b-796d-49da-b532-252930ac1090" + "GERMANYWESTCENTRAL:20230525T172852Z:ae7cbee0-d0e0-49de-8a1b-9c6e43ea7953" ], "Date": [ - "Fri, 17 Mar 2023 18:14:19 GMT" + "Thu, 25 May 2023 17:28:51 GMT" ], "Expires": [ "-1" @@ -799,16 +856,16 @@ ], "Names": { "CreateListUpdateDelete": [ - "authsid3424", - "authName3540", - "oauth2scope468", - "clientid1821", - "authdescription5275", - "authclientsecret955", - "authresourceownerpwd7788", - "authresourceownerusername166", - "tokenname7804", - "tokenvalue480" + "authsid3328", + "authName1368", + "oauth2scope7760", + "clientid5460", + "authdescription1347", + "authclientsecret9796", + "authresourceownerpwd6772", + "authresourceownerusername9678", + "tokenname7849", + "tokenvalue8038" ] }, "Variables": { @@ -819,6 +876,7 @@ "TestBackupStorageAccount": "apimbackupmsi", "TestBackupUserMsiClientId": "a6270d0c-7d86-478b-8cbe-dc9047ba54f7", "TestBackupUserMsiResourceId": "/subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/net-sdk-backup-restore/providers/Microsoft.ManagedIdentity/userAssignedIdentities/apim-backup-restore-msi", + "Environment": "Prod", "SubId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15", "ServiceName": "sdktest20220801service", "Location": "centraluseuap", diff --git a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/OpenIdConnectProviderTests/CreateListUpdateDelete.json b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/OpenIdConnectProviderTests/CreateListUpdateDelete.json index 52a9f904782b..27727d4a1dd9 100644 --- a/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/OpenIdConnectProviderTests/CreateListUpdateDelete.json +++ b/sdk/apimanagement/Microsoft.Azure.Management.ApiManagement/tests/SessionRecords/OpenIdConnectProviderTests/CreateListUpdateDelete.json @@ -1,19 +1,76 @@ { "Entries": [ + { + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourcegroups/Apim-NetSdk-20220801?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlZ3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "723932cd-56b1-48cd-87f5-9f65c55776c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.1623.17311", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "b0ad7a93-89e8-499e-8962-7deac8b2c2d4" + ], + "x-ms-correlation-request-id": [ + "b0ad7a93-89e8-499e-8962-7deac8b2c2d4" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20230525T172853Z:b0ad7a93-89e8-499e-8962-7deac8b2c2d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 25 May 2023 17:28:53 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, { "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service?api-version=2022-08-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2U/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==", "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\": \"centraluseuap\",\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\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"DateCreated\": \"5/25/2023 5:28:55 PM\",\r\n \"apiversion\": \"2022-08-01\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d4952b48-1d99-4281-b7ca-55ac66ceebf4" + "1852b4f9-3416-4f68-8718-e04b98f48e93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -22,7 +79,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "346" + "354" ] }, "ResponseHeaders": { @@ -33,35 +90,35 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAqobk=\"" + "\"AAAAAAAtYHI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "27320ddb-193f-4c5c-9bed-132b518e3fa0", - "27320ddb-193f-4c5c-9bed-132b518e3fa0" + "3d1e7a60-862e-42af-a157-a3782785ee63", + "3d1e7a60-862e-42af-a157-a3782785ee63" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "23999" ], "x-ms-correlation-request-id": [ - "27320ddb-193f-4c5c-9bed-132b518e3fa0" + "3d1e7a60-862e-42af-a157-a3782785ee63" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222410Z:27320ddb-193f-4c5c-9bed-132b518e3fa0" + "GERMANYWESTCENTRAL:20230525T172858Z:3d1e7a60-862e-42af-a157-a3782785ee63" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Mar 2023 22:24:09 GMT" + "Thu, 25 May 2023 17:28:57 GMT" ], "Content-Length": [ - "2928" + "2943" ], "Content-Type": [ "application/json; charset=utf-8" @@ -70,7 +127,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service\",\r\n \"name\": \"sdktest20220801service\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAqobk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2023-03-16T20:13:52.4280158Z\",\r\n \"gatewayUrl\": \"https://sdktest20220801service.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktest20220801service-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktest20220801service.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktest20220801service.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktest20220801service.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktest20220801service.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktest20220801service.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.112.149.88\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"natGatewayState\": \"Disabled\",\r\n \"outboundPublicIPAddresses\": [\r\n \"20.112.149.88\"\r\n ],\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"84a8af83-dcca-4370-9500-58a989bf9c13\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jikang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-03-16T20:13:52.3752772Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-03-16T22:09:53.3969618Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service\",\r\n \"name\": \"sdktest20220801service\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"DateCreated\": \"5/25/2023 5:28:55 PM\",\r\n \"apiversion\": \"2022-08-01\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAtYHI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2023-04-26T16:30:26.7911449Z\",\r\n \"gatewayUrl\": \"https://sdktest20220801service.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktest20220801service-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktest20220801service.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktest20220801service.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktest20220801service.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktest20220801service.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktest20220801service.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.228.49.143\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"natGatewayState\": \"Disabled\",\r\n \"outboundPublicIPAddresses\": [\r\n \"20.228.49.143\"\r\n ],\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a676137a-7ef9-49cd-a466-d87b143841da\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jikang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-03-16T20:13:52.3752772Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-04-26T16:30:26.1518098Z\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -80,13 +137,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bfe38aa-e58d-4524-8c45-3c62a0cafecb" + "512ad824-cac2-43c4-851c-18fd541bb4d2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -100,13 +157,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAqobk=\"" + "\"AAAAAAAtYHI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f75dd2a-eb58-44f2-85ff-5bb2a6a3aa9c" + "af794f45-780d-44e5-9eb5-eb5a2071496c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -115,19 +172,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "0f75dd2a-eb58-44f2-85ff-5bb2a6a3aa9c" + "af794f45-780d-44e5-9eb5-eb5a2071496c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222410Z:0f75dd2a-eb58-44f2-85ff-5bb2a6a3aa9c" + "GERMANYWESTCENTRAL:20230525T172859Z:af794f45-780d-44e5-9eb5-eb5a2071496c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Mar 2023 22:24:09 GMT" + "Thu, 25 May 2023 17:28:58 GMT" ], "Content-Length": [ - "2928" + "2943" ], "Content-Type": [ "application/json; charset=utf-8" @@ -136,23 +193,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service\",\r\n \"name\": \"sdktest20220801service\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAqobk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2023-03-16T20:13:52.4280158Z\",\r\n \"gatewayUrl\": \"https://sdktest20220801service.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktest20220801service-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktest20220801service.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktest20220801service.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktest20220801service.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktest20220801service.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktest20220801service.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.112.149.88\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"false\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"false\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"natGatewayState\": \"Disabled\",\r\n \"outboundPublicIPAddresses\": [\r\n \"20.112.149.88\"\r\n ],\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"84a8af83-dcca-4370-9500-58a989bf9c13\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jikang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-03-16T20:13:52.3752772Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-03-16T22:09:53.3969618Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service\",\r\n \"name\": \"sdktest20220801service\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"DateCreated\": \"5/25/2023 5:28:55 PM\",\r\n \"apiversion\": \"2022-08-01\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAtYHI=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"apim@autorestsdk.com\",\r\n \"publisherName\": \"autorestsdk\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2023-04-26T16:30:26.7911449Z\",\r\n \"gatewayUrl\": \"https://sdktest20220801service.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktest20220801service-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktest20220801service.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://sdktest20220801service.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktest20220801service.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktest20220801service.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"sdktest20220801service.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true,\r\n \"identityClientId\": null,\r\n \"certificateSource\": \"BuiltIn\",\r\n \"certificateStatus\": null\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"20.228.49.143\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\n },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": null,\r\n \"disableGateway\": false,\r\n \"natGatewayState\": \"Disabled\",\r\n \"outboundPublicIPAddresses\": [\r\n \"20.228.49.143\"\r\n ],\r\n \"apiVersionConstraint\": {\r\n \"minApiVersion\": null\r\n },\r\n \"publicIpAddressId\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"privateEndpointConnections\": null,\r\n \"platformVersion\": \"stv2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a676137a-7ef9-49cd-a466-d87b143841da\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"zones\": null,\r\n \"systemData\": {\r\n \"createdBy\": \"jikang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": \"2023-03-16T20:13:52.3752772Z\",\r\n \"lastModifiedBy\": \"c01e8df8-1cb8-47a9-9931-887b594b1332\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-04-26T16:30:26.1518098Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId9741?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ5NzQxP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId6728?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ2NzI4P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName2320\",\r\n \"metadataEndpoint\": \"https://provider9327.endpoint3079\",\r\n \"clientId\": \"clientId5800\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName9060\",\r\n \"metadataEndpoint\": \"https://provider6065.endpoint3298\",\r\n \"clientId\": \"clientId6448\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6fb7b13f-d89e-41b5-b351-634da79e4110" + "e496a784-81a0-468b-a359-81584d4637e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -172,7 +229,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACjw=\"" + "\"AAAAAAAAOQ8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,22 +238,22 @@ "nosniff" ], "x-ms-request-id": [ - "dc446d55-1fd6-45a6-a70c-91e071432ef7" + "58a0c287-5c56-4bb2-8832-cedd716e6275" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "dc446d55-1fd6-45a6-a70c-91e071432ef7" + "58a0c287-5c56-4bb2-8832-cedd716e6275" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222410Z:dc446d55-1fd6-45a6-a70c-91e071432ef7" + "GERMANYWESTCENTRAL:20230525T172900Z:58a0c287-5c56-4bb2-8832-cedd716e6275" ], "Date": [ - "Thu, 16 Mar 2023 22:24:09 GMT" + "Thu, 25 May 2023 17:29:00 GMT" ], "Content-Length": [ "479" @@ -208,23 +265,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId9741\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId9741\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName2320\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider9327.endpoint3079\",\r\n \"clientId\": \"clientId5800\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId6728\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId6728\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName9060\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider6065.endpoint3298\",\r\n \"clientId\": \"clientId6448\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId9741?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ5NzQxP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId6728?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ2NzI4P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80d2853a-cead-43c6-b911-c0dd367ccbad" + "39423e50-9601-409c-bdde-e5c0d6e63bc8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -238,7 +295,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACjw=\"" + "\"AAAAAAAAOQ8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,7 +304,7 @@ "nosniff" ], "x-ms-request-id": [ - "113561ec-62df-497a-a99a-59ed98a9a667" + "47cfe658-051c-4ee5-9151-1220fe14bcc9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -256,13 +313,13 @@ "11998" ], "x-ms-correlation-request-id": [ - "113561ec-62df-497a-a99a-59ed98a9a667" + "47cfe658-051c-4ee5-9151-1220fe14bcc9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222410Z:113561ec-62df-497a-a99a-59ed98a9a667" + "GERMANYWESTCENTRAL:20230525T172900Z:47cfe658-051c-4ee5-9151-1220fe14bcc9" ], "Date": [ - "Thu, 16 Mar 2023 22:24:09 GMT" + "Thu, 25 May 2023 17:29:00 GMT" ], "Content-Length": [ "547" @@ -274,23 +331,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId9741\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId9741\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName2320\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider9327.endpoint3079\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"clientId\": \"clientId5800\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId6728\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId6728\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName9060\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider6065.endpoint3298\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"clientId\": \"clientId6448\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId9741?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ5NzQxP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId6728?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ2NzI4P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11093595-415f-434f-bcc2-23a5a9abc934" + "f948fb9f-ec8c-47cc-b6b3-13e5f5f1cd6b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -310,7 +367,7 @@ "nosniff" ], "x-ms-request-id": [ - "ff843036-6737-40f9-890b-7beaec6c9589" + "102f5411-53d2-4789-809c-f34ce5335336" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -319,13 +376,13 @@ "11993" ], "x-ms-correlation-request-id": [ - "ff843036-6737-40f9-890b-7beaec6c9589" + "102f5411-53d2-4789-809c-f34ce5335336" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222412Z:ff843036-6737-40f9-890b-7beaec6c9589" + "GERMANYWESTCENTRAL:20230525T172904Z:102f5411-53d2-4789-809c-f34ce5335336" ], "Date": [ - "Thu, 16 Mar 2023 22:24:11 GMT" + "Thu, 25 May 2023 17:29:04 GMT" ], "Content-Length": [ "97" @@ -341,19 +398,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId8061?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ4MDYxP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1859?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQxODU5P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName4455\",\r\n \"description\": \"description5002\",\r\n \"metadataEndpoint\": \"https://provider7246.endpoint7667\",\r\n \"clientId\": \"clientId4369\",\r\n \"clientSecret\": \"clientSecret9248\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName5582\",\r\n \"description\": \"description102\",\r\n \"metadataEndpoint\": \"https://provider6786.endpoint4658\",\r\n \"clientId\": \"clientId5440\",\r\n \"clientSecret\": \"clientSecret2814\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "68698a37-ebf4-4c5e-81f7-3e01bee8626d" + "7bcb95f9-6b09-4f7a-b6d5-43c5ed487deb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -362,7 +419,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "240" + "239" ] }, "ResponseHeaders": { @@ -373,7 +430,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACj0=\"" + "\"AAAAAAAAORA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -382,25 +439,25 @@ "nosniff" ], "x-ms-request-id": [ - "c4c61a7c-0e84-491d-ba85-cc9db543bc3d" + "4b29bfc4-e131-497b-8fbd-0a8a2a5c8c3f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "c4c61a7c-0e84-491d-ba85-cc9db543bc3d" + "4b29bfc4-e131-497b-8fbd-0a8a2a5c8c3f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222411Z:c4c61a7c-0e84-491d-ba85-cc9db543bc3d" + "GERMANYWESTCENTRAL:20230525T172901Z:4b29bfc4-e131-497b-8fbd-0a8a2a5c8c3f" ], "Date": [ - "Thu, 16 Mar 2023 22:24:10 GMT" + "Thu, 25 May 2023 17:29:01 GMT" ], "Content-Length": [ - "533" + "532" ], "Content-Type": [ "application/json; charset=utf-8" @@ -409,23 +466,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId8061\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId8061\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName4455\",\r\n \"description\": \"description5002\",\r\n \"metadataEndpoint\": \"https://provider7246.endpoint7667\",\r\n \"clientId\": \"clientId4369\",\r\n \"clientSecret\": \"clientSecret9248\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1859\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId1859\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5582\",\r\n \"description\": \"description102\",\r\n \"metadataEndpoint\": \"https://provider6786.endpoint4658\",\r\n \"clientId\": \"clientId5440\",\r\n \"clientSecret\": \"clientSecret2814\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId8061?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ4MDYxP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1859?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQxODU5P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19dd08a8-3c31-4c15-82ad-37e8c05599c7" + "e5f0ed3f-9a94-452c-a824-8c6b284f2ca8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -439,7 +496,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACj0=\"" + "\"AAAAAAAAORA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,7 +505,7 @@ "nosniff" ], "x-ms-request-id": [ - "eafdd786-1a34-4555-8464-538aa0c55c03" + "9b8f31bd-0d91-4bf8-9473-2c3563259380" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -457,16 +514,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "eafdd786-1a34-4555-8464-538aa0c55c03" + "9b8f31bd-0d91-4bf8-9473-2c3563259380" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222411Z:eafdd786-1a34-4555-8464-538aa0c55c03" + "GERMANYWESTCENTRAL:20230525T172901Z:9b8f31bd-0d91-4bf8-9473-2c3563259380" ], "Date": [ - "Thu, 16 Mar 2023 22:24:10 GMT" + "Thu, 25 May 2023 17:29:01 GMT" ], "Content-Length": [ - "560" + "559" ], "Content-Type": [ "application/json; charset=utf-8" @@ -475,23 +532,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId8061\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId8061\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName4455\",\r\n \"description\": \"description5002\",\r\n \"metadataEndpoint\": \"https://provider7246.endpoint7667\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"clientId\": \"clientId4369\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1859\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId1859\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5582\",\r\n \"description\": \"description102\",\r\n \"metadataEndpoint\": \"https://provider6786.endpoint4658\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"clientId\": \"clientId5440\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId8061?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ4MDYxP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1859?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQxODU5P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a6028c8-e728-4527-a894-5fa4a74b8052" + "5dd40277-3d69-42f6-9886-63d3417ce59e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -505,7 +562,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACj4=\"" + "\"AAAAAAAAORE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,7 +571,7 @@ "nosniff" ], "x-ms-request-id": [ - "0d480d83-36d0-4a8b-aff0-ea98f4341b34" + "1bb9a9e6-48cb-4532-b7d6-58624c59964b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -523,13 +580,13 @@ "11991" ], "x-ms-correlation-request-id": [ - "0d480d83-36d0-4a8b-aff0-ea98f4341b34" + "1bb9a9e6-48cb-4532-b7d6-58624c59964b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222413Z:0d480d83-36d0-4a8b-aff0-ea98f4341b34" + "GERMANYWESTCENTRAL:20230525T172905Z:1bb9a9e6-48cb-4532-b7d6-58624c59964b" ], "Date": [ - "Thu, 16 Mar 2023 22:24:12 GMT" + "Thu, 25 May 2023 17:29:05 GMT" ], "Content-Length": [ "564" @@ -541,23 +598,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId8061\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId8061\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName4455\",\r\n \"description\": \"description5002\",\r\n \"metadataEndpoint\": \"https://provider1694.endpoint3138\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"clientId\": \"updatedClient175\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1859\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId1859\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5582\",\r\n \"description\": \"description102\",\r\n \"metadataEndpoint\": \"https://provider4269.endpoint9004\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"clientId\": \"updatedClient9892\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId8061?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ4MDYxP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1859?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQxODU5P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88b04681-5d90-4ea9-9f7b-b4a12b2359d0" + "262ba0c9-9f53-4205-84be-47caeb30f693" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -577,7 +634,7 @@ "nosniff" ], "x-ms-request-id": [ - "05e142f3-d2f5-48f5-96c6-a3042e1be47c" + "35bcc8e7-67bc-4291-a34b-3401c86ca8ec" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -586,13 +643,13 @@ "11990" ], "x-ms-correlation-request-id": [ - "05e142f3-d2f5-48f5-96c6-a3042e1be47c" + "35bcc8e7-67bc-4291-a34b-3401c86ca8ec" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222413Z:05e142f3-d2f5-48f5-96c6-a3042e1be47c" + "GERMANYWESTCENTRAL:20230525T172906Z:35bcc8e7-67bc-4291-a34b-3401c86ca8ec" ], "Date": [ - "Thu, 16 Mar 2023 22:24:12 GMT" + "Thu, 25 May 2023 17:29:06 GMT" ], "Content-Length": [ "97" @@ -608,19 +665,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId8061/listSecrets?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ4MDYxL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1859/listSecrets?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQxODU5L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd7f052b-36ab-4609-af91-adada756a1c8" + "ae0973cf-53a0-4464-aa78-7d1b613d5ec1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -634,7 +691,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACj0=\"" + "\"AAAAAAAAORA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -643,7 +700,7 @@ "nosniff" ], "x-ms-request-id": [ - "63146462-48ec-439f-9499-fa8d9665e7e6" + "941fa181-26c8-4b96-b5f4-9440cf36f224" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -652,13 +709,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "63146462-48ec-439f-9499-fa8d9665e7e6" + "941fa181-26c8-4b96-b5f4-9440cf36f224" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222411Z:63146462-48ec-439f-9499-fa8d9665e7e6" + "GERMANYWESTCENTRAL:20230525T172902Z:941fa181-26c8-4b96-b5f4-9440cf36f224" ], "Date": [ - "Thu, 16 Mar 2023 22:24:10 GMT" + "Thu, 25 May 2023 17:29:02 GMT" ], "Content-Length": [ "35" @@ -670,23 +727,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"clientSecret\": \"clientSecret9248\"\r\n}", + "ResponseBody": "{\r\n \"clientSecret\": \"clientSecret2814\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId8061/listSecrets?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ4MDYxL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1859/listSecrets?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQxODU5L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "66c0ecbf-103d-4da5-8005-a5633e64a27d" + "411562b8-c0b0-4709-9af6-1fd936aec5c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -700,7 +757,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACj4=\"" + "\"AAAAAAAAORE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -709,7 +766,7 @@ "nosniff" ], "x-ms-request-id": [ - "2ccc1c7c-0156-417d-8439-c9f3c0371ffc" + "4f61b196-e9ec-4158-99af-a7d001997267" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -718,13 +775,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "2ccc1c7c-0156-417d-8439-c9f3c0371ffc" + "4f61b196-e9ec-4158-99af-a7d001997267" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222413Z:2ccc1c7c-0156-417d-8439-c9f3c0371ffc" + "GERMANYWESTCENTRAL:20230525T172905Z:4f61b196-e9ec-4158-99af-a7d001997267" ], "Date": [ - "Thu, 16 Mar 2023 22:24:12 GMT" + "Thu, 25 May 2023 17:29:05 GMT" ], "Content-Length": [ "35" @@ -736,7 +793,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"clientSecret\": \"clientSecret9248\"\r\n}", + "ResponseBody": "{\r\n \"clientSecret\": \"clientSecret2814\"\r\n}", "StatusCode": 200 }, { @@ -746,13 +803,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "052f3ab6-7e1d-4a93-87d3-e3b22ba815f1" + "873e2ac4-8526-46ad-8f85-844bad85a3a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -772,7 +829,7 @@ "nosniff" ], "x-ms-request-id": [ - "4e4d003e-3f49-429f-b7fd-1262157c2c77" + "121166fd-3124-4cee-907d-a139f4c8ef4c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -781,16 +838,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "4e4d003e-3f49-429f-b7fd-1262157c2c77" + "121166fd-3124-4cee-907d-a139f4c8ef4c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222411Z:4e4d003e-3f49-429f-b7fd-1262157c2c77" + "GERMANYWESTCENTRAL:20230525T172902Z:121166fd-3124-4cee-907d-a139f4c8ef4c" ], "Date": [ - "Thu, 16 Mar 2023 22:24:10 GMT" + "Thu, 25 May 2023 17:29:02 GMT" ], "Content-Length": [ - "1254" + "1253" ], "Content-Type": [ "application/json; charset=utf-8" @@ -799,7 +856,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId9741\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId9741\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName2320\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider9327.endpoint3079\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"clientId\": \"clientId5800\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId8061\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId8061\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName4455\",\r\n \"description\": \"description5002\",\r\n \"metadataEndpoint\": \"https://provider7246.endpoint7667\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"clientId\": \"clientId4369\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1859\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId1859\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5582\",\r\n \"description\": \"description102\",\r\n \"metadataEndpoint\": \"https://provider6786.endpoint4658\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"clientId\": \"clientId5440\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId6728\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId6728\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName9060\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider6065.endpoint3298\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"clientId\": \"clientId6448\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { @@ -809,13 +866,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7b39285-19d5-4479-85bf-6dde15cd16ca" + "fcea6db6-6188-4ffb-9e78-a139183c5248" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -835,7 +892,7 @@ "nosniff" ], "x-ms-request-id": [ - "e33729ed-799e-4cf0-8c85-ac72d9a64273" + "cf39fd99-e3d5-49f8-952a-b5b0a0b69556" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -844,16 +901,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "e33729ed-799e-4cf0-8c85-ac72d9a64273" + "cf39fd99-e3d5-49f8-952a-b5b0a0b69556" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222411Z:e33729ed-799e-4cf0-8c85-ac72d9a64273" + "GERMANYWESTCENTRAL:20230525T172902Z:cf39fd99-e3d5-49f8-952a-b5b0a0b69556" ], "Date": [ - "Thu, 16 Mar 2023 22:24:10 GMT" + "Thu, 25 May 2023 17:29:02 GMT" ], "Content-Length": [ - "907" + "919" ], "Content-Type": [ "application/json; charset=utf-8" @@ -862,23 +919,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId9741\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId9741\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName2320\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider9327.endpoint3079\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"clientId\": \"clientId5800\"\r\n }\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders?%24top=1&api-version=2022-08-01&%24skip=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1859\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId1859\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5582\",\r\n \"description\": \"description102\",\r\n \"metadataEndpoint\": \"https://provider6786.endpoint4658\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"clientId\": \"clientId5440\"\r\n }\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders?%24top=1&api-version=2022-08-01&%24skip=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId9741?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ5NzQxP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId6728?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ2NzI4P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "530a0698-fa06-46a2-b4cd-745a2282bebf" + "aa4a2ed8-ef6d-4ab0-bc38-fc9183220eff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -892,7 +949,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACjw=\"" + "\"AAAAAAAAOQ8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -901,7 +958,7 @@ "nosniff" ], "x-ms-request-id": [ - "8bc6b29a-2a45-45b5-a1e9-2437fb6facb8" + "50b78beb-f41c-4a36-8a2d-69f9362d4c62" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -910,13 +967,13 @@ "11994" ], "x-ms-correlation-request-id": [ - "8bc6b29a-2a45-45b5-a1e9-2437fb6facb8" + "50b78beb-f41c-4a36-8a2d-69f9362d4c62" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222411Z:8bc6b29a-2a45-45b5-a1e9-2437fb6facb8" + "GERMANYWESTCENTRAL:20230525T172903Z:50b78beb-f41c-4a36-8a2d-69f9362d4c62" ], "Date": [ - "Thu, 16 Mar 2023 22:24:10 GMT" + "Thu, 25 May 2023 17:29:03 GMT" ], "Content-Length": [ "0" @@ -929,22 +986,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId9741?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ5NzQxP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId6728?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ2NzI4P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6bf2ff03-6330-455d-920a-323bdfb99db3" + "08c7177e-34e9-4fb0-898f-dead886dd1ce" ], "If-Match": [ - "\"AAAAAAAACjw=\"" + "\"AAAAAAAAOQ8=\"" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -964,7 +1021,7 @@ "nosniff" ], "x-ms-request-id": [ - "1999dc94-d09b-4769-9fdb-3b61eeceb93a" + "b1818615-d0af-4ce2-abc8-7c442c4d6d0a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -973,13 +1030,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "1999dc94-d09b-4769-9fdb-3b61eeceb93a" + "b1818615-d0af-4ce2-abc8-7c442c4d6d0a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222412Z:1999dc94-d09b-4769-9fdb-3b61eeceb93a" + "GERMANYWESTCENTRAL:20230525T172903Z:b1818615-d0af-4ce2-abc8-7c442c4d6d0a" ], "Date": [ - "Thu, 16 Mar 2023 22:24:11 GMT" + "Thu, 25 May 2023 17:29:03 GMT" ], "Expires": [ "-1" @@ -992,13 +1049,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId9741?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ5NzQxP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId6728?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ2NzI4P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb378f55-cbad-408e-85d7-8021a9a920d8" + "1d8b2a57-f81b-49fe-a4c9-13c88adca966" ], "If-Match": [ "*" @@ -1007,7 +1064,7 @@ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -1027,7 +1084,7 @@ "nosniff" ], "x-ms-request-id": [ - "de1583fe-44c4-4c0b-8b65-d97b351c63fc" + "97016fc9-535c-4e3c-983a-5d05344ab47d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1036,13 +1093,13 @@ "14997" ], "x-ms-correlation-request-id": [ - "de1583fe-44c4-4c0b-8b65-d97b351c63fc" + "97016fc9-535c-4e3c-983a-5d05344ab47d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222414Z:de1583fe-44c4-4c0b-8b65-d97b351c63fc" + "GERMANYWESTCENTRAL:20230525T172907Z:97016fc9-535c-4e3c-983a-5d05344ab47d" ], "Date": [ - "Thu, 16 Mar 2023 22:24:14 GMT" + "Thu, 25 May 2023 17:29:07 GMT" ], "Expires": [ "-1" @@ -1052,19 +1109,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId8061?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ4MDYxP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1859?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQxODU5P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03060acd-0231-4453-a250-27c2e336ca67" + "02655a08-87ab-4625-bd27-8a621985a1e1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -1078,7 +1135,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACj0=\"" + "\"AAAAAAAAORA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1087,7 +1144,7 @@ "nosniff" ], "x-ms-request-id": [ - "d4b692b8-28f4-46a1-a12f-f18c7fb16835" + "b46217f0-3178-4e75-a125-ce60e6b84b82" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1096,13 +1153,13 @@ "11992" ], "x-ms-correlation-request-id": [ - "d4b692b8-28f4-46a1-a12f-f18c7fb16835" + "b46217f0-3178-4e75-a125-ce60e6b84b82" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222412Z:d4b692b8-28f4-46a1-a12f-f18c7fb16835" + "GERMANYWESTCENTRAL:20230525T172904Z:b46217f0-3178-4e75-a125-ce60e6b84b82" ], "Date": [ - "Thu, 16 Mar 2023 22:24:11 GMT" + "Thu, 25 May 2023 17:29:04 GMT" ], "Content-Length": [ "0" @@ -1115,22 +1172,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId8061?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ4MDYxP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1859?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQxODU5P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadataEndpoint\": \"https://provider1694.endpoint3138\",\r\n \"clientId\": \"updatedClient175\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadataEndpoint\": \"https://provider4269.endpoint9004\",\r\n \"clientId\": \"updatedClient9892\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4b25ada0-7b76-4078-88d3-22520a15c5eb" + "5ea5c978-d267-41be-9194-8474479284d3" ], "If-Match": [ - "\"AAAAAAAACj0=\"" + "\"AAAAAAAAORA=\"" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -1139,7 +1196,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "126" + "195" ] }, "ResponseHeaders": { @@ -1150,7 +1207,7 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACj4=\"" + "\"AAAAAAAAORE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1159,22 +1216,22 @@ "nosniff" ], "x-ms-request-id": [ - "e4d37d13-c6bd-4f17-8339-ef0cf6f97a5d" + "e7aa9456-7c5a-40c7-9c80-73a39f1dade6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "e4d37d13-c6bd-4f17-8339-ef0cf6f97a5d" + "e7aa9456-7c5a-40c7-9c80-73a39f1dade6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222412Z:e4d37d13-c6bd-4f17-8339-ef0cf6f97a5d" + "GERMANYWESTCENTRAL:20230525T172905Z:e7aa9456-7c5a-40c7-9c80-73a39f1dade6" ], "Date": [ - "Thu, 16 Mar 2023 22:24:11 GMT" + "Thu, 25 May 2023 17:29:04 GMT" ], "Content-Length": [ "605" @@ -1186,26 +1243,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId8061\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId8061\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName4455\",\r\n \"description\": \"description5002\",\r\n \"metadataEndpoint\": \"https://provider1694.endpoint3138\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"clientId\": \"updatedClient175\",\r\n \"clientSecret\": \"clientSecret9248\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1859\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId1859\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5582\",\r\n \"description\": \"description102\",\r\n \"metadataEndpoint\": \"https://provider4269.endpoint9004\",\r\n \"useInTestConsole\": true,\r\n \"useInApiDocumentation\": false,\r\n \"clientId\": \"updatedClient9892\",\r\n \"clientSecret\": \"clientSecret2814\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId8061?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ4MDYxP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1859?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQxODU5P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7020773d-a916-4da4-be20-8a4b9dc68a83" + "da5a9412-b0c9-480c-9c88-d00e4779f624" ], "If-Match": [ - "\"AAAAAAAACj4=\"" + "\"AAAAAAAAORE=\"" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -1225,7 +1282,7 @@ "nosniff" ], "x-ms-request-id": [ - "03c11415-4287-42a6-8319-9c63f266b3d4" + "5763ca0c-3806-4e9b-a6db-6217d41b8aea" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1234,13 +1291,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "03c11415-4287-42a6-8319-9c63f266b3d4" + "5763ca0c-3806-4e9b-a6db-6217d41b8aea" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222413Z:03c11415-4287-42a6-8319-9c63f266b3d4" + "GERMANYWESTCENTRAL:20230525T172906Z:5763ca0c-3806-4e9b-a6db-6217d41b8aea" ], "Date": [ - "Thu, 16 Mar 2023 22:24:12 GMT" + "Thu, 25 May 2023 17:29:06 GMT" ], "Expires": [ "-1" @@ -1253,13 +1310,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId8061?api-version=2022-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQ4MDYxP2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", + "RequestUri": "/subscriptions/dbdbebc3-1f15-4e74-9ef2-7db25483cb15/resourceGroups/Apim-NetSdk-20220801/providers/Microsoft.ApiManagement/service/sdktest20220801service/openidConnectProviders/openId1859?api-version=2022-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGJkYmViYzMtMWYxNS00ZTc0LTllZjItN2RiMjU0ODNjYjE1L3Jlc291cmNlR3JvdXBzL0FwaW0tTmV0U2RrLTIwMjIwODAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Nka3Rlc3QyMDIyMDgwMXNlcnZpY2Uvb3BlbmlkQ29ubmVjdFByb3ZpZGVycy9vcGVuSWQxODU5P2FwaS12ZXJzaW9uPTIwMjItMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc92af51-549f-4589-b1db-b5d80b26b72d" + "ab444e10-8aae-4281-9284-d0e4eb95f5d6" ], "If-Match": [ "*" @@ -1268,7 +1325,7 @@ "en-US" ], "User-Agent": [ - "FxVersion/6.0.1523.11507", + "FxVersion/6.0.1623.17311", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/9.0.0.0" @@ -1288,7 +1345,7 @@ "nosniff" ], "x-ms-request-id": [ - "df00d5e3-0ff3-4854-aaf3-fb7af33d7fca" + "34b720f7-b576-4ffe-b134-2cce2c800ac3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1297,13 +1354,13 @@ "14996" ], "x-ms-correlation-request-id": [ - "df00d5e3-0ff3-4854-aaf3-fb7af33d7fca" + "34b720f7-b576-4ffe-b134-2cce2c800ac3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230316T222414Z:df00d5e3-0ff3-4854-aaf3-fb7af33d7fca" + "GERMANYWESTCENTRAL:20230525T172908Z:34b720f7-b576-4ffe-b134-2cce2c800ac3" ], "Date": [ - "Thu, 16 Mar 2023 22:24:14 GMT" + "Thu, 25 May 2023 17:29:08 GMT" ], "Expires": [ "-1" @@ -1315,23 +1372,23 @@ ], "Names": { "CreateListUpdateDelete": [ - "openId9741", - "openId8061", - "openIdName2320", - "clientId5800", - "openIdName4455", - "clientId4369", - "clientSecret9248", - "description5002", - "updatedClient175" + "openId6728", + "openId1859", + "openIdName9060", + "clientId6448", + "openIdName5582", + "clientId5440", + "clientSecret2814", + "description102", + "updatedClient9892" ], "GetOpenIdMetadataEndpointUrl": [ - "provider9327", - "endpoint3079", - "provider7246", - "endpoint7667", - "provider1694", - "endpoint3138" + "provider6065", + "endpoint3298", + "provider6786", + "endpoint4658", + "provider4269", + "endpoint9004" ] }, "Variables": { @@ -1342,6 +1399,7 @@ "TestBackupStorageAccount": "apimbackupmsi", "TestBackupUserMsiClientId": "a6270d0c-7d86-478b-8cbe-dc9047ba54f7", "TestBackupUserMsiResourceId": "/subscriptions/4f5285a3-9fd7-40ad-91b1-d8fc3823983d/resourceGroups/net-sdk-backup-restore/providers/Microsoft.ManagedIdentity/userAssignedIdentities/apim-backup-restore-msi", + "Environment": "Prod", "SubId": "dbdbebc3-1f15-4e74-9ef2-7db25483cb15", "ServiceName": "sdktest20220801service", "Location": "centraluseuap",